diff --git a/.gitignore b/.gitignore index b176143..f577395 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,10 @@ __pycache__/ *.py[cod] *$py.class +# Local data archives +datastore/src/data/archive/ +datastore_client/src/archive/ + # C extensions *.so @@ -149,4 +153,4 @@ cython_debug/ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ \ No newline at end of file +#.idea/ diff --git a/datastore/requirements.txt b/datastore/requirements.txt index 0675d58..171b439 100644 --- a/datastore/requirements.txt +++ b/datastore/requirements.txt @@ -1,3 +1,4 @@ -flask==2.0.2 +flask==2.0.3 gunicorn==20.1.0 -requests==2.27.0 \ No newline at end of file +requests==2.27.0 +pandas==1.3.5 diff --git a/datastore/src/app.py b/datastore/src/app.py index f294447..49fa400 100644 --- a/datastore/src/app.py +++ b/datastore/src/app.py @@ -1,14 +1,286 @@ from flask import Flask, jsonify from os import environ +import os +import pandas as pd +import json +import csv +# from data_processing import * +from data_loading import * + + + +## Get Parameters SECRET_KEY = environ.get("SECRET_KEY") print("SECRET KEY", SECRET_KEY) + +# ---------------------------------------------------------------------------- +# DATA PARAMETERS +# ---------------------------------------------------------------------------- +current_folder = os.path.dirname(__file__) +DATA_PATH = os.path.join(current_folder,'data') +ASSETS_PATH = os.path.join(current_folder,'assets') + + +# Path to Report files at TACC +api_root = 'https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports' + +# Load subjects locally +# Opening JSON file +filepath = os.path.join(DATA_PATH,'lsj.json') +f = open(filepath) +# returns JSON object as a dictionary +subjects_raw = json.load(f) +# Closing file +f.close() + +# ---------------------------------------------------------------------------- +# LOAD ASSETS FILES +# ---------------------------------------------------------------------------- +asset_files_dict = { + 'screening_sites': 'screening_sites.csv', + 'display_terms': 'A2CPS_display_terms.csv', +} + +display_terms, display_terms_dict, display_terms_dict_multi = load_display_terms(ASSETS_PATH, asset_files_dict['display_terms']) + +screening_sites = pd.read_csv(os.path.join(ASSETS_PATH,asset_files_dict['screening_sites'])) + +# ---------------------------------------------------------------------------- +# LOAD INITAL DATA FROM FILES +# ---------------------------------------------------------------------------- + +local_date = '2022-09-08' + +local_imaging_data = { + 'date': local_date, + 'data': get_local_imaging_data(DATA_PATH)} + +local_blood_data = { + 'date': local_date, + 'data': get_local_blood_data(DATA_PATH)} + + +# local_subjects_json = get_local_subjects_raw(DATA_PATH) +local_subjects_data = { + 'date': local_date, + 'data': process_subjects(subjects_raw,screening_sites, display_terms_dict, display_terms_dict_multi) + } + +local_data = { + 'imaging': local_imaging_data, + 'blood': local_imaging_data, + 'subjects': local_subjects_data +} + +# ---------------------------------------------------------------------------- +# APIS +# ---------------------------------------------------------------------------- +datetime_format = "%m/%d/%Y, %H:%M:%S" + +apis_imaging_index = {} +data_state = 'empty' +api_data_index = { + 'blood':'', + 'imaging':'', + 'subjects':'', + 'raw': 'local' +} +api_request_state = { + 'blood':None, + 'imaging':None, + 'subjects1':None, + 'subjects2':None, +} +api_data_cache = { + 'blood':None, + 'imaging':None, + 'subjects':None, + 'raw': None +} + +api_subjects = {'date':None, 'data':None} + app = Flask(__name__) -@app.route("/api") -def api(): - d = { "key": "value" } - return jsonify(d) +# APIS: try to load new data, if doesn't work, get most recent +@app.route("/api/apis") +def api_apis(): + print(api_data_index) + return jsonify(api_data_index) + +@app.route("/api/imaging") +def api_imaging(): + global datetime_format + global api_data_index + global api_data_cache + try: + if not api_data_index['imaging'] or not check_data_current(datetime.strptime(api_data_index['imaging'], datetime_format)): + api_date = datetime.now().strftime(datetime_format) + imaging_data = get_api_imaging_data() + if imaging_data: + api_data_cache['imaging'] = imaging_data + api_data_index['imaging'] = api_date + return jsonify({'date': api_data_index['imaging'], 'data': api_data_cache['imaging']}) + except Exception as e: + traceback.print_exc() + return jsonify('error: {}'.format(e)) + +@app.route("/api/blood") +def api_blood(): + global datetime_format + global api_data_index + global api_data_cache + try: + if not api_data_index['blood'] or not check_data_current(datetime.strptime(api_data_index['blood'], datetime_format)): + api_date = datetime.now().strftime(datetime_format) + blood_data, blood_data_request_status = get_api_blood_data() + if blood_data: + api_data_index['blood'] = api_date + api_data_cache['blood'] = blood_data + + with open('requests.csv', 'a', newline='') as f: + writer = csv.writer(f) + for i in blood_data_request_status: + writer.writerow(i) + f.close() + + return jsonify({'date': api_data_index['blood'], 'data': api_data_cache['blood']}) + except Exception as e: + traceback.print_exc() + return jsonify('error: {}'.format(e)) + + +@app.route("/api/subjects") +def api_subjects(): + global datetime_format + global api_data_index + global api_data_cache + + try: + if not api_data_index['subjects'] or not check_data_current(datetime.strptime(api_data_index['subjects'], datetime_format)): + api_date = datetime.now().strftime(datetime_format) + latest_subjects_json = get_api_subjects_json() + if latest_subjects_json: + # latest_data = create_clean_subjects(latest_subjects_json, screening_sites, display_terms_dict, display_terms_dict_multi) + latest_data = process_subjects(latest_subjects_json,screening_sites, display_terms_dict, display_terms_dict_multi) + + api_data_cache['subjects'] = latest_data + api_data_index['subjects'] = api_date + + return jsonify({'date': api_data_index['subjects'], 'data': api_data_cache['subjects']}) + except Exception as e: + traceback.print_exc() + return jsonify('error: {}'.format(e)) + +@app.route("/api/load_data") +def api_load_data(): + global datetime_format + global api_data_index + global api_data_cache + + try: + # return api_data_index + # if not 'tester' in api_data_index.keys(): + if not api_request_state['subjects1'] == 200 or not api_request_state['subjects2'] == 200 : + api_date = datetime.now().strftime(datetime_format) + api_data_index['raw'] = api_date + + # latest_subjects_json = get_api_subjects_json() + + api_root = 'https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports' + + # Load Json Data + subjects1_filepath = '/'.join([api_root,'subjects','subjects-1-latest.json']) + subjects1_request = requests.get(subjects1_filepath) + api_request_state['subjects1'] = subjects1_request.status_code + if subjects1_request.status_code == 200: + subjects1 = subjects1_request.json() + else: + subjects1 = subjects1_request.status_code + # return {'status':'500', 'source': api_dict['subjects']['subjects1']} + + subjects2_filepath = '/'.join([api_root,'subjects','subjects-2-latest.json']) + subjects2_request = requests.get(subjects2_filepath) + api_request_state['subjects2'] = subjects2_request.status_code + if subjects2_request.status_code == 200: + subjects2 = subjects2_request.json() + else: + subjects2 = subjects2_request.status_code + # return {'status':'500', 'source': api_dict['subjects']['subjects2']} + + # Create combined json + latest_subjects_json = {'1': subjects1, '2': subjects2} + api_data_cache['raw'] = latest_subjects_json + + if latest_subjects_json: + api_data_cache['raw'] = latest_subjects_json + return jsonify(api_data_cache['raw']) + else: + api_data_cache['raw'] = 'failed' + return jsonify({'failed':''}) + + + except Exception as e: + traceback.print_exc() + return jsonify('error: {}'.format(e)) + + +@app.route("/api/tester") +def api_tester(): + + global local_subjects_data + + try: + return jsonify(local_subjects_data) + + + except Exception as e: + traceback.print_exc() + return jsonify('error: {}'.format(e)) + +# @app.route("/api/screening_sites") +# def api_screening_sites(): +# screening_site_dict = screening_sites.to_dict('records') +# return jsonify(screening_site_dict) + +# @app.route("/api/subjects") +# def api_subjects(): +# +# global api_subjects_json_cache +# try: +# if not check_available_data(api_subjects_json_cache): +# current_date = str(datetime.now()) +# latest_subjects_json = get_api_subjects_json() +# if latest_subjects_json: +# latest_data = create_clean_subjects(latest_subjects_json, screening_sites, display_terms_dict, display_terms_dict_multi) +# api_subjects_data = { +# 'date': current_date, +# 'data': latest_data +# } +# +# api_subjects_json_cache = [api_subjects_json] +# +# else: +# api_subjects_json_cache = api_subjects_json_cache +# return jsonify(api_subjects_json_cache[-1]) +# +# except Exception as e: +# traceback.print_exc() +# # try: +# # return jsonify(local_data['subjects']) +# # except: +# return jsonify('error: {}'.format(e)) + + +@app.route("/api/full") +def api_full(): + datafeeds = {'date': {'weekly': 'today', 'consort': 'today', 'blood': 'today'}, + 'data': {'weekly': 'tbd', 'consort': 'tbd', 'blood': 'tbd'}} + return jsonify(datafeeds) + + + if __name__ == "__main__": - app.run(host='0.0.0.0') \ No newline at end of file + app.run(host='0.0.0.0') diff --git a/datastore/src/assets/A2CPS_display_terms.csv b/datastore/src/assets/A2CPS_display_terms.csv new file mode 100644 index 0000000..1ae5332 --- /dev/null +++ b/datastore/src/assets/A2CPS_display_terms.csv @@ -0,0 +1,75 @@ +api_field,api_value,multi,data_dictionary_values,display_text,changed_text +redcap_data_access_group,rush_university_me,0,MCC1: Rush,MCC1: Rush,0 +redcap_data_access_group,northshore,0,MCC1: NorthShore,MCC1: NorthShore,0 +redcap_data_access_group,uchicago,0,MCC1: UChicago,MCC1: UChicago,0 +redcap_data_access_group,university_of_mich,0,MCC2: UMichigan,MCC2: UMichigan,0 +redcap_data_access_group,wayne_state,0,MCC2: Wayne State,MCC2: Wayne State,0 +redcap_data_access_group,spectrum_health,0,MCC2: Spectrum Health,MCC2: Spectrum Health,0 +sp_data_site,1,0,MCC2: UMichigan,MCC2: UMichigan,0 +sp_data_site,2,0,MCC2: Wayne State,MCC2: Wayne State,0 +sp_data_site,3,0,MCC2: Spectrum Health,MCC2: Spectrum Health,0 +participation_interest,0,0,No,No,0 +participation_interest,1,0,Maybe,Maybe,0 +participation_interest,2,0,Yes,Yes,0 +screening_race,6,0,American Indian or Alaska Native,American Indian or Alaska Native,0 +screening_race,5,0,Asian,Asian,0 +screening_race,4,0,Black/African American,Black or African-American,1 +screening_race,3,0,Native Hawaiian or other Pacific Islander,Native Hawaiian or Pacific Islander,1 +screening_race,2,0,White/Caucasian,White,1 +screening_race,1,0,Other,Unknown,1 +screening_race,0,0,Prefer not to answer,Not Reported,1 +dem_race,1,0,American Indian or Alaska Native,American Indian or Alaska Native,0 +dem_race,2,0,Asian,Asian,0 +dem_race,3,0,Black or African-American,Black or African-American,0 +dem_race,4,0,Native Hawaiian or Pacific Islander,Native Hawaiian or Pacific Islander,0 +dem_race,5,0,White,White,0 +dem_race,6,0,Unknown,Unknown,0 +dem_race,7,0,Not Reported,Not Reported,0 +dem_race,8,0,Multi-Racial,Multi-Racial,0 +screening_ethnicity,2,0,Hispanic or Latino,Hispanic or Latino,0 +screening_ethnicity,1,0,Not Hispanic or Latino,Not Hispanic or Latino,0 +screening_ethnicity,0,0,Prefer not to answer,Not reported,1 +ethnic,1,0,Hispanic or Latino,Hispanic or Latino,0 +ethnic,2,0,Not Hispanic or Latino,Not Hispanic or Latino,0 +ethnic,3,0,Unknown,Unknown,0 +ethnic,4,0,Not reported,Not reported,0 +screening_gender,1,0,Male,Male,0 +screening_gender,2,0,Female,Female,0 +screening_gender,3,0,Unknown,Unknown,0 +screening_gender,4,0,Other,Other,0 +sex,1,0,Male,Male,0 +sex,2,0,Female,Female,0 +sex,3,0,Unknown,Unknown,0 +sex,4,0,Intersex ,Intersex ,0 +genident,1,0,Male,Male,0 +genident,2,0,Female,Female,0 +genident,3,0,Unknown,Unknown,0 +genident,4,0,Other,Other,0 +reason_not_interested,5,1,No specific reason,No specific reason,0 +reason_not_interested,4,1,Time-related issue or concern,Time-related issue or concern,0 +reason_not_interested,3,1,Specific study procedure,Specific study procedure,0 +reason_not_interested,2,1,Compensation insufficient,Compensation insufficient,0 +reason_not_interested,1,1,COVID-related,COVID-related,0 +reason_not_interested,0,1,Not interested in research,Not interested in research,0 +reason_not_interested,-1,1,Not provided,Not provided,0 +erep_protdev_type,1,1,Informed Consent,Informed Consent,0 +erep_protdev_type,2,1,Protocol Deviation-blood drawo,Blood Draw,1 +erep_protdev_type,3,1,Protocol Deviation-functional testing,Functional Testing,1 +erep_protdev_type,4,1,Protocol Deviation-QST,QST,1 +erep_protdev_type,5,1,Protocol Deviation-imaging,Imaging,1 +erep_protdev_type,6,1,Visit timeline (outside protocol range),Visit Timeline,1 +erep_protdev_type,7,1,Other,Other,0 +erep_ae_yn,1,1,Yes,Yes,0 +erep_ae_yn,0,1,No,No,0 +erep_ae_severity,1,1,Mild,Mild,0 +erep_ae_severity,2,1,Moderate,Moderate,0 +erep_ae_severity,3,1,Severe,Severe,0 +erep_ae_relation,1,1,Definitely Related,Definitely Related,0 +erep_ae_relation,2,1,Possibly/Probably Related,Possibly/Probably Related,0 +erep_ae_relation,3,1,Not Related,Not Related,0 +erep_ae_serious,1,1,Yes,Yes,0 +erep_ae_serious,0,1,No,No,0 +ewprimaryreason,1,0,Subject chose to discontinue the study,Subject chose to discontinue the study,0 +ewprimaryreason,2,0,Site PI chose to discontinue subject participation,Site PI chose to discontinue subject participation,0 +ewprimaryreason,3,0,"Subject is lost to follow-up, unable to locate","Subject is lost to follow-up, unable to locate",0 +ewprimaryreason,4,0,Death,Death,0 diff --git a/datastore/src/assets/screening_sites.csv b/datastore/src/assets/screening_sites.csv new file mode 100644 index 0000000..af557c7 --- /dev/null +++ b/datastore/src/assets/screening_sites.csv @@ -0,0 +1,15 @@ +screening_site,mcc,site,surgery_type,record_id_start,record_id_end,start_date,start_month,start_year,expected_enrollment,study_month +MCC1: Rush,1,Rush,TKA,30000,39999,3/18/2021,4,2021,"20, 20, 20, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC1: NorthShore,1,NorthShore,TKA,40000,49999,6/1/2021,6,2021,"13, 13, 13, 26, 27, 27, 26, 27, 27, 26, 27, 27, 26, 27, 27, 26, 27, 27, 26, 27, 27, 27, 27, 27","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC1: University of Chicago,1,University of Chicago,TKA,50000,59999,6/1/2021,6,2021,"7, 7, 7, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC2: University of Michigan,2,University of Michigan,Thoracic,60000,69999,6/28/2021,7,2021,"12, 13, 13, 25, 25, 26, 25, 25, 26, 25, 25, 26, 25, 25, 26, 25, 25, 26, 25, 25, 26, 25, 25, 26","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC2: St. Joseph,2,St. Joseph,Thoracic,70000,79999,10/1/2021,10,2021,"3, 3, 4, 6, 6, 7, 6, 6, 7, 6, 6, 7, 6, 6, 7, 6, 7, 7, 6, 7, 7, 6, 7, 7","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC2: HFHS Detroit,2,HFHS Detroit,Thoracic,80000,89999,12/1/2021,1,2022,"3, 3, 3, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 10","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC2: HFHS Macomb,2,HFHS Macomb,Thoracic,90000,99999,12/1/2021,12,2021,"1, 1, 2, 2, 2, 3, 2, 2, 3, 2, 2, 3, 2, 2, 3, 2, 2, 3, 2, 3, 3, 2, 3, 3","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC2: HFHS Jackson,2,HFHS Jackson,Thoracic,100000,109999,1/1/2022,1,2022,"1, 2, 2, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 4, 4","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC2: HFHS Wyandotte,2,HFHS Wyandotte,Thoracic,110000,119999,,,,, +MCC2: University of Michigan,2,University of Michigan,TKA,120000,129999,,,,, +MCC2: Spectrum,2,Spectrum,Thoracic,130000,139999,1/1/2022,1,2022,"8, 8, 8, 16, 16, 16, 16, 16, 17, 16, 16, 17, 16, 16, 17, 16, 16, 17, 16, 16, 17, 16, 16, 17","1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24" +MCC1: Rush,1,Rush,Thoracic,140000,149999,,,,, +MCC2: HFHS ,2,HFHS,TKA,150000,159999,,,,, +MCC1: University of Chicago,1,University of Chicago,Thoracic,160000,169999,,,,, diff --git a/datastore/src/assets/sites.csv b/datastore/src/assets/sites.csv new file mode 100644 index 0000000..4d19295 --- /dev/null +++ b/datastore/src/assets/sites.csv @@ -0,0 +1,7 @@ +mcc,site,site_name +1,UI, University of Illinois at Chicago +1,UC, University of Chicago +1,NS, NorthShore +2,UM, University of Michigan +2,WS, Wayne State University (pending) +2,SH, Spectrum Health (pending) diff --git a/datastore/src/assets/weekly_style.css b/datastore/src/assets/weekly_style.css new file mode 100644 index 0000000..01de21f --- /dev/null +++ b/datastore/src/assets/weekly_style.css @@ -0,0 +1,17 @@ +/* +---------------------------------------------------------------------------- +CSS STYLING +---------------------------------------------------------------------------- +*/ +H3 { + border-style: solid; + border-width: 2px 0px; + margin-top: 15px; +} + +@media print { + .print-hide { + display: none; + } + footer {page-break-after: always;} +} diff --git a/datastore/src/data/blood/blood-1-latest.json b/datastore/src/data/blood/blood-1-latest.json new file mode 100644 index 0000000..d4edc8f --- /dev/null +++ b/datastore/src/data/blood/blood-1-latest.json @@ -0,0 +1 @@ +{"10000":{"Baseline Visit":{"bscp_aliq_cnt":"6"}},"10003":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-03-29 14:19","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-03-29 13:48","bscp_time_centrifuge":"2021-03-29 14:12"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-13 10:16","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-13 09:38","bscp_time_centrifuge":"2021-05-13 10:09"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-20 10:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-20 09:45","bscp_time_centrifuge":"2021-07-20 10:10"},"screening_site":"Rush"},"10008":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-04-02 12:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-02 12:23","bscp_time_centrifuge":"2021-04-02 12:43"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-04-29 13:26","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-29 13:02","bscp_time_centrifuge":"2021-04-29 13:18"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-21 15:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-21 15:18","bscp_time_centrifuge":"2021-07-21 15:37"},"screening_site":"Rush"},"10009":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-04-05 15:05","bscp_comments":"COVID vaccine within the last 2 weeks.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-05 14:39","bscp_time_centrifuge":"2021-04-05 15:00"},"screening_site":"Rush"},"10005":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-04-06 14:28","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-06 14:02","bscp_time_centrifuge":"2021-04-06 14:24"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-10 12:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-10 12:28","bscp_time_centrifuge":"2021-05-10 12:50"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-16 16:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-16 15:58","bscp_time_centrifuge":"2021-07-16 16:09"},"screening_site":"Rush"},"10010":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-04-15 11:26","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-15 10:56","bscp_time_centrifuge":"2021-04-15 11:17"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-05-17 08:41","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-17 08:07","bscp_time_centrifuge":"2021-05-17 08:27"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-23 08:41","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-23 08:16","bscp_time_centrifuge":"2021-07-23 08:33"},"screening_site":"Rush"},"10011":{"Baseline Visit":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2021-04-19 09:01","bscp_comments":"At study visit, could not get blood from 2 sticks. Blood was obtained later when subject was in pre-op bay.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-04-19 08:37","bscp_time_centrifuge":"2021-04-19 08:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-05-10 16:23","bscp_comments":"One minute over the 30 min mark for time to freezer from blood draw and less one aliquot.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-05-10 15:51","bscp_time_centrifuge":"2021-05-10 16:18"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-29 15:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-29 14:31","bscp_time_centrifuge":"2021-07-29 14:54"},"screening_site":"Rush"},"10004":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-04-19 11:31","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-19 10:58","bscp_time_centrifuge":"2021-04-19 11:23"},"6-Wks Post-Op":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-11-24 11:24","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 11:03","bscp_time_centrifuge":"2021-11-24 11:19"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-28 10:22","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-28 09:58","bscp_time_centrifuge":"2022-01-28 10:16"},"screening_site":"Rush"},"10013":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-04-20 11:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-20 10:48","bscp_time_centrifuge":"2021-04-20 11:14"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-12 12:30","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-12 12:04","bscp_time_centrifuge":"2021-08-12 12:23"},"6-Wks Post-Op":{"bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10015":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-04-21 11:12","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-21 10:40","bscp_time_centrifuge":"2021-04-21 11:02"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-06-10 14:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-10 14:31","bscp_time_centrifuge":"2021-06-10 14:49"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-12 09:59","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-12 09:25","bscp_time_centrifuge":"2021-07-12 09:53"},"screening_site":"Rush"},"10012":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-04-22 16:28","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-22 15:59","bscp_time_centrifuge":"2021-04-22 16:21"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-07 11:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-07 11:23","bscp_time_centrifuge":"2021-06-07 11:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-23 13:03","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-23 12:39","bscp_time_centrifuge":"2021-07-23 12:58"},"screening_site":"Rush"},"10016":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-04-23 09:29","bscp_comments":"Will obtain blood day of surgery. Blood taken 4/23.","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-04-23 09:10","bscp_time_centrifuge":"2021-04-23 09:23"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-21 13:06","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-21 12:38","bscp_time_centrifuge":"2021-07-21 13:01"},"6-Wks Post-Op":{"bscp_comments":"Unable to obtain blood after >2 sticks. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10001":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-04-30 12:24","bscp_comments":"Unable to collect blood at baseline. Blood collected DOS.","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-04-30 11:53","bscp_time_centrifuge":"2021-04-30 12:13"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-20 10:24","bscp_comments":"Participant's blood was not collected within time frame window.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-20 09:49","bscp_time_centrifuge":"2021-05-20 10:13"},"3-Mo Post-Op":{"bscp_comments":"No 3-month visit.","bscp_protocol_dev":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10017":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-05-03 09:56","bscp_buffycoat_na":"1","bscp_comments":"Was not able to obtain buffy coat. ","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-05-03 09:16","bscp_time_centrifuge":"2021-05-03 09:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-05-26 10:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-26 10:11","bscp_time_centrifuge":"2021-05-26 10:31"},"3-Mo Post-Op":{"bscp_comments":"Patient wouldn't allow more than one attempt ","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10022":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-03 14:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-03 13:31","bscp_time_centrifuge":"2021-05-03 13:51"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-05-27 14:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-27 14:02","bscp_time_centrifuge":"2021-05-27 14:21"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-13 15:53","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-13 15:32","bscp_time_centrifuge":"2021-08-13 15:50"},"screening_site":"Rush"},"10007":{"6-Wks Post-Op":{"bscp_aliq_cnt":"0","bscp_aliquot_freezer_time":"2021-05-04 10:30","bscp_buffycoat_na":"1","bscp_comments":"Able to get Paxgene but pt clotted before getting lavender top.","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-05-04 10:29"},"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-04-15 08:54","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-15 08:25","bscp_time_centrifuge":"2021-04-15 08:46"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-09-07 11:21","bscp_comments":"unable to obtain PAXgene sample","bscp_deg_of_hemolysis":".5","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-09-07 10:52","bscp_time_centrifuge":"2021-09-07 11:16"},"screening_site":"Rush"},"10014":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-04 10:44","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-04 10:14","bscp_time_centrifuge":"2021-05-04 10:34"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-16 08:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-16 07:51","bscp_time_centrifuge":"2021-06-16 08:02"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-10 09:41","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-10 09:16","bscp_time_centrifuge":"2021-08-10 09:35"},"screening_site":"Rush"},"10018":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-04 12:52","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-04 12:18","bscp_time_centrifuge":"2021-05-04 12:49"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-21 11:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-21 10:48","bscp_time_centrifuge":"2021-06-21 11:08"},"3-Mo Post-Op":{"bscp_aliq_cnt":"0","bscp_aliquot_freezer_time":"2021-09-02 09:08","bscp_buffycoat_na":"1","bscp_comments":"Unable to get more than one tube of blood. ","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-09-02 09:03"},"screening_site":"Rush"},"10020":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-05 12:49","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-05 12:19","bscp_time_centrifuge":"2021-05-05 12:41"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-24 10:14","bscp_comments":"Blood sample placed in centrifuge more than 30 min after collection","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-05-24 09:33","bscp_time_centrifuge":"2021-05-24 10:07"},"3-Mo Post-Op":{"bscp_comments":"unable to contact participant","bscp_protocol_dev":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10027":{"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-05-14 09:17","bscp_deg_of_hemolysis":"4","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-14 08:53","bscp_time_centrifuge":"2021-05-14 09:11"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-02 12:02","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-02 11:35","bscp_time_centrifuge":"2021-06-02 11:54"},"3-Mo Post-Op":{"bscp_comments":"Pt declined to come in for 3 mos. visit","bscp_protocol_dev":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10030":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-05-17 12:30","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-17 12:02","bscp_time_centrifuge":"2021-05-17 12:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-06-09 08:21","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-09 07:57","bscp_time_centrifuge":"2021-06-09 08:17"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-17 12:24","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-17 11:59","bscp_time_centrifuge":"2021-08-17 12:16"},"screening_site":"Rush"},"10023":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-18 09:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-18 08:33","bscp_time_centrifuge":"2021-05-18 08:52"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-30 09:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-30 08:34","bscp_time_centrifuge":"2021-06-30 08:53"},"3-Mo Post-Op":{"bscp_comments":"Tried 2 sticks and unable to get blood. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10026":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-21 13:04","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-21 12:37","bscp_time_centrifuge":"2021-05-21 12:56"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-30 15:09","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-30 14:43","bscp_time_centrifuge":"2021-06-30 15:04"},"3-Mo Post-Op":{"bscp_comments":"they are not completing in person (nerves regarding covid)","bscp_protocol_dev":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10028":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-24 15:05","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-24 14:29","bscp_time_centrifuge":"2021-05-24 14:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-28 12:04","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-28 11:40","bscp_time_centrifuge":"2021-06-28 11:58"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-11 11:54","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-11 11:22","bscp_time_centrifuge":"2021-10-11 11:44"},"screening_site":"Rush"},"10032":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-05-27 11:12","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-05-27 10:43","bscp_time_centrifuge":"2021-05-27 11:03"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-22 13:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-22 13:09","bscp_time_centrifuge":"2021-07-22 13:29"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-14 11:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-14 11:13","bscp_time_centrifuge":"2021-09-14 11:33"},"screening_site":"Rush"},"10006":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-05-27 12:37","bscp_comments":"Longer than 30 minutes until samples were placed in freezer","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-05-27 11:59","bscp_time_centrifuge":"2021-05-27 12:29"},"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-04-20 10:29","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-04-20 09:57","bscp_time_centrifuge":"2021-04-20 10:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-09 10:28","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-09 10:02","bscp_time_centrifuge":"2021-08-09 10:21"},"screening_site":"Rush"},"10024":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-02 08:46","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-02 08:14","bscp_time_centrifuge":"2021-06-02 08:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-08-25 08:17","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-25 07:55","bscp_time_centrifuge":"2021-08-25 08:12"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-02 09:58","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-02 09:36","bscp_time_centrifuge":"2021-11-02 09:53"},"screening_site":"Rush"},"10031":{"Baseline Visit":{"bscp_aliq_cnt":"1","bscp_aliquot_freezer_time":"2021-06-04 08:53","bscp_buffycoat_na":"1","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-04 08:27","bscp_time_centrifuge":"2021-06-04 08:50"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-20 11:03","bscp_comments":"3+ sticks","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-20 10:36","bscp_time_centrifuge":"2021-07-20 10:55"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-23 12:08","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-23 11:38","bscp_time_centrifuge":"2021-09-23 11:58"},"screening_site":"Rush"},"10038":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-06-09 08:31","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-09 08:03","bscp_time_centrifuge":"2021-06-09 08:28"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-07-22 11:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-22 11:32","bscp_time_centrifuge":"2021-07-22 11:50"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-29 17:12","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-29 16:47","bscp_time_centrifuge":"2021-09-29 17:07"},"screening_site":"Rush"},"10042":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-10 12:05","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-10 11:27","bscp_time_centrifuge":"2021-06-10 12:03"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-12 13:04","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-12 12:39","bscp_time_centrifuge":"2021-08-12 13:01"},"screening_site":"Northshore"},"10037":{"Baseline Visit":{"bscp_aliq_cnt":"1","bscp_aliquot_freezer_time":"2021-06-11 10:09","bscp_buffycoat_na":"1","bscp_comments":"Blood collected DOS. ","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-11 09:44","bscp_time_centrifuge":"2021-06-11 10:04"},"6-Wks Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-07-07 11:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-07 10:51","bscp_time_centrifuge":"2021-07-07 11:11"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-22 12:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-22 12:11","bscp_time_centrifuge":"2021-09-22 12:35"},"screening_site":"Rush"},"10041":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-14 14:17","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-14 13:47","bscp_time_centrifuge":"2021-06-14 14:07"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-22 16:00","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-22 15:35","bscp_time_centrifuge":"2021-07-22 15:55"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-05 10:52","bscp_time_centrifuge":"2021-10-05 11:12"},"screening_site":"Rush"},"10033":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-16 08:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-16 08:20","bscp_time_centrifuge":"2021-06-16 08:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-21 10:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-21 10:23","bscp_time_centrifuge":"2021-07-21 10:43"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-28 10:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-28 09:51","bscp_time_centrifuge":"2021-09-28 10:10"},"screening_site":"Rush"},"10043":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-16 11:10","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-16 10:46","bscp_time_centrifuge":"2021-06-16 11:03"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-04 11:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-04 11:16","bscp_time_centrifuge":"2021-08-04 11:35"},"3-Mo Post-Op":{"bscp_comments":"unable to complete all study activities due to distance \r\n\r\n","bscp_protocol_dev":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10045":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-17 08:44","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-17 08:17","bscp_time_centrifuge":"2021-06-17 08:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-28 10:17","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-28 09:49","bscp_time_centrifuge":"2021-07-28 10:12"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-07 09:22","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-07 08:54","bscp_time_centrifuge":"2021-10-07 09:13"},"screening_site":"Rush"},"10050":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-22 09:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-22 09:10","bscp_time_centrifuge":"2021-06-22 09:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-03 10:25","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-03 10:05","bscp_time_centrifuge":"2021-08-03 10:22"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10036":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-22 12:50","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-22 12:19","bscp_time_centrifuge":"2021-06-22 12:47"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-15 08:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-15 15:20","bscp_time_centrifuge":"2021-10-15 08:14"},"6-Wks Post-Op":{"bscp_comments":"Patient refused to come back due to insufficient compensation for first visit","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10054":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-23 08:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-23 08:08","bscp_time_centrifuge":"2021-06-23 08:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-27 10:43","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-27 10:18","bscp_time_centrifuge":"2021-07-27 10:38"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-22 11:28","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-22 11:06","bscp_time_centrifuge":"2021-09-22 11:23"},"screening_site":"Northshore"},"10053":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-24 10:37","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-24 10:14","bscp_time_centrifuge":"2021-06-24 10:35"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-23 14:01","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-23 13:32","bscp_time_centrifuge":"2021-08-23 13:56"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10051":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-06-28 07:07","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-28 06:38","bscp_time_centrifuge":"2021-06-28 06:58"},"screening_site":"Rush"},"10047":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-28 09:02","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-28 08:41","bscp_time_centrifuge":"2021-06-28 09:01"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-27 16:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-27 15:50","bscp_time_centrifuge":"2021-08-27 16:15"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-10-15 09:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-15 09:02","bscp_time_centrifuge":"2021-10-15 09:16"},"screening_site":"Northshore"},"10044":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-29 13:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-06-29 13:05","bscp_time_centrifuge":"2021-06-29 13:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-28 10:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-28 10:01","bscp_time_centrifuge":"2021-07-28 10:23"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-13 10:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-13 09:54","bscp_time_centrifuge":"2021-10-13 10:11"},"screening_site":"Rush"},"10052":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-02 08:35","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-02 08:07","bscp_time_centrifuge":"2021-07-02 08:24"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-02 10:33","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-02 10:04","bscp_time_centrifuge":"2021-08-02 10:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-26 10:11","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-26 09:46","bscp_time_centrifuge":"2021-10-26 10:06"},"screening_site":"Rush"},"10056":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-07-06 10:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-06 09:32","bscp_time_centrifuge":"2021-07-06 09:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-04 12:20","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-04 11:50","bscp_time_centrifuge":"2021-08-04 12:13"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-18 08:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-18 08:09","bscp_time_centrifuge":"2021-10-18 08:27"},"screening_site":"Rush"},"10055":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-06 10:42","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-06 10:17","bscp_time_centrifuge":"2021-07-06 10:36"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-13 17:36","bscp_deg_of_hemolysis":".25","bscp_time_blood_draw":"2021-09-13 17:10","bscp_time_centrifuge":"2021-09-13 17:31"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10061":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-07 09:58","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-07 09:36","bscp_time_centrifuge":"2021-07-07 09:57"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-24 10:24","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-24 10:04","bscp_time_centrifuge":"2021-08-24 10:19"},"3-Mo Post-Op":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-10-25 12:30","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-25 12:08","bscp_time_centrifuge":"2021-10-25 12:27"},"screening_site":"Northshore"},"10070":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-08 12:05","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-08 11:39","bscp_time_centrifuge":"2021-07-08 12:02"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-24 13:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-24 13:25","bscp_time_centrifuge":"2021-08-24 13:40"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-19 12:31","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-19 12:11","bscp_time_centrifuge":"2021-10-19 12:27"},"screening_site":"Northshore"},"10059":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-09 10:30","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-09 10:09","bscp_time_centrifuge":"2021-07-09 10:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-30 14:25","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-30 13:59","bscp_time_centrifuge":"2021-08-30 14:20"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-29 10:38","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-29 10:19","bscp_time_centrifuge":"2021-10-29 10:34"},"screening_site":"Northshore"},"10060":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-12 09:54","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-12 09:32","bscp_time_centrifuge":"2021-07-12 09:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-31 13:18","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-31 12:53","bscp_time_centrifuge":"2021-08-31 13:13"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-19 09:38","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-19 09:16","bscp_time_centrifuge":"2021-10-19 09:34"},"screening_site":"Northshore"},"10073":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-13 13:55","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-13 13:36","bscp_time_centrifuge":"2021-07-13 13:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-24 09:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-24 09:13","bscp_time_centrifuge":"2021-08-24 09:30"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-28 12:20","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-28 12:01","bscp_time_centrifuge":"2021-10-28 12:16"},"screening_site":"Northshore"},"10071":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-14 09:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-14 09:14","bscp_time_centrifuge":"2021-07-14 09:32"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-07 09:30","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-07 09:01","bscp_time_centrifuge":"2021-09-07 09:25"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-09 09:48","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-09 09:28","bscp_time_centrifuge":"2021-11-09 09:44"},"screening_site":"Northshore"},"10058":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-14 12:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-14 12:20","bscp_time_centrifuge":"2021-07-14 12:41"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-13 10:47","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-13 10:07","bscp_time_centrifuge":"2021-09-13 10:41"},"3-Mo Post-Op":{"bscp_comments":"Nothing was collected. "},"screening_site":"UChicago"},"10072":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-07-15 09:52","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-15 09:26","bscp_time_centrifuge":"2021-07-15 09:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-30 12:01","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-30 11:36","bscp_time_centrifuge":"2021-08-30 11:56"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-02 14:19","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-02 13:58","bscp_time_centrifuge":"2021-11-02 14:16"},"screening_site":"Rush"},"10063":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-15 13:21","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-15 12:59","bscp_time_centrifuge":"2021-07-15 13:16"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-18 12:58","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-18 12:34","bscp_time_centrifuge":"2021-08-18 12:52"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-17 14:31","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-17 14:08","bscp_time_centrifuge":"2021-11-17 14:25"},"screening_site":"Rush"},"10067":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-15 15:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-15 15:20","bscp_time_centrifuge":"2021-07-15 15:47"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-09 14:47","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-09 14:13","bscp_time_centrifuge":"2021-09-09 14:39"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-01 17:13","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-01 16:45","bscp_time_centrifuge":"2021-11-01 17:06"},"screening_site":"UChicago"},"10062":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-16 08:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-16 08:34","bscp_time_centrifuge":"2021-07-16 08:51"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-16 10:24","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-16 09:59","bscp_time_centrifuge":"2021-09-16 10:18"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-17 11:13","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-17 10:45","bscp_time_centrifuge":"2021-11-17 11:04"},"screening_site":"Rush"},"10049":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-07-16 13:54","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-16 13:22","bscp_time_centrifuge":"2021-07-16 14:48"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-23 12:31","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-23 12:15","bscp_time_centrifuge":"2021-09-23 12:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-11-15 14:39","bscp_deg_of_hemolysis":".25","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 13:53","bscp_time_centrifuge":"2021-11-15 14:30"},"screening_site":"UChicago"},"10046":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-19 10:23","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-19 10:00","bscp_time_centrifuge":"2021-07-19 10:17"},"3-Mo Post-Op":{"bscp_comments":"Nothing was collected. "},"screening_site":"UChicago"},"10048":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-07-20 13:44","bscp_comments":"Blood retrieved on day of surgery","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-20 13:19","bscp_time_centrifuge":"2021-07-20 13:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-24 17:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-24 16:43","bscp_time_centrifuge":"2021-08-24 16:58"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-13 13:43","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-13 13:16","bscp_time_centrifuge":"2021-10-13 13:34"},"screening_site":"Rush"},"10064":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-21 09:40","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-21 08:50","bscp_time_centrifuge":"2021-07-21 09:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-08 11:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-08 10:55","bscp_time_centrifuge":"2021-10-08 11:44"},"3-Mo Post-Op":{"bscp_comments":"Kit used. No blood was collected do to patient being in a state unable to give blood ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10034":{"6-Wks Post-Op":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-07-21 14:13","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-21 13:45","bscp_time_centrifuge":"2021-07-21 14:05"},"3-Mo Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-10-06 11:34","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-06 11:01","bscp_time_centrifuge":"2021-10-06 11:23"},"Baseline Visit":{"bscp_aliquot_freezer_time":"2021-06-29 12:50","bscp_buffycoat_na":"1","bscp_comments":"unable to obtain blood for EDTA tube. Sample not drawn within window","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1","bscp_time_blood_draw":"2021-06-29 12:34"},"screening_site":"Rush"},"10080":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-07-22 11:22","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-22 10:55","bscp_time_centrifuge":"2021-07-22 11:19"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-17 10:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-17 10:23","bscp_time_centrifuge":"2021-09-17 10:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-04 13:10","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-04 12:36","bscp_time_centrifuge":"2021-11-04 13:07"},"screening_site":"Northshore"},"10075":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-23 10:31","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-23 10:03","bscp_time_centrifuge":"2021-07-23 10:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-10 09:02","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-10 08:11","bscp_time_centrifuge":"2021-09-10 08:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-12 10:03","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-12 09:43","bscp_time_centrifuge":"2021-11-12 09:59"},"screening_site":"Northshore"},"10077":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-26 12:01","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-26 11:48","bscp_time_centrifuge":"2021-07-26 12:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-22 10:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-22 10:13","bscp_time_centrifuge":"2021-09-22 10:32"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-11-05 10:59","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-05 10:39","bscp_time_centrifuge":"2021-11-05 10:55"},"screening_site":"Northshore"},"10084":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-28 09:25","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-28 09:05","bscp_time_centrifuge":"2021-07-28 09:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-14 12:42","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-14 12:22","bscp_time_centrifuge":"2021-10-14 12:38"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-01 11:34","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-01 11:12","bscp_time_centrifuge":"2021-11-01 11:31"},"screening_site":"Northshore"},"10085":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-29 09:31","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-29 09:10","bscp_time_centrifuge":"2021-07-29 09:30"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-23 10:45","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-23 10:28","bscp_time_centrifuge":"2021-09-23 10:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-18 10:16","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-18 09:47","bscp_time_centrifuge":"2021-11-18 10:12"},"screening_site":"Northshore"},"10076":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-29 13:31","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-29 13:09","bscp_time_centrifuge":"2021-07-29 13:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-14 11:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-14 11:22","bscp_time_centrifuge":"2021-10-14 11:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 11:49","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 11:30","bscp_time_centrifuge":"2021-11-22 11:45"},"screening_site":"Northshore"},"10079":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-29 13:31","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-29 13:05","bscp_time_centrifuge":"2021-07-29 13:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-26 11:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-26 11:33","bscp_time_centrifuge":"2021-08-26 11:51"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-18 13:17","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-18 12:53","bscp_time_centrifuge":"2021-11-18 13:10"},"screening_site":"Rush"},"10074":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-30 09:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-30 09:09","bscp_time_centrifuge":"2021-07-30 09:26"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-13 09:59","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-13 09:34","bscp_time_centrifuge":"2021-09-13 09:54"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10092":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-02 12:01","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-02 11:31","bscp_time_centrifuge":"2021-08-02 11:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-22 13:41","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-22 13:22","bscp_time_centrifuge":"2021-09-22 13:39"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-30 11:06","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-30 10:45","bscp_time_centrifuge":"2021-11-30 11:02"},"screening_site":"Northshore"},"10086":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-03 12:37","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-03 12:13","bscp_time_centrifuge":"2021-08-03 12:35"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-24 09:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-24 09:26","bscp_time_centrifuge":"2021-09-24 09:46"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10082":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-03 12:54","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-03 12:27","bscp_time_centrifuge":"2021-08-03 12:49"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-06-29 12:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-07 11:46","bscp_time_centrifuge":"2021-09-07 12:17"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-15 15:47","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 15:23","bscp_time_centrifuge":"2021-11-15 15:42"},"screening_site":"Rush"},"10083":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-08-04 10:06","bscp_buffycoat_na":"1","bscp_comments":"Blood couldn't be drawn day of visit for patient related reasons. Patient came next day early and was missed by research. Blood was drawn and sent to wrong lab where it sat for an hour. Tubes were found and brought to processing lab and processed accordingly. PAXgene was not obtained. Food and drink was also not obtained. ","bscp_deg_of_hemolysis":"2","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-08-04 08:06","bscp_time_centrifuge":"2021-08-04 09:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-12 09:24","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-12 08:39","bscp_time_centrifuge":"2021-10-12 09:17"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-16 09:08","bscp_comments":"No food/drink/vax/caffiene","bscp_deg_of_hemolysis":"0","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-16 08:31","bscp_time_centrifuge":"2021-11-16 08:42"},"screening_site":"UChicago"},"10089":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-04 12:36","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-04 12:08","bscp_time_centrifuge":"2021-08-04 12:28"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-01 12:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-01 11:37","bscp_time_centrifuge":"2021-09-01 11:56"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-24 10:13","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 09:43","bscp_time_centrifuge":"2021-11-24 10:00"},"screening_site":"Rush"},"10095":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-04 13:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-04 13:35","bscp_time_centrifuge":"2021-08-04 13:56"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-24 12:42","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-24 12:13","bscp_time_centrifuge":"2021-09-24 12:38"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-23 09:02","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 08:43","bscp_time_centrifuge":"2021-11-23 08:58"},"screening_site":"Northshore"},"10094":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-05 10:31","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-05 10:08","bscp_time_centrifuge":"2021-08-05 10:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2021-09-16 11:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-16 10:51","bscp_time_centrifuge":"2021-09-16 11:13"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10087":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-08-05 12:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-05 12:26","bscp_time_centrifuge":"2021-08-05 12:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-10-20 13:01","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-20 12:38","bscp_time_centrifuge":"2021-10-20 12:55"},"3-Mo Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"RA and Clin nurse unable to draw blood. 2+ sticks","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10090":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-06 13:13","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-06 12:45","bscp_time_centrifuge":"2021-08-06 13:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-30 09:46","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-30 09:18","bscp_time_centrifuge":"2021-09-30 09:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-11-15 11:52","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 11:27","bscp_time_centrifuge":"2021-11-15 11:46"},"screening_site":"Rush"},"10066":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-08-06 14:52","bscp_comments":"Did not collect food/drink","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-06 14:10","bscp_time_centrifuge":"2021-08-06 14:41"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-20 12:51","bscp_comments":"Had to re spin blood after plasma was disturbed during transfer. Re spin completed 12:44","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-09-20 12:03","bscp_time_centrifuge":"2021-09-20 12:39"},"3-Mo Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-11-12 11:14","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-12 10:19","bscp_time_centrifuge":"2021-11-12 11:10"},"screening_site":"UChicago"},"10091":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-09 09:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-09 09:17","bscp_time_centrifuge":"2021-08-09 09:36"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-18 08:42","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-18 08:19","bscp_time_centrifuge":"2021-10-18 08:38"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-02 09:32","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-02 09:13","bscp_time_centrifuge":"2021-12-02 09:29"},"screening_site":"Northshore"},"10100":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-10 09:23","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-10 09:02","bscp_time_centrifuge":"2021-08-10 09:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-24 10:41","bscp_deg_of_hemolysis":"4","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-24 10:14","bscp_time_centrifuge":"2021-09-24 10:34"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-03 12:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-03 12:07","bscp_time_centrifuge":"2021-12-03 12:25"},"screening_site":"Northshore"},"10078":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-08-11 08:11","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-11 07:47","bscp_time_centrifuge":"2021-08-11 08:05"},"6-Wks Post-Op":{"bscp_comments":"Pt declined to be stuck. Stated she couldn't tolerate ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_sample_obtained":"1"},"screening_site":"Rush"},"10093":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-12 09:26","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-12 09:05","bscp_time_centrifuge":"2021-08-12 09:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-24 14:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-24 14:27","bscp_time_centrifuge":"2021-09-24 14:44"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-06 12:11","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-06 11:52","bscp_time_centrifuge":"2021-12-06 12:07"},"screening_site":"Northshore"},"10040":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-08-12 15:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-12 15:00","bscp_time_centrifuge":"2021-08-12 15:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2021-10-04 12:05","bscp_comments":"Patient got blood drawn on 10/1/2021without notifying research. Tubes were recovered after 30 minutes by the research team and stored in a fridge until they could be processed. Processed 10/4/2021","bscp_deg_of_hemolysis":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-10-01 08:00","bscp_time_centrifuge":"2021-10-04 11:42"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10108":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-16 11:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-16 11:15","bscp_time_centrifuge":"2021-08-16 11:34"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-27 09:51","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 09:26","bscp_time_centrifuge":"2021-10-27 09:45"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-10 10:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-10 10:30","bscp_time_centrifuge":"2022-01-10 10:48"},"screening_site":"Rush"},"10101":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-17 09:43","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-17 09:20","bscp_time_centrifuge":"2021-08-17 09:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-15 12:36","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-15 12:14","bscp_time_centrifuge":"2021-10-15 12:32"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-10 11:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-10 11:12","bscp_time_centrifuge":"2021-12-10 11:29"},"screening_site":"Northshore"},"10088":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-17 10:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-17 10:17","bscp_time_centrifuge":"2021-08-17 10:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-29 09:27","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-29 08:59","bscp_time_centrifuge":"2021-09-29 09:20"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-30 09:16","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-30 08:50","bscp_time_centrifuge":"2021-11-30 09:10"},"screening_site":"Rush"},"10029":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-17 11:26","bscp_comments":"blood draw outside of window (day of surgery)","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-08-17 11:05","bscp_time_centrifuge":"2021-08-17 11:22"},"screening_site":"Rush"},"10098":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-18 13:00","bscp_comments":"No food/liquid intake collected","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-18 12:30","bscp_time_centrifuge":"2021-08-18 12:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-11 11:54","bscp_deg_of_hemolysis":".5","bscp_time_blood_draw":"2021-10-11 11:27","bscp_time_centrifuge":"2021-10-11 11:47"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-07 10:12","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-07 09:43","bscp_time_centrifuge":"2021-12-07 10:09"},"screening_site":"UChicago"},"10104":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-19 09:47","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-19 09:24","bscp_time_centrifuge":"2021-08-19 09:42"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-14 10:30","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-14 10:12","bscp_time_centrifuge":"2021-10-14 10:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-12-13 09:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-13 09:28","bscp_time_centrifuge":"2021-12-13 09:41"},"screening_site":"Northshore"},"10105":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-20 12:27","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-20 12:07","bscp_time_centrifuge":"2021-08-20 12:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-11 09:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-11 09:24","bscp_time_centrifuge":"2021-10-11 09:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-07 12:09","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-07 11:49","bscp_time_centrifuge":"2021-12-07 12:05"},"screening_site":"Northshore"},"10112":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-25 12:14","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-25 12:03","bscp_time_centrifuge":"2021-08-25 12:26"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-11 13:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-11 13:13","bscp_time_centrifuge":"2021-10-11 13:35"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-16 13:38","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-16 13:17","bscp_time_centrifuge":"2021-12-16 13:34"},"screening_site":"Northshore"},"10106":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-08-26 10:28","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-26 10:09","bscp_time_centrifuge":"2021-08-26 10:28"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-04 15:01","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-04 14:33","bscp_time_centrifuge":"2021-10-04 14:55"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-20 11:07","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-20 10:37","bscp_time_centrifuge":"2021-12-20 11:00"},"screening_site":"Rush"},"10099":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-08-26 11:14","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-26 10:54","bscp_time_centrifuge":"2021-08-26 11:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-10-28 08:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-28 07:53","bscp_time_centrifuge":"2021-10-28 08:13"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-12-14 09:04","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-14 08:41","bscp_time_centrifuge":"2021-12-14 09:00"},"screening_site":"Rush"},"10116":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-26 12:31","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-26 12:07","bscp_time_centrifuge":"2021-08-26 12:26"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-08 13:38","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-08 13:09","bscp_time_centrifuge":"2021-10-08 13:34"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 10:27","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 10:08","bscp_time_centrifuge":"2021-11-22 10:23"},"screening_site":"Northshore"},"10068":{"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-08-26 15:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-26 15:13","bscp_time_centrifuge":"2021-08-26 15:32"},"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-08 14:58","bscp_comments":"no hemolysis obtained ","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-08 14:52","bscp_time_centrifuge":"2021-07-08 15:10"},"3-Mo Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-11-09 16:08","bscp_comments":"Patient had limit blood flow. We partially filled the tubes. Blood processed after 30 min.","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-11-09 15:00","bscp_time_centrifuge":"2021-11-09 16:00"},"screening_site":"UChicago"},"10102":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-08-24 12:01","bscp_comments":"Hemolysis not accessed during processing.","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-08-24 11:18","bscp_time_centrifuge":"2021-08-24 11:52"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-02 11:28","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-02 11:03","bscp_time_centrifuge":"2021-12-02 11:25"},"6-Wks Post-Op":{"bscp_comments":"No visit occurred for this draw ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10117":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-27 11:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-27 11:22","bscp_time_centrifuge":"2021-08-27 11:44"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-04 09:17","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-04 08:56","bscp_time_centrifuge":"2021-11-04 09:14"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-09 13:37","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-09 13:18","bscp_time_centrifuge":"2021-12-09 13:33"},"screening_site":"Northshore"},"10118":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-30 10:52","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-30 10:29","bscp_time_centrifuge":"2021-08-30 10:47"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-25 13:33","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-25 13:14","bscp_time_centrifuge":"2021-10-25 13:30"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10122":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-02 09:37","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-02 09:11","bscp_time_centrifuge":"2021-09-02 09:32"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-27 13:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 13:11","bscp_time_centrifuge":"2021-10-27 13:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-21 14:02","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-21 13:42","bscp_time_centrifuge":"2021-12-21 13:59"},"screening_site":"Northshore"},"10109":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-02 12:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-02 12:27","bscp_time_centrifuge":"2021-09-02 12:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-30 13:44","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-30 13:22","bscp_time_centrifuge":"2021-09-30 13:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-01 13:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-01 12:42","bscp_time_centrifuge":"2021-12-01 13:00"},"screening_site":"Rush"},"10111":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-02 13:57","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-02 13:32","bscp_time_centrifuge":"2021-09-02 13:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-26 11:42","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-26 11:20","bscp_time_centrifuge":"2021-10-26 11:38"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10121":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-02 14:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-02 13:45","bscp_time_centrifuge":"2021-09-02 14:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-27 14:20","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-27 13:53","bscp_time_centrifuge":"2021-09-27 14:11"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10125":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-03 09:10","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-03 08:46","bscp_time_centrifuge":"2021-09-03 09:03"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-28 09:03","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-28 08:42","bscp_time_centrifuge":"2021-10-28 08:58"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-15 10:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 09:50","bscp_time_centrifuge":"2021-12-15 10:16"},"screening_site":"Rush"},"10128":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-07 09:31","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-07 09:03","bscp_time_centrifuge":"2021-09-07 09:26"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-03 11:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-03 11:09","bscp_time_centrifuge":"2021-11-03 11:27"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10133":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-07 13:22","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-07 12:40","bscp_time_centrifuge":"2021-09-07 13:13"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-25 14:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-25 13:44","bscp_time_centrifuge":"2021-10-25 14:12"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10130":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-08 09:28","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-08 09:03","bscp_time_centrifuge":"2021-09-08 09:23"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-11 07:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-11 07:37","bscp_time_centrifuge":"2021-11-11 07:54"},"3-Mo Post-Op":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2022-01-04 08:50","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-04 08:22","bscp_time_centrifuge":"2022-01-04 08:42"},"screening_site":"Rush"},"10113":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-08 11:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-08 11:03","bscp_time_centrifuge":"2021-09-08 11:23"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-26 14:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-26 14:13","bscp_time_centrifuge":"2021-10-26 14:40"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-15 12:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 12:11","bscp_time_centrifuge":"2021-12-15 12:32"},"screening_site":"Northshore"},"10035":{"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-08 11:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-08 11:22","bscp_time_centrifuge":"2021-09-08 11:43"},"6-Wks Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"Attempted blood draw 6/28. Unable to draw. Pt unwilling to come in 2nd time closer to 6 weeks. ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"Baseline Visit":{"bscp_comments":"She wanted a thin needle to be used for her blood draw but we did not have one available at the moment. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10081":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-08 16:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-08 16:24","bscp_time_centrifuge":"2021-09-08 16:44"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2021-11-17 14:40","bscp_comments":"Vein collapsed, unable to fill lavender tube.","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-11-17 14:23"},"Baseline Visit":{"bscp_comments":"Unable to obtain blood DOS b/c pt is having sx at different hospital. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10124":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-09 11:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-09 11:02","bscp_time_centrifuge":"2021-09-09 11:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-14 13:42","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-14 13:17","bscp_time_centrifuge":"2021-10-14 13:38"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-04 13:30","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-04 13:01","bscp_time_centrifuge":"2022-01-04 13:18"},"screening_site":"Rush"},"10138":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-13 13:41","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-13 13:22","bscp_time_centrifuge":"2021-09-13 13:36"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-09 13:53","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-09 13:35","bscp_time_centrifuge":"2021-11-09 13:49"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10115":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-13 14:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-13 13:53","bscp_time_centrifuge":"2021-09-13 14:13"},"screening_site":"Rush"},"10134":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-14 10:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-14 10:13","bscp_time_centrifuge":"2021-09-14 10:32"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-13 10:53","bscp_comments":"Protocol deviation - blood past 30 minute window because we were processing another sample for A2CPS before we could put this sample into the centrifuge.","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_time_blood_draw":"2021-10-13 10:14","bscp_time_centrifuge":"2021-10-13 10:48"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-06 12:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-06 11:54","bscp_time_centrifuge":"2022-01-06 12:19"},"screening_site":"Rush"},"10136":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-14 11:47","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-14 11:20","bscp_time_centrifuge":"2021-09-14 11:41"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-29 13:19","bscp_comments":"Did not ask subject food and drink consumption questions","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-29 12:45","bscp_time_centrifuge":"2021-10-29 13:10"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10139":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-14 13:50","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-14 13:20","bscp_time_centrifuge":"2021-09-14 13:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-18 11:52","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-18 11:32","bscp_time_centrifuge":"2021-11-18 11:48"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10123":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-09-16 07:39","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-16 07:16","bscp_time_centrifuge":"2021-09-16 07:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-13 09:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-13 09:11","bscp_time_centrifuge":"2021-10-13 09:28"},"3-Mo Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"Unable to obtain after 2 sticks. 2 RA's attempted.","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10107":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-16 09:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-16 08:37","bscp_time_centrifuge":"2021-09-16 08:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-06 09:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-06 09:28","bscp_time_centrifuge":"2021-10-06 09:46"},"3-Mo Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"Unable to get blood after several attempts. ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10127":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-09-16 09:37","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-16 09:10","bscp_time_centrifuge":"2021-09-16 09:32"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-13 10:36","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-13 10:08","bscp_time_centrifuge":"2021-10-13 10:29"},"3-Mo Post-Op":{"bscp_comments":"Unable to get any blood after multiple sticks. ","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10145":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-16 14:39","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-16 14:11","bscp_time_centrifuge":"2021-09-16 14:37"},"6-Wks Post-Op":{"bscp_comments":"Unable to come in for 6 week visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10132":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-17 11:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-17 11:16","bscp_time_centrifuge":"2021-09-17 11:36"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-22 13:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-22 12:40","bscp_time_centrifuge":"2021-12-22 13:15"},"6-Wks Post-Op":{"bscp_comments":"Subject couldn't make it to visit ","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10143":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-16 11:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-16 11:10","bscp_time_centrifuge":"2021-09-16 11:20"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"After first visit, patient wasn't interested in coming back. Research staff reached out several times but didn't receive any response. ","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10141":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-09-17 14:09","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-17 13:47","bscp_time_centrifuge":"2021-09-17 14:04"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-04 13:34","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-04 13:14","bscp_time_centrifuge":"2021-11-04 13:30"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10148":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-22 13:46","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-22 13:23","bscp_time_centrifuge":"2021-09-22 13:41"},"screening_site":"Rush"},"10137":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-09-23 11:51","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-23 11:30","bscp_time_centrifuge":"2021-09-23 11:48"},"6-Wks Post-Op":{"bscp_comments":"Unable to come in for 6 week visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10152":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-23 14:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-23 14:27","bscp_time_centrifuge":"2021-09-23 14:46"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-09 13:42","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-10 13:18","bscp_time_centrifuge":"2021-11-09 13:38"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10110":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-09-24 08:38","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-24 08:08","bscp_time_centrifuge":"2021-09-24 08:28"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-03-10 12:10","bscp_comments":"No lavender collected, blood flow stopped after 1st tube","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-10 11:53"},"6-Wks Post-Op":{"bscp_comments":"Attempted stick 2x. Pt mentioned lightheaded and likely dehydrated. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10142":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-09-27 08:27","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-27 08:04","bscp_time_centrifuge":"2021-09-27 08:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-26 14:28","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-26 13:58","bscp_time_centrifuge":"2021-10-26 14:19"},"3-Mo Post-Op":{"bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10151":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-27 09:58","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-27 09:36","bscp_time_centrifuge":"2021-09-27 09:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-09 10:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-09 10:10","bscp_time_centrifuge":"2021-11-09 10:31"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10157":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-28 09:26","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-28 09:02","bscp_time_centrifuge":"2021-09-28 09:25"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-23 09:50","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 09:31","bscp_time_centrifuge":"2021-11-23 09:47"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10144":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-28 12:09","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-28 11:42","bscp_time_centrifuge":"2021-09-28 12:04"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-11 11:31","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-11 11:04","bscp_time_centrifuge":"2021-11-11 11:18"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-01 09:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-01 08:30","bscp_time_centrifuge":"2022-02-01 08:54"},"screening_site":"Rush"},"10160":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-28 13:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-28 12:54","bscp_time_centrifuge":"2021-09-28 13:09"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-17 15:22","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-17 14:57","bscp_time_centrifuge":"2021-11-17 15:18"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10149":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-09-29 12:14","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-29 11:51","bscp_time_centrifuge":"2021-09-29 12:09"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-14 13:19","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-14 12:49","bscp_time_centrifuge":"2021-12-14 13:13"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-01-26 12:11","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-26 11:31","bscp_time_centrifuge":"2022-01-26 12:00"},"screening_site":"Rush"},"10158":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-29 12:26","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-29 12:02","bscp_time_centrifuge":"2021-09-29 12:23"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 10:12","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 09:47","bscp_time_centrifuge":"2021-11-22 10:07"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10129":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-10-01 11:56","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-01 11:34","bscp_time_centrifuge":"2021-10-01 11:52"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-21 11:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-21 11:21","bscp_time_centrifuge":"2021-10-21 11:44"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-01-06 11:19","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-06 10:52","bscp_time_centrifuge":"2022-01-06 11:10"},"screening_site":"Rush"},"10161":{"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-10-04 09:49","bscp_comments":"Able to get about 1.5 mL whole blood in EDTA tube. Patient was a hard draw.","bscp_deg_of_hemolysis":"4","bscp_protocol_dev":"0","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2021-10-04 09:26","bscp_time_centrifuge":"2021-10-04 09:47"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-11-23 13:44","bscp_comments":"PT is a hard stick.","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 13:20","bscp_time_centrifuge":"2021-11-23 13:40"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10162":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-04 13:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-04 13:39","bscp_time_centrifuge":"2021-10-04 13:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-17 13:11","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-17 12:44","bscp_time_centrifuge":"2021-11-17 13:07"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10163":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-05 08:58","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-05 08:39","bscp_time_centrifuge":"2021-10-05 08:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-30 14:55","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-30 14:19","bscp_time_centrifuge":"2021-11-30 14:50"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10154":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-05 12:25","bscp_comments":"over 30 minutes to freezer, had to re-centrifuge due to disturbing buffy coat","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-10-05 11:47","bscp_time_centrifuge":"2021-10-05 12:17"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-03 11:59","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-03 11:26","bscp_time_centrifuge":"2022-03-03 11:51"},"3-Mo Post-Op":{"bscp_comments":"Pt missed study visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10164":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-05 13:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-05 13:13","bscp_time_centrifuge":"2021-10-05 13:30"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 13:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 13:12","bscp_time_centrifuge":"2021-11-22 13:29"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10175":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-06 11:29","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-06 11:06","bscp_time_centrifuge":"2021-10-06 11:25"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-24 13:48","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 13:27","bscp_time_centrifuge":"2021-11-24 13:44"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10165":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-07 10:29","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-07 10:08","bscp_time_centrifuge":"2021-10-07 10:26"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-29 12:16","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-29 11:54","bscp_time_centrifuge":"2021-11-29 12:12"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10150":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-07 14:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-07 14:07","bscp_time_centrifuge":"2021-10-07 14:26"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-10 10:58","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-10 10:33","bscp_time_centrifuge":"2021-11-10 10:50"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-24 13:30","bscp_comments":"Unable to scan everything due to laptop dying. ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-24 12:59","bscp_time_centrifuge":"2022-02-24 13:17"},"screening_site":"Rush"},"10155":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-10-08 09:19","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-08 08:52","bscp_time_centrifuge":"2021-10-08 09:10"},"6-Wks Post-Op":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2021-10-27 11:51","bscp_comments":"Unable to obtain paxgene tube.","bscp_deg_of_hemolysis":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 11:26","bscp_time_centrifuge":"2021-10-27 11:47"},"3-Mo Post-Op":{"bscp_comments":"Patient could not make it in for a 3 mth visit ","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10156":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-11 08:46","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-11 08:16","bscp_time_centrifuge":"2021-10-11 08:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-06 10:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-06 10:14","bscp_time_centrifuge":"2021-12-06 10:36"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-03 13:14","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-03 12:40","bscp_time_centrifuge":"2022-02-03 13:01"},"screening_site":"Rush"},"10174":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-11 10:01","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-11 09:32","bscp_time_centrifuge":"2021-10-11 09:52"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-10 11:25","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-10 11:01","bscp_time_centrifuge":"2021-11-10 11:18"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-01-25 11:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-25 10:55","bscp_time_centrifuge":"2022-01-25 11:15"},"screening_site":"Rush"},"10168":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-12 09:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-12 09:18","bscp_time_centrifuge":"2021-10-12 09:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-23 10:36","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 10:13","bscp_time_centrifuge":"2021-11-23 10:32"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10181":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-12 11:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-12 10:54","bscp_time_centrifuge":"2021-10-12 11:14"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-19 11:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-19 11:23","bscp_time_centrifuge":"2022-01-19 11:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-22 11:34","bscp_comments":"Used 23 gauge butterfly instead of kit provided needle due to pt stating they have small veins","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-22 11:08","bscp_time_centrifuge":"2022-02-22 11:27"},"screening_site":"Rush"},"10167":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-13 10:36","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-13 10:17","bscp_time_centrifuge":"2021-10-13 10:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-02 11:27","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-02 11:07","bscp_time_centrifuge":"2021-12-02 11:24"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10179":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-14 09:43","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-14 09:23","bscp_time_centrifuge":"2021-10-14 09:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-01 10:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-01 10:14","bscp_time_centrifuge":"2021-12-01 10:29"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10188":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-14 16:13","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-14 15:48","bscp_time_centrifuge":"2021-10-14 16:07"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-08 13:17","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-08 12:53","bscp_time_centrifuge":"2022-07-08 13:12"},"6-Wks Post-Op":{"bscp_comments":"Pt unable to come in for 6 wk visit due to hospitalization from infection. Related SAE CRF is completed. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10126":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-10-15 09:18","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-15 08:55","bscp_time_centrifuge":"2021-10-15 09:13"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-03 11:35","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-03 11:07","bscp_time_centrifuge":"2021-11-03 11:30"},"3-Mo Post-Op":{"bscp_comments":"Patient unable to come in for 3mo visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10159":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-18 10:46","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-18 10:16","bscp_time_centrifuge":"2021-10-18 10:41"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-11 08:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-11 08:33","bscp_time_centrifuge":"2021-11-11 08:51"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-10 11:52","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-10 11:16","bscp_time_centrifuge":"2022-02-10 11:45"},"screening_site":"Rush"},"10166":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-18 13:41","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-18 13:21","bscp_time_centrifuge":"2021-10-18 13:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-24 09:43","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 09:17","bscp_time_centrifuge":"2021-11-24 09:39"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10183":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-19 09:09","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-19 08:41","bscp_time_centrifuge":"2021-10-19 09:01"},"6-Wks Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-11-30 15:07","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-30 14:40","bscp_time_centrifuge":"2021-11-30 15:00"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-08 12:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-08 12:30","bscp_time_centrifuge":"2022-03-08 12:48"},"screening_site":"Rush"},"10177":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-20 10:02","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-20 09:41","bscp_time_centrifuge":"2021-10-20 09:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-13 12:19","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-13 11:59","bscp_time_centrifuge":"2021-12-13 12:15"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10195":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-20 10:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-20 10:30","bscp_time_centrifuge":"2021-10-20 10:47"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-24 09:19","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 08:46","bscp_time_centrifuge":"2021-11-24 09:10"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-02-09 12:37","bscp_comments":"Unable to collect blood for lavender tube.","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2022-02-09 12:19"},"screening_site":"Rush"},"10146":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-20 14:08","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-20 13:45","bscp_time_centrifuge":"2021-10-20 14:03"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-11 11:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-11 11:27","bscp_time_centrifuge":"2021-11-11 11:47"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-01-26 09:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-26 09:04","bscp_time_centrifuge":"2022-01-26 09:27"},"screening_site":"Rush"},"10147":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-20 15:26","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-20 14:52","bscp_time_centrifuge":"2021-10-20 15:21"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-09 09:58","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-09 09:26","bscp_time_centrifuge":"2021-12-09 09:55"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-09 17:04","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-09 16:42","bscp_time_centrifuge":"2022-02-09 16:54"},"screening_site":"UChicago"},"10170":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-21 10:38","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_centrifuge":"2021-10-21 10:34"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-14 10:07","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-14 09:46","bscp_time_centrifuge":"2021-12-14 10:03"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10190":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-21 12:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-21 12:14","bscp_time_centrifuge":"2021-10-21 12:32"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-29 13:20","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-29 12:56","bscp_time_centrifuge":"2021-11-29 13:16"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10171":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-22 09:56","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-22 09:36","bscp_time_centrifuge":"2021-10-22 09:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-22 11:39","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-22 11:19","bscp_time_centrifuge":"2021-12-22 11:35"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10197":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-22 12:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-22 12:14","bscp_time_centrifuge":"2021-10-22 12:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-15 10:45","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 10:18","bscp_time_centrifuge":"2021-12-15 10:39"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10169":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-25 08:31","bscp_comments":"collected day of surgery","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-10-25 08:08","bscp_time_centrifuge":"2021-10-25 08:23"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-11-17 13:53","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-17 13:21","bscp_time_centrifuge":"2021-11-17 13:43"},"3-Mo Post-Op":{"bscp_comments":"Patient in a lot of pain today and is a difficult stick. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10191":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-25 09:37","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-25 09:17","bscp_time_centrifuge":"2021-10-25 09:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-22 10:11","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-22 09:49","bscp_time_centrifuge":"2021-12-22 10:07"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10180":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-26 12:40","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-26 12:20","bscp_time_centrifuge":"2021-10-26 12:36"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-23 11:23","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-23 11:03","bscp_time_centrifuge":"2021-12-23 11:19"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10184":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-10-27 08:18","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 07:52","bscp_time_centrifuge":"2021-10-27 08:10"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-13 15:11","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-13 14:46","bscp_time_centrifuge":"2022-01-13 15:05"},"3-Mo Post-Op":{"bscp_comments":"Pt unable to come in for 3 month study visit","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10203":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-27 09:41","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 09:20","bscp_time_centrifuge":"2021-10-27 09:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-15 12:20","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 11:59","bscp_time_centrifuge":"2021-12-15 12:17"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10189":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-27 11:12","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 10:45","bscp_time_centrifuge":"2021-10-27 11:04"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-19 10:21","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-19 09:55","bscp_time_centrifuge":"2021-11-19 10:15"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-26 10:10","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-26 09:45","bscp_time_centrifuge":"2022-01-26 10:04"},"screening_site":"Rush"},"10206":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-27 12:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 12:26","bscp_time_centrifuge":"2021-10-27 12:44"},"3-Mo Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10182":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-28 10:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-28 10:13","bscp_time_centrifuge":"2021-10-28 10:29"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-04 11:58","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-04 11:39","bscp_time_centrifuge":"2022-03-04 11:55"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10192":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-29 13:26","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-29 13:05","bscp_time_centrifuge":"2021-10-29 13:22"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-28 13:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-28 13:19","bscp_time_centrifuge":"2022-02-28 13:37"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10204":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-01 12:03","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-01 11:42","bscp_time_centrifuge":"2021-11-01 11:59"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-01 11:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-01 11:12","bscp_time_centrifuge":"2021-12-01 11:30"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-28 10:55","bscp_comments":"Used 23 needle.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-28 10:19","bscp_time_centrifuge":"2022-02-28 10:44"},"screening_site":"Rush"},"10200":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-02 11:29","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-02 11:01","bscp_time_centrifuge":"2021-11-02 11:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-01 10:03","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-01 09:37","bscp_time_centrifuge":"2021-12-01 09:57"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-15 11:59","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 11:33","bscp_time_centrifuge":"2022-02-15 11:53"},"screening_site":"Rush"},"10120":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-02 13:34","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-02 13:10","bscp_time_centrifuge":"2021-11-02 13:30"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-17 10:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-17 10:15","bscp_time_centrifuge":"2021-12-17 10:35"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-03-03 16:11","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-03 15:35","bscp_time_centrifuge":"2022-03-03 16:05"},"screening_site":"UChicago"},"10185":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-03 10:34","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-03 10:14","bscp_time_centrifuge":"2021-11-03 10:29"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-02 11:58","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-02 11:35","bscp_time_centrifuge":"2022-03-02 11:54"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10194":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-03 12:17","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-03 11:57","bscp_time_centrifuge":"2021-11-03 12:13"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10208":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-11-05 12:54","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-05 12:24","bscp_time_centrifuge":"2021-11-05 12:49"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-24 10:13","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 09:30","bscp_time_centrifuge":"2021-11-24 10:00"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-03 10:02","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-03 09:36","bscp_time_centrifuge":"2022-02-03 09:56"},"screening_site":"Rush"},"10207":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-09 13:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-09 12:59","bscp_time_centrifuge":"2021-11-09 13:15"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10198":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-10 11:40","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-10 11:19","bscp_time_centrifuge":"2021-11-10 11:36"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10205":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-11 09:52","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-11 09:29","bscp_time_centrifuge":"2021-11-11 09:48"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-16 09:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-16 08:54","bscp_time_centrifuge":"2022-02-16 09:11"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10215":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-11 14:06","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-11 13:47","bscp_time_centrifuge":"2021-11-11 14:02"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10199":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-12 13:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-12 13:14","bscp_time_centrifuge":"2021-11-12 13:36"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10211":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-15 11:08","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 10:49","bscp_time_centrifuge":"2021-11-15 11:04"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-03-17 12:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 11:42","bscp_time_centrifuge":"2022-03-17 11:58"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10097":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-15 12:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 11:50","bscp_time_centrifuge":"2021-11-15 12:10"},"Baseline Visit":{"bscp_aliquot_freezer_time":"2021-10-22 11:40","bscp_buffycoat_na":"1","bscp_comments":"Unable to obtain enough blood for lavender tube processing. ","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-10-22 11:28"},"3-Mo Post-Op":{"bscp_comments":"Pt was extremely anxious; RA attempted blood draw and stuck patient once. ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10202":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-11-15 12:54","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 12:28","bscp_time_centrifuge":"2021-11-15 12:49"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10219":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-15 12:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 12:24","bscp_time_centrifuge":"2021-11-15 12:42"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-15 09:07","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 08:42","bscp_time_centrifuge":"2021-12-15 08:59"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-16 10:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-16 09:37","bscp_time_centrifuge":"2022-03-16 09:54"},"screening_site":"Rush"},"10212":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-16 09:39","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-16 09:19","bscp_time_centrifuge":"2021-11-16 09:36"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10196":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-11-16 10:47","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-16 10:19","bscp_time_centrifuge":"2021-11-16 10:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-08 11:46","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-08 11:17","bscp_time_centrifuge":"2021-12-08 11:36"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-11 09:47","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-11 09:20","bscp_time_centrifuge":"2022-03-11 09:41"},"screening_site":"Rush"},"10213":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-17 08:46","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-17 08:25","bscp_time_centrifuge":"2021-11-17 08:42"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-16 09:51","bscp_comments":"Internet not working. Had to record barcodes manually","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-16 09:20","bscp_time_centrifuge":"2022-02-16 09:40"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-11 15:33","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-11 15:06","bscp_time_centrifuge":"2022-05-11 15:26"},"screening_site":"Rush"},"10216":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-11-18 11:30","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-18 10:57","bscp_time_centrifuge":"2021-11-18 11:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-07 14:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-07 14:26","bscp_time_centrifuge":"2021-12-07 14:46"},"3-Mo Post-Op":{"bscp_comments":"Unable to perform blood draw because patient had difficult veins. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10221":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-18 13:36","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-18 13:13","bscp_time_centrifuge":"2021-11-18 13:31"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-03 12:32","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-03 12:13","bscp_time_centrifuge":"2022-03-03 12:28"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10226":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 11:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 11:22","bscp_time_centrifuge":"2021-11-22 11:37"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-15 13:31","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-15 13:00","bscp_time_centrifuge":"2022-03-15 13:20"},"6-Wks Post-Op":{"bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10119":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 12:48","bscp_comments":"Barcode not scanned in","bscp_deg_of_hemolysis":".25","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-11-22 12:20","bscp_time_centrifuge":"2021-11-22 12:45"},"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_comments":"Time for Freezer and spin stop not recorded and hemeolysis","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-10-01 16:02"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_lav1_not_obt":"1","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10218":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-11-22 13:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 13:30","bscp_time_centrifuge":"2021-11-22 13:51"},"3-Mo Post-Op":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2022-03-17 15:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 15:28","bscp_time_centrifuge":"2022-03-17 15:45"},"6-Wks Post-Op":{"bscp_comments":"Pt unable to come in for 6 wk visit","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10153":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-11-22 18:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 17:49","bscp_time_centrifuge":"2021-11-22 18:23"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-04 10:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-04 10:03","bscp_time_centrifuge":"2022-02-04 10:36"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-09 17:42","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-09 16:54","bscp_time_centrifuge":"2022-03-09 17:40"},"screening_site":"UChicago"},"10231":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-11-23 12:01","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 11:35","bscp_time_centrifuge":"2021-11-23 11:56"},"3-Mo Post-Op":{"bscp_comments":"Unable to come in for 3 month visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10220":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-24 10:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 10:01","bscp_time_centrifuge":"2021-11-24 10:16"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-03-08 12:26","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-08 12:07","bscp_time_centrifuge":"2022-03-08 12:22"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10103":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-29 10:08","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-29 09:43","bscp_time_centrifuge":"2021-11-29 10:05"},"3-Mo Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"Was not able to draw subject. ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"Baseline Visit":{"bscp_comments":"Phlebotomy station closed before subject could get blood drawn","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10214":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-30 13:49","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-30 13:17","bscp_time_centrifuge":"2021-11-30 13:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-11 14:04","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-11 13:37","bscp_time_centrifuge":"2022-08-11 13:58"},"screening_site":"Rush"},"10236":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-30 15:19","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-30 14:41","bscp_time_centrifuge":"2021-11-30 15:11"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-27 10:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-27 09:50","bscp_time_centrifuge":"2022-01-27 10:07"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-15 09:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-15 08:46","bscp_time_centrifuge":"2022-03-15 09:10"},"screening_site":"Rush"},"10224":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-01 12:23","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-01 11:59","bscp_time_centrifuge":"2021-12-01 12:17"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-06 11:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-06 11:16","bscp_time_centrifuge":"2022-04-06 11:45"},"6-Wks Post-Op":{"bscp_comments":"Pt out of town throughout 6 wk window. Unable to collect blood","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10237":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-01 13:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-01 12:55","bscp_time_centrifuge":"2021-12-01 13:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-17 11:27","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-17 10:59","bscp_time_centrifuge":"2022-02-17 11:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-07 09:37","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-07 09:11","bscp_time_centrifuge":"2022-04-07 09:31"},"screening_site":"UChicago"},"10234":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-02 14:03","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-02 13:44","bscp_time_centrifuge":"2021-12-02 13:59"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-25 12:07","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-25 11:47","bscp_time_centrifuge":"2022-03-25 12:04"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10209":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-03 08:42","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-03 08:17","bscp_time_centrifuge":"2021-12-03 08:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-12 15:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-12 14:40","bscp_time_centrifuge":"2022-01-12 15:02"},"screening_site":"Rush"},"10238":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-03 09:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-03 09:28","bscp_time_centrifuge":"2021-12-03 09:42"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-03-31 12:15","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-31 11:57","bscp_time_centrifuge":"2022-03-31 12:11"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10225":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-03 16:17","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-03 15:57","bscp_time_centrifuge":"2021-12-03 16:12"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-12 07:57","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-12 07:30","bscp_time_centrifuge":"2022-01-12 07:49"},"3-Mo Post-Op":{"bscp_buffycoat_na":"1","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10222":{"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-12-06 08:27","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-06 08:07","bscp_time_centrifuge":"2021-12-06 08:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-09 09:41","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-09 09:12","bscp_time_centrifuge":"2022-03-09 09:35"},"6-Wks Post-Op":{"bscp_aliquot_freezer_time":"2022-01-03 08:18","bscp_buffycoat_na":"1","bscp_comments":"Could not obtain enough blood for lavender tube","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2022-01-03 07:59"},"screening_site":"Rush"},"10233":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-06 09:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-06 09:20","bscp_time_centrifuge":"2021-12-06 09:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-05 11:22","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-05 10:52","bscp_time_centrifuge":"2022-01-05 11:15"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-17 12:25","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 11:46","bscp_time_centrifuge":"2022-03-17 12:08"},"screening_site":"Rush"},"10223":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-06 13:31","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-06 13:12","bscp_time_centrifuge":"2021-12-06 13:27"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-24 13:29","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-24 13:09","bscp_time_centrifuge":"2022-03-24 13:26"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10230":{"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-12-07 09:08","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-07 08:48","bscp_time_centrifuge":"2021-12-07 09:05"},"6-Wks Post-Op":{"bscp_comments":"Patient refused to come to Rush for their blood draw. States that it is too far for him to come in for just a quick blood draw and he has his office visits at the Oak Park location. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Pt unwilling to come in for in person visits","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10246":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-08 12:22","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-08 12:00","bscp_time_centrifuge":"2021-12-08 12:18"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-03-29 12:03","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-29 11:41","bscp_time_centrifuge":"2022-03-29 11:59"},"6-Wks Post-Op":{"bscp_comments":"Missed due to COVID research shutdown","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10173":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-09 13:36","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-09 13:07","bscp_time_centrifuge":"2021-12-09 13:30"},"Baseline Visit":{"bscp_buffycoat_na":"1","bscp_comments":"Attempted draw. Unable to locate additional veins to draw blood from. DOS at different facility; unable to obtain sample. ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"2 RA's attempted sticks 3 sticks. \r\n","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10232":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2021-12-10 12:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-10 10:28","bscp_time_centrifuge":"2021-12-10 10:49"},"6-Wks Post-Op":{"bscp_comments":"Patient was moving and complaining of pain from the tourniquet. Unable to get blood sample. ","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Patient very sensitive to needles and requested to stop blood draw due to pain. ","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10217":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-16 09:09","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-16 08:34","bscp_time_centrifuge":"2021-12-16 08:59"},"Baseline Visit":{"bscp_aliquot_freezer_time":"2021-11-22 14:40","bscp_buffycoat_na":"1","bscp_comments":"Unable to get enough blood for lavender tube. ","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-11-22 14:25"},"3-Mo Post-Op":{"bscp_comments":"Flash in tube, but blood not going into tube.","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10239":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-17 09:02","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-17 08:37","bscp_time_centrifuge":"2021-12-17 08:56"},"screening_site":"Rush"},"10247":{"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-12-17 10:15","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-17 09:48","bscp_time_centrifuge":"2021-12-17 10:09"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-01-06 12:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-06 12:21","bscp_time_centrifuge":"2022-01-06 12:43"},"3-Mo Post-Op":{"bscp_comments":"Stuck patient 3 times and unable to get blood draw. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10256":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-17 12:31","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-17 12:05","bscp_time_centrifuge":"2021-12-17 12:28"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-28 12:03","bscp_deg_of_hemolysis":"0","bscp_time_blood_draw":"2022-02-28 11:36","bscp_time_centrifuge":"2022-02-28 12:01"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-05 10:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-05 09:52","bscp_time_centrifuge":"2022-04-05 10:13"},"screening_site":"UChicago"},"10250":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-20 12:22","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-20 12:02","bscp_time_centrifuge":"2021-12-20 12:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-06 12:08","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-06 11:44","bscp_time_centrifuge":"2022-04-06 12:04"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-08 13:34","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-08 13:14","bscp_time_centrifuge":"2022-06-08 13:29"},"screening_site":"Northshore"},"10235":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-20 12:58","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-20 12:22","bscp_time_centrifuge":"2021-12-20 12:50"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-02 12:27","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 12:05","bscp_time_centrifuge":"2022-05-02 12:23"},"screening_site":"UChicago"},"10251":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-21 10:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-21 10:01","bscp_time_centrifuge":"2021-12-21 10:21"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-11 10:16","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-11 09:51","bscp_time_centrifuge":"2022-01-11 10:10"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-21 11:12","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-21 10:43","bscp_time_centrifuge":"2022-03-21 11:09"},"screening_site":"Rush"},"10227":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2021-12-21 10:43","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-21 10:12","bscp_time_centrifuge":"2021-12-21 10:32"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-31 16:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-31 16:20","bscp_time_centrifuge":"2022-01-31 16:43"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-28 12:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-28 12:24","bscp_time_centrifuge":"2022-03-28 12:49"},"screening_site":"Rush"},"10255":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-22 10:26","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-22 10:00","bscp_time_centrifuge":"2021-12-22 10:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-01-28 13:10","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-28 12:47","bscp_time_centrifuge":"2022-01-28 13:05"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-12 10:00","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-12 09:29","bscp_time_centrifuge":"2022-04-12 09:52"},"screening_site":"Rush"},"10257":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-22 14:03","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-22 13:41","bscp_time_centrifuge":"2021-12-22 13:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-12 13:43","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-12 13:21","bscp_time_centrifuge":"2022-04-12 13:39"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-23 12:32","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-23 12:13","bscp_time_centrifuge":"2022-05-23 12:29"},"screening_site":"Northshore"},"10243":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-03 12:02","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-03 11:32","bscp_time_centrifuge":"2022-01-03 11:52"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-25 13:41","bscp_deg_of_hemolysis":".25","bscp_time_blood_draw":"2022-02-25 13:07","bscp_time_centrifuge":"2022-02-25 13:33"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-14 14:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-14 13:37","bscp_time_centrifuge":"2022-04-14 13:54"},"screening_site":"UChicago"},"10252":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-01-05 14:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-05 13:30","bscp_time_centrifuge":"2022-01-05 14:00"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-15 13:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-15 12:52","bscp_time_centrifuge":"2022-04-15 13:10"},"screening_site":"UChicago"},"10270":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-11 12:09","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-11 11:41","bscp_time_centrifuge":"2022-01-11 12:01"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-14 14:41","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-14 14:06","bscp_time_centrifuge":"2022-02-14 14:31"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-03 13:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-03 13:24","bscp_time_centrifuge":"2022-05-03 13:44"},"screening_site":"Rush"},"10266":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-01-12 11:54","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-12 11:18","bscp_time_centrifuge":"2022-01-12 11:46"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-10 16:25","bscp_comments":"Unable to scan; Redcap down. Input data next morning. ","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-10 15:58","bscp_time_centrifuge":"2022-02-10 16:15"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-13 10:47","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-13 10:11","bscp_time_centrifuge":"2022-04-13 10:32"},"screening_site":"Rush"},"10265":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-13 11:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-13 11:01","bscp_time_centrifuge":"2022-01-13 11:17"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-14 11:28","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-14 11:00","bscp_time_centrifuge":"2022-02-14 11:21"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-20 12:50","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-20 12:25","bscp_time_centrifuge":"2022-04-20 12:43"},"screening_site":"Rush"},"10273":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-13 13:00","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-13 12:34","bscp_time_centrifuge":"2022-01-13 12:52"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-17 10:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-17 09:43","bscp_time_centrifuge":"2022-02-17 10:02"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-11 11:13","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-11 10:44","bscp_time_centrifuge":"2022-05-11 11:04"},"screening_site":"Rush"},"10268":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-01-14 11:34","bscp_comments":"Centrifuging not completed within 30 min of collection.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-01-14 10:51","bscp_time_centrifuge":"2022-01-14 11:27"},"screening_site":"Rush"},"10271":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-18 08:44","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-18 08:16","bscp_time_centrifuge":"2022-01-18 08:35"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-28 09:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-28 09:14","bscp_time_centrifuge":"2022-02-28 09:34"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-10 08:44","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-10 08:17","bscp_time_centrifuge":"2022-05-10 08:36"},"screening_site":"Rush"},"10272":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2022-01-18 11:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-18 10:54","bscp_time_centrifuge":"2022-01-18 11:15"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-22 10:56","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-22 10:21","bscp_time_centrifuge":"2022-03-22 10:45"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-13 09:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-13 09:25","bscp_time_centrifuge":"2022-05-13 09:44"},"screening_site":"Rush"},"10269":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-21 11:52","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-21 11:27","bscp_time_centrifuge":"2022-01-21 11:46"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-17 09:24","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 08:58","bscp_time_centrifuge":"2022-03-17 09:19"},"screening_site":"Rush"},"10274":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-01-25 12:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-25 11:49","bscp_time_centrifuge":"2022-01-25 12:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-03-10 13:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-10 12:32","bscp_time_centrifuge":"2022-03-10 12:51"},"3-Mo Post-Op":{"bscp_comments":"Technical issue with tubes.","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10249":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-01-26 09:53","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-26 09:26","bscp_time_centrifuge":"2022-01-26 09:47"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-11 10:29","bscp_comments":"Smaller needle used, hand draw","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-11 09:49","bscp_time_centrifuge":"2022-03-11 10:19"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-25 10:49","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-25 10:14","bscp_time_centrifuge":"2022-04-25 10:38"},"screening_site":"Rush"},"10241":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-31 10:06","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-31 09:41","bscp_time_centrifuge":"2022-01-31 09:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-10 11:41","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-10 11:13","bscp_time_centrifuge":"2022-03-10 11:32"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-02 11:54","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-02 11:27","bscp_time_centrifuge":"2022-06-02 11:44"},"screening_site":"Rush"},"10275":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-02 10:21","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-02 09:47","bscp_time_centrifuge":"2022-02-02 10:11"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-17 12:13","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 11:46","bscp_time_centrifuge":"2022-03-17 12:08"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-10 13:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-10 12:32","bscp_time_centrifuge":"2022-05-10 12:50"},"screening_site":"Rush"},"10280":{"Baseline Visit":{"bscp_aliq_cnt":"1","bscp_aliquot_freezer_time":"2022-02-03 15:13","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-03 14:49","bscp_time_centrifuge":"2022-02-03 15:09"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-13 11:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-13 10:52","bscp_time_centrifuge":"2022-05-13 11:12"},"6-Wks Post-Op":{"bscp_comments":"Patient was stuck twice and had issues with the tubes both times. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10135":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-31 12:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-31 12:06","bscp_time_centrifuge":"2022-01-31 12:28"},"3-Mo Post-Op":{"bscp_comments":"No visit occurred ","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10279":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-07 11:27","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-07 10:54","bscp_time_centrifuge":"2022-02-07 11:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-10 15:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-10 15:16","bscp_time_centrifuge":"2022-03-10 15:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-27 12:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-27 11:38","bscp_time_centrifuge":"2022-05-27 12:05"},"screening_site":"Rush"},"10281":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-10 10:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-10 10:04","bscp_time_centrifuge":"2022-02-10 10:25"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-29 08:02","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-29 07:40","bscp_time_centrifuge":"2022-03-29 07:57"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-23 08:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-23 08:03","bscp_time_centrifuge":"2022-05-23 08:30"},"screening_site":"Rush"},"10057":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2022-02-11 07:14","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-11 06:50","bscp_time_centrifuge":"2022-02-11 07:09"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-02 11:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-02 10:53","bscp_time_centrifuge":"2022-03-02 11:12"},"3-Mo Post-Op":{"bscp_comments":"Vacuum not working","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10276":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-02-11 08:03","bscp_comments":"Pt had both arms drawn from w/in 24 hrs; did not attempt blood draw on day of baseline. Unable to scan Pax tube, lavender, plasma aliquot due to horizontal nature of label.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-11 07:33","bscp_time_centrifuge":"2022-02-11 07:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-24 11:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-24 10:45","bscp_time_centrifuge":"2022-03-24 11:02"},"3-Mo Post-Op":{"bscp_comments":"Blood left in centrifuge and at room temperature too long. Thrown in biohazard. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10277":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-02-11 09:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-11 09:24","bscp_time_centrifuge":"2022-02-11 09:44"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-14 11:52","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-14 11:29","bscp_time_centrifuge":"2022-03-14 11:46"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-05-23 11:32","bscp_buffycoat_na":"1","bscp_comments":"Only obtained paxgene.","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_time_blood_draw":"2022-05-23 11:12"},"screening_site":"Rush"},"10284":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-15 09:56","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 09:29","bscp_time_centrifuge":"2022-02-15 09:49"},"6-Wks Post-Op":{"bscp_comments":"Unable to contact participant to come in for blood draw or complete surveys.","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10285":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-02-15 12:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 11:42","bscp_time_centrifuge":"2022-02-15 11:59"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-19 11:42","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-19 11:18","bscp_time_centrifuge":"2022-04-19 11:37"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-30 13:48","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-30 13:26","bscp_time_centrifuge":"2022-06-30 13:40"},"screening_site":"Northshore"},"10283":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-15 12:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 12:20","bscp_time_centrifuge":"2022-02-15 12:37"},"screening_site":"Rush"},"10289":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-15 17:16","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 16:42","bscp_time_centrifuge":"2022-02-15 17:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-25 12:35","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-25 12:10","bscp_time_centrifuge":"2022-04-25 12:26"},"3-Mo Post-Op":{"bscp_comments":"Pt did not come in for 3 mos visit due to another necessary procedure on leg","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10288":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-17 13:18","bscp_comments":"Phlebotomy could not draw blood for PAXGene tube. Less the 1mL is in the tube.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-02-17 12:55","bscp_time_centrifuge":"2022-02-17 13:14"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-04-25 10:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-25 10:30","bscp_time_centrifuge":"2022-04-25 10:46"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-20 10:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-20 10:03","bscp_time_centrifuge":"2022-06-20 10:20"},"screening_site":"Northshore"},"10267":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-02-18 10:02","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-18 09:40","bscp_time_centrifuge":"2022-02-18 09:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-25 10:53","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-25 10:20","bscp_time_centrifuge":"2022-05-25 10:42"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-08-15 12:38","bscp_buffycoat_na":"1","bscp_comments":"Patient moved and needle came out. Unable to get purple tube because patient needed to get to the MRI.","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-15 12:30"},"screening_site":"Rush"},"10244":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-22 14:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-22 13:26","bscp_time_centrifuge":"2022-02-22 13:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-02 15:44","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 15:21","bscp_time_centrifuge":"2022-05-02 15:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-07-01 14:30","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-01 14:10","bscp_time_centrifuge":"2022-07-01 14:34"},"screening_site":"UChicago"},"10293":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-23 09:06","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-23 08:47","bscp_time_centrifuge":"2022-02-23 09:02"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-02 08:46","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 08:26","bscp_time_centrifuge":"2022-05-02 08:42"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-22 09:25","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-22 09:00","bscp_time_centrifuge":"2022-06-22 09:15"},"screening_site":"Northshore"},"10294":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-23 13:42","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-23 13:23","bscp_time_centrifuge":"2022-02-23 13:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-04 14:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-04 14:24","bscp_time_centrifuge":"2022-05-04 14:41"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-22 13:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-22 13:32","bscp_time_centrifuge":"2022-06-22 13:45"},"screening_site":"Northshore"},"10201":{"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_comments":"Freezer time not recorded. Was placed in freezer after processing blood into aliquots. but time was not recorded. ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-02-23 11:32","bscp_time_centrifuge":"2022-02-23 11:58"},"Baseline Visit":{"bscp_comments":"No venous access in arms, subject declined hand stick","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10258":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-02-24 12:05","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-24 11:49","bscp_time_centrifuge":"2022-02-24 12:01"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-26 12:37","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-26 12:13","bscp_time_centrifuge":"2022-04-26 12:33"},"screening_site":"Northshore"},"10296":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-25 09:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-25 08:52","bscp_time_centrifuge":"2022-02-25 09:13"},"6-Wks Post-Op":{"bscp_comments":"Surgery has been canceled. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10282":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-25 12:22","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-25 11:53","bscp_time_centrifuge":"2022-02-25 12:14"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-05 12:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-05 11:52","bscp_time_centrifuge":"2022-04-05 12:13"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-28 10:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-28 10:19","bscp_time_centrifuge":"2022-06-28 10:40"},"screening_site":"Rush"},"10287":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-28 08:47","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-28 08:21","bscp_time_centrifuge":"2022-02-28 08:40"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-24 11:28","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-24 10:42","bscp_time_centrifuge":"2022-03-24 11:02"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-15 10:25","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-15 09:54","bscp_time_centrifuge":"2022-06-15 10:18"},"screening_site":"Rush"},"10303":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-28 09:09","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-28 08:51","bscp_time_centrifuge":"2022-02-28 09:06"},"6-Wks Post-Op":{"bscp_comments":"Patient has become unreachable - did not come in for a visit","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10301":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-28 14:19","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-28 13:50","bscp_time_centrifuge":"2022-02-28 14:07"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-04 13:52","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-04 13:24","bscp_time_centrifuge":"2022-04-04 13:48"},"screening_site":"Rush"},"10297":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-03-01 08:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-01 08:30","bscp_time_centrifuge":"2022-03-01 08:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-03 09:32","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-03 09:15","bscp_time_centrifuge":"2022-05-03 09:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-06-28 12:41","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-28 12:23","bscp_time_centrifuge":"2022-06-28 12:37"},"screening_site":"Northshore"},"10292":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-01 11:58","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-01 11:19","bscp_time_centrifuge":"2022-03-01 11:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-02 10:51","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 10:28","bscp_time_centrifuge":"2022-05-02 10:46"},"screening_site":"Rush"},"10298":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-03-07 11:56","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-07 11:37","bscp_time_centrifuge":"2022-03-07 11:52"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-02 10:29","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 10:11","bscp_time_centrifuge":"2022-05-02 10:26"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-27 11:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-27 11:11","bscp_time_centrifuge":"2022-06-27 11:29"},"screening_site":"Northshore"},"10299":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-08 14:19","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-08 13:52","bscp_time_centrifuge":"2022-03-08 14:10"},"6-Wks Post-Op":{"bscp_aliquot_freezer_time":"2022-04-04 10:35","bscp_buffycoat_na":"1","bscp_comments":"Unable to collect lavender,","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-04 10:18"},"screening_site":"Rush"},"10295":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-03-09 10:20","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-09 09:52","bscp_time_centrifuge":"2022-03-09 10:13"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-31 10:23","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-31 09:57","bscp_time_centrifuge":"2022-03-31 10:17"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-05 13:19","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-05 12:45","bscp_time_centrifuge":"2022-07-05 13:08"},"screening_site":"Rush"},"10310":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-10 12:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-10 12:08","bscp_time_centrifuge":"2022-03-10 12:30"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-04-26 16:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-26 15:52","bscp_time_centrifuge":"2022-04-26 16:10"},"3-Mo Post-Op":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2022-06-30 10:10","bscp_comments":"Subject went to phlebotomy without research staff. Only purple top was drawn. No PAX. No other research staff was present to process blood until the subject visit was completed. ","bscp_deg_of_hemolysis":".25","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-06-30 07:55","bscp_time_centrifuge":"2022-06-30 10:00"},"screening_site":"UChicago"},"10305":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-11 12:26","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-11 12:04","bscp_time_centrifuge":"2022-03-11 12:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-11 10:29","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-11 10:08","bscp_time_centrifuge":"2022-05-11 10:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-30 12:08","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-30 11:47","bscp_time_centrifuge":"2022-06-30 12:01"},"screening_site":"Northshore"},"10311":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-14 12:59","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-14 12:30","bscp_time_centrifuge":"2022-03-14 12:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-20 12:12","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-20 11:35","bscp_time_centrifuge":"2022-04-20 12:05"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-20 11:59","bscp_comments":"Manually entered values due to laptop not being charged. ","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-20 11:23","bscp_time_centrifuge":"2022-06-20 11:47"},"screening_site":"Rush"},"10312":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-16 12:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-16 12:30","bscp_time_centrifuge":"2022-03-16 12:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 11:53","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-24 11:34","bscp_time_centrifuge":"2022-05-24 11:49"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 12:11","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 11:51","bscp_time_centrifuge":"2022-07-06 12:06"},"screening_site":"Northshore"},"10302":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-03-16 12:57","bscp_comments":"Unable to collect baseline visit after 1 stick. Collected day of sx","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-16 12:34","bscp_time_centrifuge":"2022-03-16 12:52"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-06 09:56","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-06 09:31","bscp_time_centrifuge":"2022-04-06 09:49"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-27 11:36","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-27 11:09","bscp_time_centrifuge":"2022-06-27 11:30"},"screening_site":"Rush"},"10315":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-16 11:42","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-16 11:01","bscp_time_centrifuge":"2022-03-16 11:40"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-05 11:41","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-05 11:12","bscp_time_centrifuge":"2022-05-05 11:37"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-14 09:28","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-14 09:02","bscp_time_centrifuge":"2022-06-14 09:20"},"screening_site":"UChicago"},"10314":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-03-18 13:23","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-18 13:04","bscp_time_centrifuge":"2022-03-18 13:19"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-05-25 15:14","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-25 14:56","bscp_time_centrifuge":"2022-05-25 15:10"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-05 12:15","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-05 11:55","bscp_time_centrifuge":"2022-07-05 12:08"},"screening_site":"Northshore"},"10309":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-21 14:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-21 13:52","bscp_time_centrifuge":"2022-03-21 14:22"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-07-11 13:41","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 13:02","bscp_time_centrifuge":"2022-07-11 13:35"},"6-Wks Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"Could not get order signed for blood draw in time ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10313":{"Baseline Visit":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2022-03-23 08:05","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-23 07:42","bscp_time_centrifuge":"2022-03-23 08:00"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-14 10:58","bscp_deg_of_hemolysis":".5","bscp_time_blood_draw":"2022-04-14 10:31","bscp_time_centrifuge":"2022-04-14 10:50"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-24 11:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-24 10:54","bscp_time_centrifuge":"2022-06-24 11:18"},"screening_site":"Rush"},"10319":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-03-24 09:57","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-24 09:38","bscp_time_centrifuge":"2022-03-24 09:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-26 13:39","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-26 13:20","bscp_time_centrifuge":"2022-05-26 13:34"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-07-11 09:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 08:42","bscp_time_centrifuge":"2022-07-11 08:57"},"screening_site":"Northshore"},"10321":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-24 10:39","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-24 09:58","bscp_time_centrifuge":"2022-03-24 10:33"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-18 16:38","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-18 16:03","bscp_time_centrifuge":"2022-07-18 16:32"},"6-Wks Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"Patient showed up a day and the research team could not get orders signed for a blood draw during this time. ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10318":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-25 09:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-25 09:11","bscp_time_centrifuge":"2022-03-25 09:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 10:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-24 10:32","bscp_time_centrifuge":"2022-05-24 10:45"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-12 10:11","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-12 09:52","bscp_time_centrifuge":"2022-07-12 10:07"},"screening_site":"Northshore"},"10323":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-25 11:24","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-25 10:58","bscp_time_centrifuge":"2022-03-25 11:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-20 09:46","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-20 09:01","bscp_time_centrifuge":"2022-05-20 09:40"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-07-20 10:03","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-20 09:16","bscp_time_centrifuge":"2022-07-20 09:58"},"screening_site":"UChicago"},"10325":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-29 11:02","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-29 10:27","bscp_time_centrifuge":"2022-03-29 11:00"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 13:08","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-24 12:39","bscp_time_centrifuge":"2022-05-24 13:03"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-21 16:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-21 16:09","bscp_time_centrifuge":"2022-07-21 16:33"},"screening_site":"UChicago"},"10322":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-30 09:36","bscp_comments":"Pt confirmed that her surgery was being cancelled d/t anemia and that she has no idea when it will be rescheduled. Based on this information and the fact that the protocol states that baseline testing needs to be done between 1 day -6 weeks prior to surgery, the decision was made to have the subject reschedule her baseline tests. \r\nWhen this decision was made by Sarah Rabbitt and Laura Frey, the subject had already her blood drawn for the study and it was sent to the lab for processing. Until a determination has been made as to whether this participant will continue in A2CPS, this participant's frozen samples will be stored separately from others planed to be shipped. ","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-30 09:11","bscp_time_centrifuge":"2022-03-30 09:28"},"6-Wks Post-Op":{"bscp_comments":"Surgery was canceled. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Northshore"},"10326":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-30 14:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-30 14:18","bscp_time_centrifuge":"2022-03-30 14:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-04 11:26","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-04 10:59","bscp_time_centrifuge":"2022-05-04 11:16"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-20 14:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-20 14:01","bscp_time_centrifuge":"2022-07-20 14:30"},"screening_site":"Rush"},"10328":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-04 09:42","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-04 09:22","bscp_time_centrifuge":"2022-04-04 09:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-06-06 12:07","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-06 11:47","bscp_time_centrifuge":"2022-06-06 12:04"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-02 09:17","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-02 08:56","bscp_time_centrifuge":"2022-08-02 09:13"},"screening_site":"Northshore"},"10330":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-04 12:03","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-04 11:41","bscp_time_centrifuge":"2022-04-04 11:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-02 09:58","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-02 09:39","bscp_time_centrifuge":"2022-06-02 09:55"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-07-21 11:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-21 11:35","bscp_time_centrifuge":"2022-07-21 11:49"},"screening_site":"Northshore"},"10331":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-04-04 16:23","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-04 15:59","bscp_time_centrifuge":"2022-04-04 16:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-16 15:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-16 15:05","bscp_time_centrifuge":"2022-05-16 15:14"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-26 15:41","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-26 15:17","bscp_time_centrifuge":"2022-07-26 15:38"},"screening_site":"UChicago"},"10333":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-04-06 11:15","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-06 10:51","bscp_time_centrifuge":"2022-04-06 11:11"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-16 08:46","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-16 08:17","bscp_time_centrifuge":"2022-06-16 08:37"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-20 12:09","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-20 11:46","bscp_time_centrifuge":"2022-07-20 12:02"},"screening_site":"Northshore"},"10334":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-07 12:10","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-07 11:50","bscp_time_centrifuge":"2022-04-07 12:06"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 11:01","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-07 10:40","bscp_time_centrifuge":"2022-06-07 10:54"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-02 12:04","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-02 11:40","bscp_time_centrifuge":"2022-08-02 11:54"},"screening_site":"Northshore"},"10320":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-07 12:40","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-07 12:12","bscp_time_centrifuge":"2022-04-07 12:30"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-26 11:14","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-26 10:49","bscp_time_centrifuge":"2022-05-26 11:09"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-07-21 13:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-21 12:44","bscp_time_centrifuge":"2022-07-21 13:04"},"screening_site":"Rush"},"10341":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-08 10:52","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-08 10:14","bscp_time_centrifuge":"2022-04-08 10:50"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-16 09:37","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-16 09:07","bscp_time_centrifuge":"2022-06-16 09:32"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-08 08:56","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-08 08:24","bscp_time_centrifuge":"2022-08-08 08:48"},"screening_site":"UChicago"},"10340":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-11 09:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-11 08:56","bscp_time_centrifuge":"2022-04-11 09:11"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-08 11:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-08 10:58","bscp_time_centrifuge":"2022-06-08 11:14"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-08 12:18","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-08 11:51","bscp_time_centrifuge":"2022-08-08 12:10"},"screening_site":"Northshore"},"10342":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-04-12 10:24","bscp_comments":"Patient was a hard stick. ","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-12 10:02","bscp_time_centrifuge":"2022-04-12 10:21"},"screening_site":"Northshore"},"10329":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-13 13:48","bscp_comments":"Subject went directly to phlebotomy lab without checking in, lab drew lavender top tube in correct volume out of hospital stock but did not have PaxGene. After blood draw subject checked in with research staff but tubes had been send to main path lab which delayed retrieval by study team. Lavender top tube processed late and no PAXgene tube drawn.","bscp_deg_of_hemolysis":"0","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-04-12 11:59","bscp_time_centrifuge":"2022-04-12 13:40"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-06 11:27","bscp_comments":"Hand stick due to poor access on arm","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-06 10:32","bscp_time_centrifuge":"2022-06-06 11:20"},"screening_site":"UChicago"},"10327":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-04-13 10:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-13 10:15","bscp_time_centrifuge":"2022-04-13 10:43"},"6-Wks Post-Op":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2022-06-06 12:01","bscp_comments":"Hand stick due to limited access on arm. Vein blew and only 3 cryovials of plasma collected.","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-06 11:24","bscp_time_centrifuge":"2022-06-06 11:57"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-19 10:55","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-19 10:29","bscp_time_centrifuge":"2022-07-19 10:50"},"screening_site":"UChicago"},"10332":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-13 11:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-13 11:19","bscp_time_centrifuge":"2022-04-13 11:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-08 10:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-08 10:05","bscp_time_centrifuge":"2022-06-08 10:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-08-10 11:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-10 11:15","bscp_time_centrifuge":"2022-08-10 11:46"},"screening_site":"UChicago"},"10337":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-15 07:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-15 07:15","bscp_time_centrifuge":"2022-04-15 07:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-06 12:18","bscp_comments":"UChicago kit 141\r\nright hand","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-06 11:49","bscp_time_centrifuge":"2022-06-06 12:13"},"screening_site":"Rush"},"10336":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-15 08:00","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-15 07:39","bscp_time_centrifuge":"2022-04-15 07:56"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-25 11:00","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-25 10:29","bscp_time_centrifuge":"2022-05-25 10:53"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-08-17 10:03","bscp_comments":"Lavender tube not obtained, technical problems with the tubes. We were only able to obtain PAX gene. ","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-17 09:53"},"screening_site":"Rush"},"10345":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-18 10:36","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-18 10:14","bscp_time_centrifuge":"2022-04-18 10:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-21 10:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-21 10:04","bscp_time_centrifuge":"2022-06-21 10:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-03 11:04","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-03 10:41","bscp_time_centrifuge":"2022-08-03 10:56"},"screening_site":"Northshore"},"10317":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-18 12:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-18 11:58","bscp_time_centrifuge":"2022-04-18 12:16"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-22 11:53","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-22 11:19","bscp_time_centrifuge":"2022-06-22 11:44"},"Baseline Visit":{"bscp_comments":"Pt requested to stop after one stick. Fears needles. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10344":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-19 13:22","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-19 12:51","bscp_time_centrifuge":"2022-04-19 13:10"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-09 11:06","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-09 10:42","bscp_time_centrifuge":"2022-06-09 11:00"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-02 12:08","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-02 11:45","bscp_time_centrifuge":"2022-08-02 12:04"},"screening_site":"Rush"},"10350":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-20 10:02","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-20 09:22","bscp_time_centrifuge":"2022-04-20 09:56"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-13 10:22","bscp_time_centrifuge":"2022-06-13 10:54"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-15 14:27","bscp_comments":"Spin started late due to the centrifuge being occupied ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-08-15 13:21","bscp_time_centrifuge":"2022-08-15 13:56"},"screening_site":"UChicago"},"10335":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-15 14:47","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-15 14:08","bscp_time_centrifuge":"2022-04-15 14:42"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-08 12:08","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-08 11:32","bscp_time_centrifuge":"2022-08-08 11:48"},"screening_site":"UChicago"},"10352":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-21 11:43","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-21 11:21","bscp_time_centrifuge":"2022-04-21 11:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-21 11:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-21 11:07","bscp_time_centrifuge":"2022-06-21 11:23"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-01 09:10","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-01 08:51","bscp_time_centrifuge":"2022-08-01 09:06"},"screening_site":"Northshore"},"10338":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-21 11:46","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-21 11:11","bscp_time_centrifuge":"2022-04-21 11:42"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-17 10:58","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-17 10:28","bscp_time_centrifuge":"2022-06-17 10:56"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-05 11:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-05 10:52","bscp_time_centrifuge":"2022-08-05 11:15"},"screening_site":"UChicago"},"10349":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-21 17:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-21 16:30","bscp_time_centrifuge":"2022-04-21 16:48"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-31 15:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-31 14:23","bscp_time_centrifuge":"2022-05-31 14:52"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-16 12:56","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-16 12:25","bscp_time_centrifuge":"2022-08-16 12:46"},"screening_site":"Rush"},"10339":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-22 08:38","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-22 08:05","bscp_time_centrifuge":"2022-04-22 08:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-04 16:04","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-04 15:34","bscp_time_centrifuge":"2022-05-04 15:55"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-03 14:14","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-03 13:50","bscp_time_centrifuge":"2022-08-03 14:09"},"screening_site":"Rush"},"10347":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-25 12:14","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-25 11:46","bscp_time_centrifuge":"2022-04-25 12:05"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-14 15:41","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-14 15:04","bscp_time_centrifuge":"2022-06-14 15:31"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-15 11:54","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-15 11:26","bscp_time_centrifuge":"2022-08-15 11:45"},"screening_site":"Rush"},"10353":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-27 10:30","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-27 10:13","bscp_time_centrifuge":"2022-04-27 10:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-21 11:44","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-21 11:24","bscp_time_centrifuge":"2022-06-21 11:40"},"screening_site":"Northshore"},"10351":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-04-28 12:48","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-28 12:29","bscp_time_centrifuge":"2022-04-28 12:45"},"screening_site":"Northshore"},"10354":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-04-28 16:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-28 16:03","bscp_time_centrifuge":"2022-04-28 16:41"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-12 11:07","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-12 10:37","bscp_time_centrifuge":"2022-07-12 11:02"},"screening_site":"UChicago"},"10324":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-04-29 12:54","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-29 12:25","bscp_time_centrifuge":"2022-04-29 12:46"},"6-Wks Post-Op":{"bscp_comments":"Unable to get blood with 2 sticks. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Stuck patient twice, unable to get blooddraw.","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10362":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-02 11:11","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 10:46","bscp_time_centrifuge":"2022-05-02 11:03"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-23 10:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-23 09:35","bscp_time_centrifuge":"2022-05-23 09:55"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-04 11:44","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-04 11:13","bscp_time_centrifuge":"2022-08-04 11:37"},"screening_site":"Rush"},"10307":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-02 11:52","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 11:23","bscp_time_centrifuge":"2022-05-02 11:42"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-07 14:07","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-07 13:34","bscp_time_centrifuge":"2022-07-07 14:00"},"Baseline Visit":{"bscp_comments":"No one able to draw blood was available during this visit ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10348":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-02 14:01","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 13:42","bscp_time_centrifuge":"2022-05-02 13:57"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-20 13:51","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-20 13:28","bscp_time_centrifuge":"2022-06-20 13:48"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-04 11:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_centrifuge":"2022-08-04 11:49"},"screening_site":"Northshore"},"10357":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-03 10:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-03 10:15","bscp_time_centrifuge":"2022-05-03 10:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-22 14:27","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-22 14:03","bscp_time_centrifuge":"2022-06-22 14:22"},"screening_site":"Northshore"},"10308":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-04 10:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-04 10:05","bscp_time_centrifuge":"2022-05-04 10:25"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-29 09:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-29 09:04","bscp_time_centrifuge":"2022-06-29 09:45"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-12 09:54","bscp_comments":"Blood was spun 32 minutes after the draw due to the centrifuge being occupied ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-08-12 09:05","bscp_time_centrifuge":"2022-08-12 09:47"},"screening_site":"UChicago"},"10363":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-05-05 07:08","bscp_comments":"Kit includes wrong BC aliquot tube. BC aliquoted into provided vial, in this case the same type as the plasma aliquots.","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-05 06:39","bscp_time_centrifuge":"2022-05-05 07:03"},"screening_site":"UChicago"},"10361":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-05 09:57","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-05 09:30","bscp_time_centrifuge":"2022-05-05 09:48"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-03 09:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-03 09:06","bscp_time_centrifuge":"2022-06-03 09:24"},"3-Mo Post-Op":{"bscp_comments":"Attempted to stick participant twice and could not obtain blood sample.","bscp_lav1_not_obt":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10360":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-05 12:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-05 12:28","bscp_time_centrifuge":"2022-05-05 12:49"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-08-02 12:04","bscp_comments":"One cryovial was 7.5/10 full. Marked with blue dot. Buffy coat was also \"messy\" from this sample and tech collected what they could. ","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-02 11:23","bscp_time_centrifuge":"2022-08-02 11:58"},"screening_site":"UChicago"},"10368":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-05 14:59","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-05 14:35","bscp_time_centrifuge":"2022-05-05 14:54"},"screening_site":"Rush"},"10346":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-06 08:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-06 08:19","bscp_time_centrifuge":"2022-05-06 08:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-13 12:56","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-13 12:21","bscp_time_centrifuge":"2022-06-13 12:46"},"3-Mo Post-Op":{"bscp_comments":"Patient was 45 minutes late for her appointment. We needed to get her to the MRI and were unable to get the blood sample seeing as the patient had to get to work right after MRI. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10366":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-06 09:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-06 09:13","bscp_time_centrifuge":"2022-05-06 09:29"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 11:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 11:13","bscp_time_centrifuge":"2022-07-06 11:29"},"screening_site":"Northshore"},"10367":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-09 11:13","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-09 10:44","bscp_time_centrifuge":"2022-05-09 11:03"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-01 14:12","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-01 13:46","bscp_time_centrifuge":"2022-06-01 14:07"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-18 10:52","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-18 10:25","bscp_time_centrifuge":"2022-08-18 10:44"},"screening_site":"Rush"},"10364":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-10 08:55","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-10 08:37","bscp_time_centrifuge":"2022-05-10 08:51"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-05 13:33","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-05 13:13","bscp_time_centrifuge":"2022-07-05 13:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-24 14:23","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-24 14:01","bscp_time_centrifuge":"2022-08-24 14:16"},"screening_site":"Northshore"},"10343":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-10 11:06","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-10 10:26","bscp_time_centrifuge":"2022-05-10 10:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-29 12:10","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-29 11:45","bscp_time_centrifuge":"2022-06-29 12:04"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-24 13:41","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-24 13:14","bscp_time_centrifuge":"2022-08-24 13:30"},"screening_site":"Rush"},"10375":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-11 12:03","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-11 11:44","bscp_time_centrifuge":"2022-05-11 11:59"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-05 11:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-05 11:17","bscp_time_centrifuge":"2022-07-05 11:32"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 13:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-29 13:08","bscp_time_centrifuge":"2022-08-29 13:27"},"screening_site":"Northshore"},"10369":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-11 14:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-11 13:45","bscp_time_centrifuge":"2022-05-11 14:10"},"screening_site":"UChicago"},"10376":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-12 12:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-12 12:09","bscp_time_centrifuge":"2022-05-12 12:24"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-14 14:43","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-14 14:17","bscp_time_centrifuge":"2022-07-14 14:31"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-24 10:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-24 10:23","bscp_time_centrifuge":"2022-08-24 10:40"},"screening_site":"Northshore"},"10371":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-13 13:32","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-13 13:04","bscp_time_centrifuge":"2022-05-13 13:14"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-27 15:36","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-27 14:45","bscp_time_centrifuge":"2022-06-27 15:29"},"screening_site":"UChicago"},"10379":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-05-16 11:59","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-16 11:40","bscp_time_centrifuge":"2022-05-16 11:55"},"screening_site":"Northshore"},"10358":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-17 12:10","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-17 11:34","bscp_time_centrifuge":"2022-05-17 12:00"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-07 16:29","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-07 15:56","bscp_time_centrifuge":"2022-07-07 16:21"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-31 09:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-31 09:03","bscp_time_centrifuge":"2022-08-31 09:20"},"screening_site":"Rush"},"10355":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-18 13:52","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-18 13:27","bscp_time_centrifuge":"2022-05-18 13:43"},"3-Mo Post-Op":{"bscp_aliquot_freezer_time":"2022-08-26 12:09","bscp_comments":"Unable to get sufficient blood for purple tube, tube related issues. ","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-26 11:57"},"6-Wks Post-Op":{"bscp_comments":"RA unable to get blood after sticks 6-13.","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10382":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-19 11:51","bscp_comments":"No blood obtained in gene tube, phlebotomist accidentally threw gene tube away. No tube to scan in.","bscp_deg_of_hemolysis":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2022-05-19 11:28","bscp_time_centrifuge":"2022-05-19 11:47"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-13 13:50","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-13 13:28","bscp_time_centrifuge":"2022-07-13 13:45"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-31 13:49","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-31 13:24","bscp_time_centrifuge":"2022-08-31 13:40"},"screening_site":"Northshore"},"10384":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-19 10:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-19 09:53","bscp_time_centrifuge":"2022-05-19 10:09"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-09 15:18","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-09 14:48","bscp_time_centrifuge":"2022-06-09 15:09"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-22 11:09","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-22 10:48","bscp_time_centrifuge":"2022-08-22 11:06"},"screening_site":"Rush"},"10378":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 12:54","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-24 12:18","bscp_time_centrifuge":"2022-05-24 12:41"},"screening_site":"UChicago"},"10385":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 13:24","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-24 13:06","bscp_time_centrifuge":"2022-05-24 13:20"},"screening_site":"Northshore"},"10394":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-31 12:03","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-31 11:44","bscp_time_centrifuge":"2022-05-31 11:59"},"screening_site":"Northshore"},"10391":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-02 08:37","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-02 08:09","bscp_time_centrifuge":"2022-06-02 08:29"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-27 10:13","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-27 09:46","bscp_time_centrifuge":"2022-06-27 10:06"},"screening_site":"Rush"},"10390":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-02 10:28","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-02 10:00","bscp_time_centrifuge":"2022-06-02 10:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-05 10:40","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-05 10:18","bscp_time_centrifuge":"2022-08-05 10:36"},"screening_site":"Rush"},"10380":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-02 11:55","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-02 11:37","bscp_time_centrifuge":"2022-06-02 11:51"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-08-02 10:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-02 10:08","bscp_time_centrifuge":"2022-08-02 10:21"},"screening_site":"Northshore"},"10386":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-06 13:41","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-06 13:19","bscp_time_centrifuge":"2022-06-06 13:36"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-04 11:06","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-04 10:42","bscp_time_centrifuge":"2022-08-04 10:58"},"screening_site":"Northshore"},"10389":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 10:42","bscp_comments":"Sample very hemolyzed. Drawn in pre-op when IV placed.","bscp_deg_of_hemolysis":"4","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-07 10:05","bscp_time_centrifuge":"2022-06-07 10:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-25 15:23","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-25 14:33","bscp_time_centrifuge":"2022-07-25 15:11"},"screening_site":"UChicago"},"10387":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-07 11:46","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-07 11:26","bscp_time_centrifuge":"2022-06-07 11:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-16 10:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-16 10:34","bscp_time_centrifuge":"2022-08-16 10:50"},"screening_site":"Northshore"},"10370":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-08 12:16","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-08 11:29","bscp_time_centrifuge":"2022-06-08 12:05"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 11:48","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-08-29 11:23","bscp_time_centrifuge":"2022-08-29 11:42"},"screening_site":"UChicago"},"10383":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-09 12:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-09 12:01","bscp_time_centrifuge":"2022-06-09 12:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-12 11:10","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-12 10:46","bscp_time_centrifuge":"2022-08-12 11:01"},"screening_site":"Northshore"},"10396":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-10 09:32","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-10 08:59","bscp_time_centrifuge":"2022-06-10 09:17"},"6-Wks Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-07-11 09:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 08:33","bscp_time_centrifuge":"2022-07-11 08:55"},"screening_site":"Rush"},"10372":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-06-10 11:23","bscp_comments":"Tech broke barrier spun again at 11:03 AM","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-10 10:20","bscp_time_centrifuge":"2022-06-10 11:18"},"screening_site":"UChicago"},"10399":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-10 11:07","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-10 10:36","bscp_time_centrifuge":"2022-06-10 13:52"},"screening_site":"UChicago"},"10400":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-13 09:21","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-13 08:56","bscp_time_centrifuge":"2022-06-13 09:11"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-08-22 10:02","bscp_comments":"Participant is a hard stick. ","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-22 09:41","bscp_time_centrifuge":"2022-08-22 09:58"},"screening_site":"Northshore"},"10395":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-13 09:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-13 09:20","bscp_time_centrifuge":"2022-06-13 09:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 12:41","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 12:13","bscp_time_centrifuge":"2022-07-06 12:31"},"screening_site":"Rush"},"10397":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-13 12:48","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-13 12:05","bscp_time_centrifuge":"2022-06-13 12:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-04 14:06","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-04 13:28","bscp_time_centrifuge":"2022-08-04 13:52"},"screening_site":"Rush"},"10402":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-15 13:51","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-15 13:22","bscp_time_centrifuge":"2022-06-15 13:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-23 11:31","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-23 11:00","bscp_time_centrifuge":"2022-08-23 11:24"},"screening_site":"Northshore"},"10401":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-16 09:07","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-16 08:35","bscp_time_centrifuge":"2022-06-16 08:59"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-15 10:45","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-15 10:22","bscp_time_centrifuge":"2022-08-15 10:41"},"screening_site":"Northshore"},"10398":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-06-17 07:07","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-17 06:40","bscp_time_centrifuge":"2022-06-17 06:56"},"6-Wks Post-Op":{"bscp_comments":"Unable to get blood sample after 2 sticks, patient did not want to attempt again. \r\n","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10403":{"Baseline Visit":{"bscp_aliq_cnt":"1","bscp_aliquot_freezer_time":"2022-06-21 13:18","bscp_comments":"Phlebotomist noticed that the subjects blood flow was poor and consulted on possible dehydration after the subject reported that they never drink water. Only tea. Subject was advised to drink water the night before all future blood draws to help blood flow. PAX was filled with as much blood as the phleb could draw but it was reported to not have been filled completely. Pax was stored in freezer. ","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-21 12:17","bscp_time_centrifuge":"2022-06-21 12:56"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 12:06","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-29 12:15","bscp_time_centrifuge":"2022-08-29 11:38"},"screening_site":"UChicago"},"10408":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-21 12:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-21 11:33","bscp_time_centrifuge":"2022-06-21 11:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-02 08:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-02 08:28","bscp_time_centrifuge":"2022-08-02 08:47"},"screening_site":"Rush"},"10404":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-22 10:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-22 10:23","bscp_time_centrifuge":"2022-06-22 10:42"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-03 10:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-03 09:43","bscp_time_centrifuge":"2022-08-03 10:02"},"screening_site":"Rush"},"10405":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-23 09:44","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-23 09:21","bscp_time_centrifuge":"2022-06-23 09:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-08 09:44","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-08 09:18","bscp_time_centrifuge":"2022-08-08 09:35"},"screening_site":"Rush"},"10407":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-23 13:53","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-23 13:26","bscp_time_centrifuge":"2022-06-23 13:44"},"6-Wks Post-Op":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-08-17 12:10","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-17 11:47","bscp_time_centrifuge":"2022-08-17 12:04"},"screening_site":"Northshore"},"10406":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-27 09:22","bscp_comments":"Lost suction for PAXgene tube, unable to obtain ","bscp_deg_of_hemolysis":"0","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2022-06-27 08:53","bscp_time_centrifuge":"2022-06-27 09:15"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-24 14:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-24 14:18","bscp_time_centrifuge":"2022-08-24 14:36"},"screening_site":"Northshore"},"10356":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-06-29 11:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-29 10:40","bscp_time_centrifuge":"2022-06-29 10:58"},"screening_site":"UChicago"},"10415":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-29 12:09","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-29 11:49","bscp_time_centrifuge":"2022-06-29 12:05"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-31 10:34","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-31 10:11","bscp_time_centrifuge":"2022-08-31 10:27"},"screening_site":"Northshore"},"10417":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2022-07-01 07:23","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-01 06:58","bscp_time_centrifuge":"2022-07-01 07:15"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-16 12:10","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-16 11:37","bscp_time_centrifuge":"2022-08-16 11:55"},"screening_site":"Rush"},"10416":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 08:44","bscp_comments":"Orders to draw blood were not signed on the day of the visit. Subject agreed to have blood drawn next day during surgery pre-op. Caffeine/vaccine were not asked due to the nursing staff drawing the blood. Current medication was assed from the previous day during their baseline visit. ","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 08:15","bscp_time_centrifuge":"2022-07-06 08:37"},"screening_site":"UChicago"},"10411":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 11:53","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 11:24","bscp_time_centrifuge":"2022-07-06 11:48"},"screening_site":"UChicago"},"10420":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-07 08:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-07 08:22","bscp_time_centrifuge":"2022-07-07 08:38"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-27 11:56","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-27 11:26","bscp_time_centrifuge":"2022-07-27 11:49"},"screening_site":"Rush"},"10414":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-07 12:05","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-07 11:43","bscp_time_centrifuge":"2022-07-07 11:57"},"screening_site":"Northshore"},"10245":{"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-08 10:44","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-08 10:06","bscp_time_centrifuge":"2022-07-08 10:38"},"Baseline Visit":{"bscp_comments":"Patient declined blood draw. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"6-Wks Post-Op":{"bscp_comments":"Subject did not show up","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10392":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-11 13:22","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 12:19","bscp_time_centrifuge":"2022-07-11 12:43"},"screening_site":"UChicago"},"10426":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-12 13:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-12 13:07","bscp_time_centrifuge":"2022-07-12 13:24"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-06 15:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-06 14:27","bscp_time_centrifuge":"2022-09-06 14:51"},"screening_site":"UChicago"},"10427":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-07-13 10:04","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-13 09:46","bscp_time_centrifuge":"2022-07-13 09:59"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-06 13:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-06 13:11","bscp_time_centrifuge":"2022-09-06 13:31"},"screening_site":"Northshore"},"10428":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-07-14 10:26","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-14 10:05","bscp_time_centrifuge":"2022-07-14 10:24"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-09-01 10:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-01 10:08","bscp_time_centrifuge":"2022-09-01 10:24"},"screening_site":"Northshore"},"10421":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-14 10:38","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-14 10:15","bscp_time_centrifuge":"2022-07-14 10:33"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-25 14:05","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-25 13:39","bscp_time_centrifuge":"2022-08-25 14:00"},"screening_site":"Rush"},"10393":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-15 09:44","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-15 08:50","bscp_time_centrifuge":"2022-07-15 09:39"},"screening_site":"UChicago"},"10419":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-18 12:42","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-18 12:15","bscp_time_centrifuge":"2022-07-18 12:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-07 11:10","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-07 10:43","bscp_time_centrifuge":"2022-09-07 11:03"},"screening_site":"Northshore"},"10413":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-18 11:52","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-18 11:08","bscp_time_centrifuge":"2022-07-18 11:46"},"screening_site":"UChicago"},"10418":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-19 15:26","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-19 14:55","bscp_time_centrifuge":"2022-07-19 15:17"},"screening_site":"UChicago"},"10423":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-19 09:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-19 08:20","bscp_time_centrifuge":"2022-07-19 08:52"},"screening_site":"UChicago"},"10409":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-25 12:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-25 11:38","bscp_time_centrifuge":"2022-07-25 12:14"},"screening_site":"UChicago"},"10432":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-25 13:34","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-25 13:15","bscp_time_centrifuge":"2022-07-25 13:30"},"screening_site":"Northshore"},"10433":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-26 13:47","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-26 13:26","bscp_time_centrifuge":"2022-07-26 13:40"},"screening_site":"Northshore"},"10424":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-26 11:00","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-26 10:12","bscp_time_centrifuge":"2022-07-26 10:55"},"screening_site":"UChicago"},"10430":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-27 09:15","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-27 08:53","bscp_time_centrifuge":"2022-07-27 09:09"},"screening_site":"Northshore"},"10438":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-29 15:03","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-29 14:34","bscp_time_centrifuge":"2022-07-29 14:57"},"screening_site":"UChicago"},"10429":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-03 09:03","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-03 08:42","bscp_time_centrifuge":"2022-08-03 08:58"},"screening_site":"Northshore"},"10445":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-09 09:46","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-09 09:17","bscp_time_centrifuge":"2022-08-09 09:34"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-07 10:56","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-07 10:35","bscp_time_centrifuge":"2022-09-07 10:52"},"screening_site":"Rush"},"10444":{"Baseline Visit":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2022-08-09 12:54","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-09 12:25","bscp_time_centrifuge":"2022-08-09 12:43"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-06 12:52","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-06 12:14","bscp_time_centrifuge":"2022-09-06 12:36"},"screening_site":"Rush"},"10437":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-10 10:06","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-10 09:47","bscp_time_centrifuge":"2022-08-10 10:02"},"screening_site":"Northshore"},"10425":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-11 11:13","bscp_deg_of_hemolysis":".25","bscp_time_blood_draw":"2022-08-11 10:34","bscp_time_centrifuge":"2022-08-11 11:04"},"screening_site":"UChicago"},"10447":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-15 08:52","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-15 08:29","bscp_time_centrifuge":"2022-08-15 08:48"},"screening_site":"Rush"},"10436":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-16 10:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-16 10:18","bscp_time_centrifuge":"2022-08-16 10:37"},"screening_site":"UChicago"},"10442":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-23 12:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-23 11:30","bscp_time_centrifuge":"2022-08-23 12:02"},"screening_site":"UChicago"},"10451":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-25 12:06","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-25 11:28","bscp_time_centrifuge":"2022-08-25 11:54"},"screening_site":"Rush"},"10446":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-26 10:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-26 09:54","bscp_time_centrifuge":"2022-08-26 10:20"},"screening_site":"UChicago"},"10449":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 12:24","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-29 11:56","bscp_time_centrifuge":"2022-08-29 12:16"},"screening_site":"Rush"},"10458":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 14:54","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-29 14:27","bscp_time_centrifuge":"2022-08-29 14:42"},"screening_site":"Rush"},"10443":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 13:58","bscp_comments":"Completed 8/29/2022 during preop ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-29 13:25","bscp_time_centrifuge":"2022-08-29 13:53"},"screening_site":"UChicago"},"10452":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-30 11:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-30 10:51","bscp_time_centrifuge":"2022-08-30 11:08"},"screening_site":"Rush"},"10460":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-06 09:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-06 09:16","bscp_time_centrifuge":"2022-09-06 09:30"},"screening_site":"Northshore"},"10439":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-06 12:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-06 11:45","bscp_time_centrifuge":"2022-09-06 12:05"},"screening_site":"UChicago"},"10278":{"6-Wks Post-Op":{"bscp_aliquot_freezer_time":"2022-03-17 09:08","bscp_buffycoat_na":"1","bscp_comments":"Only retrieved PAXgene","bscp_lav1_not_obt":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 08:50"},"Baseline Visit":{"bscp_comments":"Unable to draw blood after several sticks. ","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Stuck patient twice and unable to get blood sample. Patient had to leave for work and unable to stick again. ","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10431":{"Baseline Visit":{"bscp_aliquot_freezer_time":"2022-07-28 11:56","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-28 11:38","bscp_time_centrifuge":"2022-07-28 11:51"},"screening_site":"Northshore"},"10434":{"Baseline Visit":{"bscp_aliquot_freezer_time":"2022-08-08 09:04","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-08 08:45","bscp_time_centrifuge":"2022-08-08 09:00"},"screening_site":"Northshore"},"10261":{"Baseline Visit":{"bscp_buffycoat_na":"1","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10377":{"Baseline Visit":{"bscp_buffycoat_na":"1","bscp_comments":"Subject is a hard stick, has required hand stick for all clinical blood draws recently. Subject declined blood draw day of visit.","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10096":{"Baseline Visit":{"bscp_comments":"Subject withdrew from study, no blood draw attempted or completed","bscp_protocol_dev":"0","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10290":{"Baseline Visit":{"bscp_comments":"Subject did not come to their visit","bscp_sample_obtained":"1"},"screening_site":"UChicago"},"10262":{"Baseline Visit":{"bscp_comments":"Unable to draw blood and pt cancelled sx prior to blood draw on DOS","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"Rush"},"10002":{"screening_site":"Rush"},"10019":{"screening_site":"Rush"},"10021":{"screening_site":"Rush"},"10025":{"screening_site":"Rush"},"10039":{"screening_site":"Rush"},"10065":{"screening_site":"UChicago"},"10069":{"screening_site":"UChicago"},"10114":{"screening_site":"UChicago"},"10131":{"screening_site":"Rush"},"10140":{"screening_site":"Northshore"},"10172":{"screening_site":"Northshore"},"10176":{"screening_site":"Rush"},"10178":{"screening_site":"Rush"},"10186":{"screening_site":"UChicago"},"10187":{"screening_site":"Rush"},"10193":{"screening_site":"UChicago"},"10210":{"screening_site":"Rush"},"10228":{"screening_site":"UChicago"},"10229":{"screening_site":"UChicago"},"10240":{"screening_site":"Rush"},"10242":{"screening_site":"UChicago"},"10248":{"screening_site":"Rush"},"10253":{"screening_site":"Northshore"},"10254":{"screening_site":"UChicago"},"10259":{"screening_site":"UChicago"},"10260":{"screening_site":"Rush"},"10263":{"screening_site":"Northshore"},"10264":{"screening_site":"Northshore"},"10286":{"screening_site":"UChicago"},"10291":{"screening_site":"UChicago"},"10300":{"screening_site":"Northshore"},"10304":{"screening_site":"Rush"},"10306":{"screening_site":"UChicago"},"10359":{"screening_site":"UChicago"},"10365":{"screening_site":"UChicago"},"10373":{"screening_site":"UChicago"},"10374":{"screening_site":"Northshore"},"10381":{"screening_site":"Northshore"},"10388":{"screening_site":"Northshore"},"10410":{"screening_site":"UChicago"},"10412":{"screening_site":"UChicago"},"10422":{"screening_site":"UChicago"},"10435":{"screening_site":"Rush"},"10440":{"screening_site":"UChicago"},"10441":{"screening_site":"UChicago"},"10448":{"screening_site":"UChicago"},"10450":{"screening_site":"UChicago"},"10453":{"screening_site":"Rush"},"10454":{"screening_site":"UChicago"},"10455":{"screening_site":"UChicago"},"10456":{"screening_site":"UChicago"},"10457":{"screening_site":"Rush"},"10459":{"screening_site":"Rush"},"10461":{"screening_site":"UChicago"},"10462":{"screening_site":"UChicago"},"10463":{"screening_site":"UChicago"},"10464":{"screening_site":"Rush"},"10465":{"screening_site":"UChicago"},"10466":{"screening_site":"UChicago"},"15001":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-28 09:50","bscp_comments":"Data entered manually","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-28 09:17","bscp_time_centrifuge":"2022-06-28 09:36"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-23 09:19","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-23 09:01","bscp_time_centrifuge":"2022-08-23 09:14"}}} \ No newline at end of file diff --git a/datastore/src/data/blood/blood-2-latest.json b/datastore/src/data/blood/blood-2-latest.json new file mode 100644 index 0000000..bad4ce4 --- /dev/null +++ b/datastore/src/data/blood/blood-2-latest.json @@ -0,0 +1 @@ +{"20004":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-14 09:48","bscp_comments":"Patient stated 1.5 hours since last food intake. First spin was at rpm not rcf/g. Had to respin. ","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-07-14 09:00","bscp_time_centrifuge":"2021-07-14 09:17"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-24 08:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-24 08:20","bscp_time_centrifuge":"2021-08-24 08:39"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-21 10:41","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-21 10:20","bscp_time_centrifuge":"2021-10-21 10:33"},"screening_site":"UMichigan"},"20002":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-07-14 10:25","bscp_comments":"Patient stated 2.5 hours for last food intake.","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-07-14 10:02","bscp_time_centrifuge":"2021-07-14 10:19"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-01 17:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-01 16:27","bscp_time_centrifuge":"2021-09-01 16:50"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-21 14:46","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-21 14:24","bscp_time_centrifuge":"2021-10-21 14:40"},"screening_site":"UMichigan"},"20007":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-02 12:39","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-02 12:00","bscp_time_centrifuge":"2021-08-02 12:21"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-20 10:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-20 10:18","bscp_time_centrifuge":"2021-09-20 10:32"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-01 10:35","bscp_comments":"Patient stated does not drink anything except water. ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-01 10:11","bscp_time_centrifuge":"2021-11-01 10:25"},"screening_site":"UMichigan"},"20011":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-02 13:49","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-02 13:15","bscp_time_centrifuge":"2021-08-02 13:35"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-10 14:24","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-10 14:00","bscp_time_centrifuge":"2021-11-10 14:14"},"6-Wks Post-Op":{"bscp_comments":"Patient was not able to come in for 6wk blood draw. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20008":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-05 11:22","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-05 10:50","bscp_time_centrifuge":"2021-08-05 11:06"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-05 12:26","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-05 11:58","bscp_time_centrifuge":"2021-10-05 12:18"},"3-Mo Post-Op":{"bscp_comments":"Visit not performed due to pt. being unable to come in within 3 month visit window. ","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20013":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-08-12 13:48","bscp_comments":"23 Gauge needle was used to perform blood draw.","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_time_blood_draw":"2021-08-12 13:12","bscp_time_centrifuge":"2021-08-12 13:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-04 11:45","bscp_comments":"used 23g needle to obtain sample","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-10-04 11:29","bscp_time_centrifuge":"2021-10-04 11:40"},"3-Mo Post-Op":{"bscp_aliq_cnt":"1","bscp_aliquot_freezer_time":"2021-11-08 10:59","bscp_comments":"participant difficult blood draw. Poked twice slow blood flow","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2021-11-08 10:16","bscp_time_centrifuge":"2021-11-08 10:34"},"screening_site":"UMichigan"},"20016":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-12 15:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-12 14:40","bscp_time_centrifuge":"2021-08-12 14:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-10-05 09:50","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-05 09:13","bscp_time_centrifuge":"2021-10-05 09:33"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-16 10:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-16 10:38","bscp_time_centrifuge":"2021-11-16 10:51"},"screening_site":"UMichigan"},"20014":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-13 12:42","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-13 12:13","bscp_time_centrifuge":"2021-08-13 12:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-10-04 11:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-04 11:24","bscp_time_centrifuge":"2021-10-04 11:43"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-08 10:14","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-08 09:50","bscp_time_centrifuge":"2021-12-08 10:05"},"screening_site":"UMichigan"},"20009":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-20 11:52","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-08-20 11:17","bscp_time_centrifuge":"2021-08-20 11:30"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-22 13:12","bscp_time_centrifuge":"2021-10-22 13:25"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-10 13:26","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-10 13:02","bscp_time_centrifuge":"2022-01-10 13:19"},"screening_site":"UMichigan"},"20015":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-08-27 07:04","bscp_comments":"Collected the blood sample in pre-op day of surgery since patient had to cancel baseline visit. ","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_time_blood_draw":"2021-08-27 06:37","bscp_time_centrifuge":"2021-08-27 06:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-28 10:51","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-28 10:18","bscp_time_centrifuge":"2021-09-28 10:39"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-16 09:29","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-16 09:10","bscp_time_centrifuge":"2021-12-16 09:24"},"screening_site":"UMichigan"},"20006":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-08-27 11:24","bscp_comments":"2 Aliquots were filled prior to transferring serum into the mix tube.","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2021-08-27 11:00","bscp_time_centrifuge":"2021-08-27 11:12"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-04 11:11","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-04 10:40","bscp_time_centrifuge":"2021-10-04 11:00"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-14 12:17","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-14 11:57","bscp_time_centrifuge":"2021-12-14 12:59"},"screening_site":"UMichigan"},"20018":{"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2021-09-03 12:25","bscp_comments":"UNABLE TO COLLECT FULL SAMPLE","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2021-09-03 11:25","bscp_time_centrifuge":"2021-09-03 11:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-21 10:41","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-21 10:14","bscp_time_centrifuge":"2021-10-21 10:33"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-05 12:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-05 11:38","bscp_time_centrifuge":"2022-01-05 11:51"},"screening_site":"UMichigan"},"20012":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-03 13:23","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-03 12:58","bscp_time_centrifuge":"2021-09-03 13:10"},"screening_site":"UMichigan"},"20017":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-14 11:29","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-14 11:05","bscp_time_centrifuge":"2021-09-14 11:21"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-20 14:46","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-20 14:18","bscp_time_centrifuge":"2021-10-20 14:36"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-12 11:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-12 11:00","bscp_time_centrifuge":"2022-01-12 11:12"},"screening_site":"UMichigan"},"20020":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-14 12:39","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-14 12:20","bscp_time_centrifuge":"2021-09-14 12:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-10 10:51","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-10 10:14","bscp_time_centrifuge":"2021-12-10 10:40"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-21 11:08","bscp_time_centrifuge":"2022-01-21 11:25"},"screening_site":"UMichigan"},"20024":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-22 12:05","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-22 11:10","bscp_time_centrifuge":"2021-09-22 11:49"},"6-Wks Post-Op":{"bscp_comments":"Patient was not able to find transportation to come in for 6wk blood draw. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Patient did not come in for 3mo visit. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20019":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-22 12:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-22 12:15","bscp_time_centrifuge":"2021-09-22 12:29"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 12:02","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 11:39","bscp_time_centrifuge":"2021-11-22 11:56"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-18 12:26","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-18 12:07","bscp_time_centrifuge":"2022-01-18 12:20"},"screening_site":"UMichigan"},"20021":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-29 12:04","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-29 11:25","bscp_time_centrifuge":"2021-09-29 11:50"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-12 08:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-12 08:20","bscp_time_centrifuge":"2022-01-12 08:35"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-03 13:42","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-03 13:13","bscp_time_centrifuge":"2021-12-03 13:27"},"screening_site":"UMichigan"},"20023":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-09-29 14:28","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-09-29 14:00","bscp_time_centrifuge":"2021-09-29 14:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-23 12:02","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 11:40","bscp_time_centrifuge":"2021-11-23 11:54"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-11 12:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-11 11:45"},"screening_site":"UMichigan"},"20022":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-04 10:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-04 10:10","bscp_time_centrifuge":"2021-10-04 10:35"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-23 13:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 13:28","bscp_time_centrifuge":"2021-11-23 13:42"},"3-Mo Post-Op":{"bscp_comments":"Pt. had decline to participate in 3 Month visit. ","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20025":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2021-10-14 07:20","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-14 06:45","bscp_time_centrifuge":"2021-10-14 07:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-02 11:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-02 10:45","bscp_time_centrifuge":"2021-12-02 11:05"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-19 13:58","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-19 13:35","bscp_time_centrifuge":"2022-01-19 13:50"},"screening_site":"UMichigan"},"20026":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-18 11:04","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-18 10:39","bscp_time_centrifuge":"2021-10-18 10:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-08 12:18","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-08 11:45","bscp_time_centrifuge":"2021-12-08 12:13"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-26 01:31","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-26 01:04","bscp_time_centrifuge":"2022-01-26 01:24"},"screening_site":"UMichigan"},"20027":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-18 12:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-18 11:53","bscp_time_centrifuge":"2021-10-18 12:07"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-15 09:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 09:09","bscp_time_centrifuge":"2021-12-15 09:22"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-15 10:30","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 10:00","bscp_time_centrifuge":"2022-02-15 10:22"},"screening_site":"UMichigan"},"20028":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-21 11:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-21 11:19","bscp_time_centrifuge":"2021-10-21 11:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-14 09:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-14 09:00","bscp_time_centrifuge":"2021-12-14 09:16"},"3-Mo Post-Op":{"bscp_comments":"visit was not performed due to pt. being unable to come in during visit window.","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20029":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-10-27 10:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-10-27 10:19","bscp_time_centrifuge":"2021-10-27 10:34"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-16 12:33","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-16 12:12","bscp_time_centrifuge":"2021-12-16 12:26"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-08 12:14","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-08 11:53"}},"20030":{"Baseline Visit":{"bscp_aliq_cnt":"3","bscp_aliquot_freezer_time":"2021-11-12 12:14","bscp_comments":"Blood stopped flowing","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2021-11-12 11:48","bscp_time_centrifuge":"2021-11-12 11:50"},"6-Wks Post-Op":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2021-12-15 18:10","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 17:39","bscp_time_centrifuge":"2021-12-15 17:55"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-21 12:18","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-21 11:55","bscp_time_centrifuge":"2022-02-21 12:08"},"screening_site":"UMichigan"},"20035":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-15 11:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 11:04","bscp_time_centrifuge":"2021-11-15 11:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-20 13:33","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-20 13:11","bscp_time_centrifuge":"2021-12-20 13:24"},"3-Mo Post-Op":{"bscp_comments":"Pt. had decline to participate in 3 Month visit. ","bscp_sample_obtained":"1"}},"20033":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-15 12:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-15 12:17","bscp_time_centrifuge":"2021-11-15 12:29"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-01 13:46","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-01 13:16","bscp_time_centrifuge":"2022-02-01 13:30"},"3-Mo Post-Op":{"bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20031":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-19 11:30","bscp_deg_of_hemolysis":"8","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-19 10:58","bscp_time_centrifuge":"2021-11-19 11:11"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-25 11:43","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-25 11:11","bscp_time_centrifuge":"2022-01-25 11:25"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-14 10:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-14 10:23","bscp_time_centrifuge":"2022-03-14 10:39"},"screening_site":"UMichigan"},"20034":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-22 14:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-22 13:45","bscp_time_centrifuge":"2021-11-22 14:01"},"6-Wks Post-Op":{"bscp_comments":"Patient declined coming in for 6wk visit due to travel distance (still recovering after surgery). Patient lives about 4 hrs away. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Patient did not come in for 3mo visit. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20036":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-23 09:50","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-23 09:30","bscp_time_centrifuge":"2021-11-23 09:45"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-05 13:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-05 12:48","bscp_time_centrifuge":"2022-01-05 13:14"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-04 10:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-04 10:10","bscp_time_centrifuge":"2022-03-04 10:28"},"screening_site":"UMichigan"},"20038":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-11-24 08:52","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-11-24 08:30","bscp_time_centrifuge":"2021-11-24 08:43"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-12 13:16","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-12 13:00","bscp_time_centrifuge":"2022-01-12 13:12"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-15 09:24","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 09:05","bscp_time_centrifuge":"2022-02-15 09:17"},"screening_site":"UMichigan"},"20039":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-03 09:42","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-03 09:10","bscp_time_centrifuge":"2021-12-03 09:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-27 07:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-27 07:22","bscp_time_centrifuge":"2022-01-27 07:37"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-24 07:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-24 07:16","bscp_time_centrifuge":"2022-03-24 07:33"},"screening_site":"UMichigan"},"20043":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-15 14:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 13:59","bscp_time_centrifuge":"2021-12-15 14:12"}},"20042":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-16 13:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-15 12:56","bscp_time_centrifuge":"2021-12-15 13:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-01 14:05","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-01 13:34","bscp_time_centrifuge":"2022-02-01 13:52"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-06 09:56","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-06 09:35","bscp_time_centrifuge":"2022-04-06 09:48"},"screening_site":"UMichigan"},"20037":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-17 13:11","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-17 12:50","bscp_time_centrifuge":"2021-12-17 13:03"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-16 08:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-16 08:38","bscp_time_centrifuge":"2022-05-16 08:52"},"6-Wks Post-Op":{"bscp_comments":"Patient was out of town in Florida during 6wk blood draw window. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20050":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-17 12:03","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-17 11:40","bscp_time_centrifuge":"2021-12-17 11:53"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-21 15:38","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-21 15:03","bscp_time_centrifuge":"2022-02-21 15:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-26 10:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-26 10:26","bscp_time_centrifuge":"2022-04-26 10:39"},"screening_site":"UMichigan"},"20054":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-23 10:23","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-23 09:53","bscp_time_centrifuge":"2021-12-23 10:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-10 15:04","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-10 14:31","bscp_time_centrifuge":"2022-02-10 14:48"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-05 11:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-05 11:30","bscp_time_centrifuge":"2022-04-05 11:45"},"screening_site":"UMichigan"},"20052":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-23 10:47","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-23 10:27","bscp_time_centrifuge":"2021-12-23 10:39"},"screening_site":"UMichigan"},"20047":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2021-12-23 12:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2021-12-23 11:40","bscp_time_centrifuge":"2021-12-23 11:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-14 09:25","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-14 09:02","bscp_time_centrifuge":"2022-02-14 09:15"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-06 08:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-06 08:10","bscp_time_centrifuge":"2022-04-06 08:25"}},"20049":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-04 12:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-04 12:20","bscp_time_centrifuge":"2022-01-04 12:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-07 13:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-07 12:58","bscp_time_centrifuge":"2022-03-07 13:09"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-19 13:33","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-19 13:12","bscp_time_centrifuge":"2022-04-19 13:26"},"screening_site":"UMichigan"},"20046":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-04 13:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-04 13:20","bscp_time_centrifuge":"2022-01-04 13:40"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-01 10:46","bscp_comments":"disturbed the BC during processing. re-spun the sample to obtain BC","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-03-01 10:15","bscp_time_centrifuge":"2022-03-01 10:43"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-19 12:12","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-19 11:52","bscp_time_centrifuge":"2022-04-19 12:07"},"screening_site":"UMichigan"},"20045":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-06 08:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-06 08:21","bscp_time_centrifuge":"2022-01-06 08:37"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-03 13:35","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-03 13:00","bscp_time_centrifuge":"2022-03-03 13:25"},"3-Mo Post-Op":{"bscp_comments":"Visit not performed due to patient not responding to study team and being outside of visit window. ","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20056":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-07 10:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-07 09:45","bscp_time_centrifuge":"2022-01-07 10:00"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-22 14:57","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-22 14:33","bscp_time_centrifuge":"2022-02-22 14:51"},"3-Mo Post-Op":{"bscp_aliq_cnt":"4","bscp_aliquot_freezer_time":"2022-04-13 14:34","bscp_comments":"Patient was a hard stick ","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-04-13 13:55","bscp_time_centrifuge":"2022-04-13 14:25"},"screening_site":"UMichigan"},"20001":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-08 10:35","bscp_comments":"Aliquoted the plasma into the aliquots vials instead of the the mix tube, realized this when there was extra plasma. Transferred to the mix tube, inverted twice and aliquoted into the plasma aliquots. The sterile pipettes were used at the appropriate times.","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-01-08 10:14","bscp_time_centrifuge":"2022-01-08 10:35"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-26 10:46","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-26 10:14","bscp_time_centrifuge":"2022-02-26 10:37"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-09 10:55","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-09 10:35","bscp_time_centrifuge":"2022-04-09 10:47"},"screening_site":"UMichigan"},"20051":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-10 14:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-10 14:05","bscp_time_centrifuge":"2022-01-10 14:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-01 09:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-01 09:10","bscp_time_centrifuge":"2022-03-01 09:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-12 08:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-12 08:15","bscp_time_centrifuge":"2022-04-12 08:35"}},"20057":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-11 12:50","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-11 12:30","bscp_time_centrifuge":"2022-01-11 12:44"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-11 11:15","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-11 10:48","bscp_time_centrifuge":"2022-03-11 11:08"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-19 11:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-19 11:22","bscp_time_centrifuge":"2022-05-19 11:34"},"screening_site":"UMichigan"},"20040":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-12 12:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-12 12:05","bscp_time_centrifuge":"2022-01-12 12:09"},"6-Wks Post-Op":{"bscp_comments":"Patient with complications after surgery and in hospital for awhile. Unable to come in for 6wk visit. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"3-Mo Post-Op":{"bscp_comments":"Unable to schedule pt. for visit within visit window.","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20058":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-21 13:36","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-21 13:11","bscp_time_centrifuge":"2022-01-21 13:24"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-15 09:14","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-15 08:50","bscp_time_centrifuge":"2022-04-15 09:06"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 11:08","bscp_comments":"Patient had inadequate blood flow, unable to obtain full amount for Pax tube, patient states she did not have much water and was drinking a lot of alcohol last night ","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-06-07 10:50","bscp_time_centrifuge":"2022-06-07 11:02"}},"20041":{"6-Wks Post-Op":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-01-27 11:48","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-27 11:10","bscp_time_centrifuge":"2022-01-27 11:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-21 12:03","bscp_comments":"USED 23G INSTEAD OF 21G","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-03-21 11:39","bscp_time_centrifuge":"2022-03-21 11:56"},"Baseline Visit":{"bscp_comments":"Attempted 2 blood draws at the beginning of the visit and 1 blood draw after the QST. Won't be unable to collect a sample on DOS. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"}},"20059":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-28 12:15","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-28 11:40","bscp_time_centrifuge":"2022-01-28 12:07"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-18 09:32","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-18 09:05","bscp_time_centrifuge":"2022-04-18 09:22"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-14 12:12","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-14 11:55","bscp_time_centrifuge":"2022-06-14 12:02"},"screening_site":"UMichigan"},"20062":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-01-28 13:06","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-01-28 12:44","bscp_time_centrifuge":"2022-01-28 13:00"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-19 09:47","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-19 09:17","bscp_time_centrifuge":"2022-03-19 09:38"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-04 14:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-04 14:22","bscp_time_centrifuge":"2022-05-04 14:37"},"screening_site":"UMichigan"},"20066":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-10 10:19","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-10 09:45","bscp_time_centrifuge":"2022-02-10 10:13"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-21 08:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-21 08:14","bscp_time_centrifuge":"2022-03-21 08:36"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-10 11:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-10 11:15","bscp_time_centrifuge":"2022-05-10 11:44"},"screening_site":"UMichigan"},"20067":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-11 10:31","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-11 09:52","bscp_time_centrifuge":"2022-02-11 10:14"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-30 09:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-30 08:50","bscp_time_centrifuge":"2022-03-30 09:10"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-04 15:27","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-04 14:50","bscp_time_centrifuge":"2022-05-04 15:02"},"screening_site":"UMichigan"},"20068":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-15 10:56","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-15 10:39","bscp_time_centrifuge":"2022-02-15 10:51"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-03 11:19","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-03 11:00","bscp_time_centrifuge":"2022-05-03 11:15"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-14 11:12","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-14 10:52","bscp_time_centrifuge":"2022-06-14 11:06"},"screening_site":"UMichigan"},"20071":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-21 13:38","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-21 11:18","bscp_time_centrifuge":"2022-02-21 13:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-07 13:40","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-07 13:20","bscp_time_centrifuge":"2022-04-07 13:33"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 14:20","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-07 14:02","bscp_time_centrifuge":"2022-06-07 14:16"},"screening_site":"UMichigan"},"20061":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-22 11:22","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-22 11:00","bscp_time_centrifuge":"2022-02-22 11:12"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-25 13:19","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-25 12:57","bscp_time_centrifuge":"2022-04-25 13:13"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-21 12:03","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-21 11:45","bscp_time_centrifuge":"2022-06-21 11:59"},"screening_site":"UMichigan"},"20075":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-02-25 09:39","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-02-25 09:18","bscp_time_centrifuge":"2022-02-25 09:31"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-22 10:43","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-22 10:19","bscp_time_centrifuge":"2022-04-22 10:33"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-01 11:00","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-01 10:42","bscp_time_centrifuge":"2022-07-01 10:54"},"screening_site":"UMichigan"},"20076":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-08 12:44","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-08 12:24","bscp_time_centrifuge":"2022-03-08 12:39"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-25 12:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-25 11:37","bscp_time_centrifuge":"2022-04-25 11:54"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-23 11:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-23 11:17","bscp_time_centrifuge":"2022-06-23 11:30"},"screening_site":"UMichigan"},"20072":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-17 12:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 11:54","bscp_time_centrifuge":"2022-03-17 12:10"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-13 11:33","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-13 11:14","bscp_time_centrifuge":"2022-05-13 11:26"},"3-Mo Post-Op":{"bscp_comments":"Pt. wasn't able to come in for visit within window.","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20078":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-17 13:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-17 13:06","bscp_time_centrifuge":"2022-03-17 13:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-25 09:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-25 09:03","bscp_time_centrifuge":"2022-04-25 09:17"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 11:31","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 11:15","bscp_time_centrifuge":"2022-07-06 11:27"},"screening_site":"UMichigan"},"20077":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-21 12:50","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-21 12:33","bscp_time_centrifuge":"2022-03-21 12:43"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-31 12:28","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-31 11:52","bscp_time_centrifuge":"2022-05-31 12:19"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-26 12:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-26 11:45","bscp_time_centrifuge":"2022-07-26 11:59"}},"20089":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-28 09:16","bscp_comments":"T_MI_PAX_105 was not placed in freezer until 3/30/22 at 7:40am ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-03-28 08:50","bscp_time_centrifuge":"2022-03-28 09:04"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-16 10:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-16 09:48","bscp_time_centrifuge":"2022-05-16 10:00"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-27 14:33","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-27 14:07","bscp_time_centrifuge":"2022-07-27 14:30"}},"20055":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-29 09:29","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-29 09:16","bscp_time_centrifuge":"2022-03-29 09:32"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-20 13:34","bscp_comments":"buffy coat layer disturbed during collection","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-05-20 13:06","bscp_time_centrifuge":"2022-05-20 13:24"},"Baseline Visit":{"bscp_comments":"PPT mentioned previous difficulty with draws, attempted twice.","bscp_deg_of_hemolysis":"0","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1","bscp_time_blood_draw":"2022-01-17 12:46"}},"20087":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-30 09:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-30 08:58","bscp_time_centrifuge":"2022-03-30 09:10"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-18 11:14","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-18 10:42","bscp_time_centrifuge":"2022-05-18 11:02"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-05 09:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-05 09:07","bscp_time_centrifuge":"2022-07-05 09:22"}},"20085":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-03-31 11:25","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-03-31 11:05","bscp_time_centrifuge":"2022-03-31 11:20"},"screening_site":"UMichigan"},"20090":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-01 13:02","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-01 12:40","bscp_time_centrifuge":"2022-04-01 12:55"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-16 11:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-16 11:00","bscp_time_centrifuge":"2022-05-16 11:15"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-11 11:47","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 11:28","bscp_time_centrifuge":"2022-07-11 11:40"}},"20073":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-01 14:06","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-01 13:46","bscp_time_centrifuge":"2022-04-01 13:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-05 14:38","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-05 14:17","bscp_time_centrifuge":"2022-05-05 14:34"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-12 12:22","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-12 12:03","bscp_time_centrifuge":"2022-07-12 12:15"},"screening_site":"UMichigan"},"20092":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-04 11:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-04 10:55","bscp_time_centrifuge":"2022-04-04 11:10"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 11:03","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-24 10:26","bscp_time_centrifuge":"2022-05-24 10:47"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-15 10:59","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-14 10:39","bscp_time_centrifuge":"2022-07-14 10:54"},"screening_site":"UMichigan"},"20081":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-05 08:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-05 08:09","bscp_time_centrifuge":"2022-04-05 08:24"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-29 13:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-29 12:59","bscp_time_centrifuge":"2022-07-29 13:13"},"6-Wks Post-Op":{"bscp_comments":"Patient not coming in for 6wk visit","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20065":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-05 15:24","bscp_buffycoat_na":"1","bscp_comments":"A 23g needle was used to perform the blood draw; blood was spun for 15 minutes at 1500xG; unable to collect buffy coat","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-04-05 14:07","bscp_time_centrifuge":"2022-04-05 14:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 10:31","bscp_comments":"Buffy coat disturbed during collection","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-05-24 10:07","bscp_time_centrifuge":"2022-05-24 10:24"},"Baseline Visit":{"bscp_comments":"RA was unable to find vein so no blood draw","bscp_deg_of_hemolysis":"0","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"}},"20064":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-06 14:27","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-06 14:21","bscp_time_centrifuge":"2022-04-06 14:25"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-02 13:21","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-02 12:55","bscp_time_centrifuge":"2022-06-02 13:14"},"Baseline Visit":{"bscp_comments":"Ppt had scarring on his arms and recommended we try a hand draw. Hand draw performed by two individuals was not successful. Ppt said they had difficult veins.","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"}},"20088":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-07 08:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-07 08:15","bscp_time_centrifuge":"2022-04-07 08:27"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-08 09:12","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-08 08:50","bscp_time_centrifuge":"2022-06-08 09:07"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-15 11:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-15 11:35","bscp_time_centrifuge":"2022-08-15 11:50"},"screening_site":"UMichigan"},"20084":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-12 10:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-12 10:17","bscp_time_centrifuge":"2022-04-12 10:32"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-02 10:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-02 10:15","bscp_time_centrifuge":"2022-06-02 10:30"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-26 11:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-26 11:00","bscp_time_centrifuge":"2022-07-26 11:13"},"screening_site":"UMichigan"},"20091":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-13 14:29","bscp_comments":"Samples frozen past one hour mark","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-04-13 12:52","bscp_time_centrifuge":"2022-04-13 13:09"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 11:52","bscp_comments":"Buffy coat layer was disturbed during collection","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-06-07 11:25","bscp_time_centrifuge":"2022-06-07 11:40"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-25 12:53","bscp_comments":"Buffy coat disturbed.","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-25 11:39","bscp_time_centrifuge":"2022-07-25 12:11"}},"20093":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-19 09:05","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-19 08:43","bscp_time_centrifuge":"2022-04-19 09:01"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-08 11:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-08 11:08","bscp_time_centrifuge":"2022-08-08 11:38"},"6-Wks Post-Op":{"bscp_comments":"Pt. unable to come in during visit window","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20096":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-19 11:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-19 10:40","bscp_time_centrifuge":"2022-04-19 10:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-26 11:26","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-26 11:07","bscp_time_centrifuge":"2022-05-26 11:20"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-04 10:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-04 10:20","bscp_time_centrifuge":"2022-08-04 10:32"},"screening_site":"UMichigan"},"20094":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-20 08:58","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-20 08:38","bscp_time_centrifuge":"2022-04-20 08:49"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-03 10:34","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-03 10:12","bscp_time_centrifuge":"2022-06-03 10:26"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-04 11:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-04 11:36","bscp_time_centrifuge":"2022-08-04 11:51"}},"20086":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-21 11:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-21 11:00","bscp_time_centrifuge":"2022-04-21 11:12"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 17:00","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 16:39","bscp_time_centrifuge":"2022-07-06 16:50"},"screening_site":"UMichigan"},"20098":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-21 12:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-21 12:01","bscp_time_centrifuge":"2022-04-21 12:14"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-20 10:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-20 10:38","bscp_time_centrifuge":"2022-07-20 10:50"},"6-Wks Post-Op":{"bscp_comments":"Patient unable to come in for 6wk visit. Patient lives on other side of state and could not make trip until after 8wks post-op. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20095":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-21 13:13","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-21 12:55","bscp_time_centrifuge":"2022-04-21 13:07"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-06 12:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-06 12:10","bscp_time_centrifuge":"2022-06-06 12:25"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-18 12:54","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-18 12:38","bscp_time_centrifuge":"2022-08-18 12:52"},"screening_site":"UMichigan"},"20097":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-04-27 09:24","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-04-27 09:04","bscp_time_centrifuge":"2022-04-27 09:17"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 13:13","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-07 12:55","bscp_time_centrifuge":"2022-06-07 13:08"},"screening_site":"UMichigan"},"20101":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-02 02:55","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-02 02:30","bscp_time_centrifuge":"2022-05-02 02:46"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-06 16:35","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-06 16:07","bscp_time_centrifuge":"2022-06-06 16:27"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-15 12:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-15 12:10","bscp_time_centrifuge":"2022-08-15 12:25"},"screening_site":"UMichigan"},"20103":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-12 10:17","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-12 09:52","bscp_time_centrifuge":"2022-05-12 11:47"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 10:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-07 10:26","bscp_time_centrifuge":"2022-06-07 10:43"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-24 07:38","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-24 07:15","bscp_time_centrifuge":"2022-08-24 07:33"},"screening_site":"UMichigan"},"20099":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-13 08:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-13 08:23","bscp_time_centrifuge":"2022-05-13 08:34"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-14 12:35","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-14 12:18","bscp_time_centrifuge":"2022-07-14 12:31"},"screening_site":"UMichigan"},"20102":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-16 09:12","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-16 08:52","bscp_time_centrifuge":"2022-05-16 09:03"},"6-Wks Post-Op":{"bscp_comments":"Pt. declined blood draw due to travel","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20083":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-19 16:49","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-19 16:44","bscp_time_centrifuge":"2022-05-19 17:00"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-14 13:29","bscp_comments":"Buffy coat disturbed.","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-07-14 13:26","bscp_time_centrifuge":"2022-07-14 13:41"},"Baseline Visit":{"bscp_buffycoat_na":"1","bscp_comments":"BP 127/73; Pulse 59\r\n\r\nPpt had a fistula on right arm; ppt refused left hand draw and technician could not draw successfully from left arm.","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"}},"20104":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-20 12:24","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-20 12:08","bscp_time_centrifuge":"2022-05-20 12:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-27 08:55","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-27 08:17","bscp_time_centrifuge":"2022-07-27 08:40"},"screening_site":"UMichigan"},"20105":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-24 12:39","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-24 12:15","bscp_time_centrifuge":"2022-05-24 12:30"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 14:32","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 14:15","bscp_time_centrifuge":"2022-07-06 14:28"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-17 11:43","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-17 11:21","bscp_time_centrifuge":"2022-08-17 11:33"},"screening_site":"UMichigan"},"20107":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-05-25 15:26","bscp_comments":"No centrifuge time was written down on blood collection sheet","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-05-25 15:10"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-27 11:38","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-27 11:10","bscp_time_centrifuge":"2022-07-27 11:33"},"screening_site":"UMichigan"},"20111":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-01 11:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-01 10:40","bscp_time_centrifuge":"2022-06-01 10:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-14 11:16","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-14 10:57","bscp_time_centrifuge":"2022-07-14 11:11"}},"20110":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-06 11:15","bscp_comments":"Blood collected post-QST at the end of session","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"1","bscp_time_blood_draw":"2022-06-06 11:09","bscp_time_centrifuge":"2022-06-06 11:25"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-28 16:34","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-28 16:00","bscp_time_centrifuge":"2022-07-28 16:11"}},"20116":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-07 15:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-07 14:59","bscp_time_centrifuge":"2022-06-07 15:14"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-01 10:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-01 10:19","bscp_time_centrifuge":"2022-07-01 11:12"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-07 11:25","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-07 11:10","bscp_time_centrifuge":"2022-09-07 11:21"}},"20113":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-09 11:36","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-09 11:19","bscp_time_centrifuge":"2022-06-09 11:30"},"screening_site":"UMichigan"},"20108":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-09 13:54","bscp_comments":"-80 Freezer: 6/9/22 1518","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-09 13:45","bscp_time_centrifuge":"2022-06-09 14:04"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-12 13:54","bscp_comments":"used a 23g butterfly needle","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-07-12 13:29","bscp_time_centrifuge":"2022-07-12 14:03"}},"20115":{"Baseline Visit":{"bscp_aliq_cnt":"6","bscp_aliquot_freezer_time":"2022-06-13 10:47","bscp_comments":"Plasma tubs A-F were collected.","bscp_deg_of_hemolysis":"1","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-13 10:15","bscp_time_centrifuge":"2022-06-13 10:40"},"6-Wks Post-Op":{"bscp_buffycoat_na":"1","bscp_comments":"PATIENT STATES SHE IS A HARD STICK ","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20106":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-14 09:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-14 09:09","bscp_time_centrifuge":"2022-06-14 09:35"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-01 10:37","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-01 10:10","bscp_time_centrifuge":"2022-07-01 10:32"},"screening_site":"UMichigan"},"20120":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-17 11:58","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-17 11:37","bscp_time_centrifuge":"2022-06-17 11:54"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-08 10:27","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-08 10:08","bscp_time_centrifuge":"2022-08-08 10:21"}},"20112":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-17 12:47","bscp_comments":"buffy coat layer was disturbed during processing; buff coat re-centrifuged","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"3","bscp_time_blood_draw":"2022-06-17 12:11","bscp_time_centrifuge":"2022-06-17 12:25"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-15 12:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-15 12:44","bscp_time_centrifuge":"2022-08-15 12:59"}},"20117":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-20 10:27","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-20 10:08","bscp_time_centrifuge":"2022-06-20 10:22"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-11 12:09","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-11 11:53","bscp_time_centrifuge":"2022-08-11 12:05"}},"20124":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-23 12:59","bscp_buffycoat_na":"1","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-23 12:47","bscp_time_centrifuge":"2022-06-23 13:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-09 15:03","bscp_comments":"23 gauge butterfly needle used- unable to get blood draw with 21 gauge","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-08-09 14:07","bscp_time_centrifuge":"2022-08-09 14:47"}},"20119":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-24 10:20","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-24 10:04","bscp_time_centrifuge":"2022-06-24 10:15"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-11 15:30","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-11 15:13","bscp_time_centrifuge":"2022-08-11 15:24"},"screening_site":"UMichigan"},"20130":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-06-27 12:43","bscp_comments":"NOT ENOUGH BLOOD OBTAINED TO FILL ALL 8 ALIQUOTS","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-27 12:05","bscp_time_centrifuge":"2022-06-27 12:32"},"6-Wks Post-Op":{"bscp_comments":"Pt. not willing to travel 3 hours for just a blood draw.","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20100":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-30 13:05","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-30 12:48","bscp_time_centrifuge":"2022-06-30 13:07"},"3-Mo Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-02 01:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-02 12:50"},"Baseline Visit":{"bscp_buffycoat_na":"1","bscp_lav1_not_obt":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"0","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"}},"20127":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-23 12:59","bscp_comments":"23 gauge butterfly needle used for blood draw","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-06-30 12:49","bscp_time_centrifuge":"2022-06-30 13:08"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-09 14:57","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-09 14:26","bscp_time_centrifuge":"2022-08-09 14:47"}},"20133":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-06 12:38","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-06 12:17","bscp_time_centrifuge":"2022-07-06 12:31"},"6-Wks Post-Op":{"bscp_comments":"Patient did not come in for 6wk blood draw. ","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_sample_obtained":"1"}},"20135":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-07-07 12:55","bscp_comments":"-80 Freezer at 1405","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-07 12:49","bscp_time_centrifuge":"2022-07-07 13:05"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-26 15:02","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-25 14:32","bscp_time_centrifuge":"2022-08-25 14:51"}},"20123":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-08 06:57","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-08 06:16","bscp_time_centrifuge":"2022-07-08 06:43"},"6-Wks Post-Op":{"bscp_comments":"Pt. Declined visit due to travel","bscp_sample_obtained":"1"},"screening_site":"UMichigan"},"20134":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-11 12:58","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 12:41","bscp_time_centrifuge":"2022-07-11 12:53"}},"20132":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-11 12:47","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 12:43","bscp_time_centrifuge":"2022-07-11 12:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 12:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-29 12:15","bscp_time_centrifuge":"2022-08-29 12:37"}},"20125":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-11 12:58","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-11 12:28","bscp_time_centrifuge":"2022-07-11 12:39"},"6-Wks Post-Op":{"bscp_comments":"PATIENT HAD 2 STICKS BOTH HAD BLOOD FLOW THAT STOPPED, NOT SUFFIEIENT AMOUNT IN BOTH TUBES","bscp_lav1_not_obt":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-08-30 11:23"},"screening_site":"UMichigan"},"20121":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-06-21 11:03","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-06-21 10:40","bscp_time_centrifuge":"2022-06-21 10:56"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-12 09:45","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-12 09:15","bscp_time_centrifuge":"2022-08-12 09:41"},"screening_site":"UMichigan"},"20136":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-20 10:12","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-20 09:44","bscp_time_centrifuge":"2022-07-20 09:58"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-23 11:37","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-23 11:17","bscp_time_centrifuge":"2022-08-23 11:28"},"screening_site":"UMichigan"},"20137":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-21 14:26","bscp_comments":"all samples placed in -81 degree freezer at 15:00 7/21/2022","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-21 13:58","bscp_time_centrifuge":"2022-07-21 14:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-31 15:18","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-31 14:35","bscp_time_centrifuge":"2022-08-31 15:10"}},"20128":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-22 13:01","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-22 12:45","bscp_time_centrifuge":"2022-07-22 12:57"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 12:55","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-29 12:30","bscp_time_centrifuge":"2022-08-29 12:44"},"screening_site":"UMichigan"},"20140":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-25 12:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-25 12:34","bscp_time_centrifuge":"2022-07-25 12:46"},"screening_site":"UMichigan"},"20142":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-28 10:22","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-28 10:05","bscp_time_centrifuge":"2022-07-28 10:16"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-01 14:00","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-01 13:34","bscp_time_centrifuge":"2022-09-01 13:56"},"screening_site":"UMichigan"},"20138":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-28 13:28","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-28 12:55","bscp_time_centrifuge":"2022-07-28 13:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-31 15:56","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-31 15:23","bscp_time_centrifuge":"2022-08-31 15:50"}},"20118":{"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-03 10:05","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-03 09:27","bscp_time_centrifuge":"2022-08-03 09:50"},"screening_site":"UMichigan"},"20145":{"Baseline Visit":{"bscp_aliq_cnt":"7","bscp_aliquot_freezer_time":"2022-08-05 11:53","bscp_comments":"Phlebotomist used a 21 gauge needle in the right hand. ","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"1","bscp_time_blood_draw":"2022-08-05 11:32","bscp_time_centrifuge":"2022-08-05 11:43"}},"20143":{"Baseline Visit":{"bscp_aliq_cnt":"1","bscp_aliquot_freezer_time":"2022-08-05 12:36","bscp_comments":"Both EDTA and PaxGene tubes are expired, patient had 2 pokes and blood flow stopped to fill EDTA tube completely ","bscp_deg_of_hemolysis":"2","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"1","bscp_time_blood_draw":"2022-08-05 12:18","bscp_time_centrifuge":"2022-08-05 12:33"},"screening_site":"UMichigan"},"20139":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-11 13:04","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-11 12:40","bscp_time_centrifuge":"2022-08-11 12:54"},"screening_site":"UMichigan"},"20131":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-12 09:29","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-12 09:05","bscp_time_centrifuge":"2022-08-12 09:25"},"screening_site":"UMichigan"},"20129":{"Baseline Visit":{"bscp_aliq_cnt":"5","bscp_aliquot_freezer_time":"2022-08-17 06:50","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-17 06:30","bscp_time_centrifuge":"2022-08-17 06:45"},"screening_site":"UMichigan"},"20141":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-17 10:53","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-17 10:36","bscp_time_centrifuge":"2022-08-17 10:48"},"screening_site":"UMichigan"},"20144":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-23 14:42","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-23 14:26","bscp_time_centrifuge":"2022-08-23 14:39"},"screening_site":"UMichigan"},"20146":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-25 13:33","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-25 13:06","bscp_time_centrifuge":"2022-08-25 13:26"}},"20156":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-01 13:01","bscp_comments":"In -80 Freezer @ 1335","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-01 12:41","bscp_time_centrifuge":"2022-09-01 12:58"}},"20149":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-01 13:10","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-01 12:40","bscp_time_centrifuge":"2022-09-01 12:55"},"screening_site":"UMichigan"},"20147":{"Baseline Visit":{"bscp_comments":"Pt. Withdrew before Baseline visit","bscp_sample_obtained":"1"}},"20003":{"screening_site":"UMichigan"},"20005":{"screening_site":"UMichigan"},"20010":{"screening_site":"UMichigan"},"20032":{"screening_site":"UMichigan"},"20044":{"screening_site":"UMichigan"},"20053":{"screening_site":"UMichigan"},"20063":{"screening_site":"UMichigan"},"20069":{"screening_site":"UMichigan"},"20070":{"screening_site":"UMichigan"},"20074":{"screening_site":"UMichigan"},"20079":{"screening_site":"UMichigan"},"20109":{"screening_site":"UMichigan"},"20114":{"screening_site":"UMichigan"},"25002":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-07 09:51","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-07 09:32","bscp_time_centrifuge":"2022-07-07 09:45"}},"25003":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-12 09:24","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-12 09:06","bscp_time_centrifuge":"2022-07-12 09:20"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-29 10:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-22 10:08","bscp_time_centrifuge":"2022-08-29 10:21"}},"25004":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-21 09:18","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-21 09:00","bscp_time_centrifuge":"2022-07-21 09:12"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-26 09:44","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-26 09:25","bscp_time_centrifuge":"2022-08-26 09:35"}},"25005":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-07-25 10:22","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-07-25 10:07","bscp_time_centrifuge":"2022-07-25 10:18"},"6-Wks Post-Op":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-01 10:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-01 09:46","bscp_time_centrifuge":"2022-09-01 09:58"}},"25007":{"Baseline Visit":{"bscp_aliq_cnt":"2","bscp_aliquot_freezer_time":"2022-07-30 12:59","bscp_comments":"PaxGene was not obtained due to participant's started to bruise during EDTA tube. Tech stopped the blood draw to prevent further bruising. ","bscp_deg_of_hemolysis":"1","bscp_paxg_aliq_na":"1","bscp_protocol_dev":"1","bscp_protocol_dev_reason":"2","bscp_time_blood_draw":"2022-07-30 12:28","bscp_time_centrifuge":"2022-07-30 12:40"}},"25008":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-09 11:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-09 11:23","bscp_time_centrifuge":"2022-08-09 11:40"}},"25009":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-11 10:24","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-11 10:05","bscp_time_centrifuge":"2022-08-11 12:12"}},"25001":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-11 14:08","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-11 13:46","bscp_time_centrifuge":"2022-08-11 13:59"}},"25010":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-17 13:36","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-17 13:20","bscp_time_centrifuge":"2022-08-17 13:32"}},"25011":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-24 10:29","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-24 10:15","bscp_time_centrifuge":"2022-08-24 10:26"}},"25012":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-24 14:40","bscp_deg_of_hemolysis":".5","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-24 14:01","bscp_time_centrifuge":"2022-08-24 14:29"}},"25013":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-08-25 09:48","bscp_deg_of_hemolysis":".25","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-08-25 09:26","bscp_time_centrifuge":"2022-08-25 09:42"}},"25015":{"Baseline Visit":{"bscp_aliq_cnt":"8","bscp_aliquot_freezer_time":"2022-09-06 13:40","bscp_deg_of_hemolysis":"0","bscp_protocol_dev":"0","bscp_time_blood_draw":"2022-09-06 12:53","bscp_time_centrifuge":"2022-09-06 01:11"}}} \ No newline at end of file diff --git a/datastore/src/data/consort/consort-data-1-latest.csv b/datastore/src/data/consort/consort-data-1-latest.csv new file mode 100644 index 0000000..303434a --- /dev/null +++ b/datastore/src/data/consort/consort-data-1-latest.csv @@ -0,0 +1,19 @@ +Screened Patients,Declined - Not interested in research,239,2022-09-07T18:00:42 +Screened Patients,Declined - COVID-related,9,2022-09-07T18:00:42 +Screened Patients,Declined - Compensation insufficient,2,2022-09-07T18:00:42 +Screened Patients,Declined - Specific study procedure,226,2022-09-07T18:00:42 +Screened Patients,Declined - Time related,757,2022-09-07T18:00:42 +Screened Patients,Declined - No reason provided,656,2022-09-07T18:00:42 +Screened Patients,Consented Patients,467,2022-09-07T18:00:42 +Consented Patients,Withdrawl Prior to Surgery - Subject chose to discontinue the study,14,2022-09-07T18:00:42 +Consented Patients,Withdrawl Prior to Surgery - Site PI chose to discontinue subject participation,25,2022-09-07T18:00:42 +Consented Patients,"Withdrawl Prior to Surgery - Subject is lost to follow-up, unable to locate",2,2022-09-07T18:00:42 +Consented Patients,Patients Reaching Baseline,405,2022-09-07T18:00:42 +Patients Reaching Baseline,Patients With Surgery,391,2022-09-07T18:00:42 +Patients With Surgery,Early Terminations - Subject chose to discontinue the study,4,2022-09-07T18:00:42 +Patients With Surgery,"Early Terminations - Subject is lost to follow-up, unable to locate",2,2022-09-07T18:00:42 +Patients With Surgery,Patients Reaching Week 6,365,2022-09-07T18:00:42 +Patients Reaching Week 6,Early Terminations - Subject chose to discontinue the study,1,2022-09-07T18:00:42 +Patients Reaching Week 6,Patients Reaching Month 3,321,2022-09-07T18:00:42 +Reaching Month 3,"Early Terminations - Subject is lost to follow-up, unable to locate",3,2022-09-07T18:00:42 +Patients Reaching Month 3,Patients Reaching Month 6,237,2022-09-07T18:00:42 diff --git a/datastore/src/data/consort/consort-data-2-latest.csv b/datastore/src/data/consort/consort-data-2-latest.csv new file mode 100644 index 0000000..dd13594 --- /dev/null +++ b/datastore/src/data/consort/consort-data-2-latest.csv @@ -0,0 +1,19 @@ +Screened Patients,Declined - Not interested in research,239,2022-09-07T18:01:25 +Screened Patients,Declined - COVID-related,9,2022-09-07T18:01:25 +Screened Patients,Declined - Compensation insufficient,2,2022-09-07T18:01:25 +Screened Patients,Declined - Specific study procedure,226,2022-09-07T18:01:25 +Screened Patients,Declined - Time related,757,2022-09-07T18:01:25 +Screened Patients,Declined - No reason provided,656,2022-09-07T18:01:25 +Screened Patients,Consented Patients,467,2022-09-07T18:01:25 +Consented Patients,Withdrawl Prior to Surgery - Subject chose to discontinue the study,14,2022-09-07T18:01:25 +Consented Patients,Withdrawl Prior to Surgery - Site PI chose to discontinue subject participation,25,2022-09-07T18:01:25 +Consented Patients,"Withdrawl Prior to Surgery - Subject is lost to follow-up, unable to locate",2,2022-09-07T18:01:25 +Consented Patients,Patients Reaching Baseline,405,2022-09-07T18:01:25 +Patients Reaching Baseline,Patients With Surgery,391,2022-09-07T18:01:25 +Patients With Surgery,Early Terminations - Subject chose to discontinue the study,4,2022-09-07T18:01:25 +Patients With Surgery,"Early Terminations - Subject is lost to follow-up, unable to locate",2,2022-09-07T18:01:25 +Patients With Surgery,Patients Reaching Week 6,365,2022-09-07T18:01:25 +Patients Reaching Week 6,Early Terminations - Subject chose to discontinue the study,1,2022-09-07T18:01:25 +Patients Reaching Week 6,Patients Reaching Month 3,321,2022-09-07T18:01:25 +Reaching Month 3,"Early Terminations - Subject is lost to follow-up, unable to locate",3,2022-09-07T18:01:25 +Patients Reaching Month 3,Patients Reaching Month 6,237,2022-09-07T18:01:25 diff --git a/datastore/src/data/imaging/imaging-log-latest.csv b/datastore/src/data/imaging/imaging-log-latest.csv new file mode 100644 index 0000000..fa37050 --- /dev/null +++ b/datastore/src/data/imaging/imaging-log-latest.csv @@ -0,0 +1,594 @@ +site,subject_id,visit,T1 Indicated,T1 Received,DWI Indicated,DWI Received,fMRI Individualized Pressure Indicated,fMRI Individualized Pressure Received,fMRI Standard Pressure Indicated,fMRI Standard Pressure Received,1st Resting State Indicated,1st Resting State Received,2nd Resting State Indicated,2nd Resting State Received,fMRI T1 Tech Rating,Cuff1 QST Pressure,Cuff1 Recalibrated Pressure,Cuff1 Applied Pressure,dicom,bids,bids_validation,fmriprep_anat,fmriprep_cuff,fmriprep_rest,mriqc_anat,mriqc_cuff,mriqc_rest,qsiprep,cat12,acquisition_week,Surgical site pain rest,Body pain rest,Surgical site pain after first scan,Body pain after first scan,Cuff pain after first scan,Cuff pain cuff1 beginning,Cuff pain cuff1 middle,Cuff pain cuff1 end,Cuff pain cuff2 beginning,Cuff pain cuff2 middle,Cuff pain cuff2 end,Cuff pain rest beginning,Cuff pain rest middle,Cuff pain rest end,Surgical site pain after last scan,Body pain after last scan,Cuff contraindicated,Surgery Week +UI,10003,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2021-03-29,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,,,,0.0,0.0,0.0,0.0,2.0,0,2021-04-19 +UI,10003,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,70,,70,1,1,1,1,1,1,1,1,1,1,1,2021-07-19,0.0,1.5,0.0,2.0,0.0,2.0,3.0,3.0,,,,0.0,0.0,0.0,0.0,4.0,0,2021-04-19 +UI,10005,V1,1,1,0,0,0,0,0,0,0,0,0,0,2,190,,190,1,1,1,1,na,na,1,na,na,na,1,2021-04-05,,,,,,,,,,,,,,,,,0,2021-04-12 +UI,10008,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-03-29,0.0,1.0,0.0,4.0,0.0,4.0,5.0,6.0,,,,1.0,3.0,4.0,1.0,4.0,0,2021-04-12 +UI,10008,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,75,,75,1,1,1,1,1,1,1,1,1,1,1,2021-07-19,5.0,6.0,0.0,6.0,0.0,3.0,0.0,1.0,,,,2.0,0.0,0.0,2.0,6.0,0,2021-04-12 +UI,10009,V1,1,1,0,0,0,0,0,0,0,0,0,0,3,85,,85,1,1,1,1,na,na,1,na,na,na,1,2021-04-05,,,,,,,,,,,,,,,,,0, +UI,10010,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-04-12,1.0,0.0,1.0,0.0,0.0,3.0,6.0,7.0,4.5,4.0,3.5,0.0,0.0,0.0,1.0,0.0,1,2021-04-19 +UI,10010,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,70,80,80,1,1,1,1,1,1,1,1,1,1,1,2021-07-19,0.0,0.0,0.0,0.0,0.0,5.0,4.0,3.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-04-19 +UI,10011,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,155,,155,1,1,1,1,1,1,1,1,1,1,1,2021-04-05,1.5,0.0,1.0,0.0,0.0,9.0,8.5,8.5,9.0,6.0,3.0,0.0,0.0,0.0,0.5,0.0,1,2021-04-19 +UI,10011,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,175,,175,1,1,1,1,1,1,1,1,1,1,1,2021-07-26,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2021-04-19 +UI,10013,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,60,,60,1,1,1,1,1,1,1,1,1,1,1,2021-04-19,0.0,0.0,0.0,0.0,6.0,4.0,5.0,5.5,,,,0.0,0.0,0.0,0.0,0.0,0,2021-05-10 +UI,10013,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,90,110,110,1,1,1,1,1,1,1,1,1,1,1,2021-08-09,0.0,0.0,0.0,0.0,0.0,0.0,6.0,8.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-05-10 +UI,10014,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,60,,60,1,1,1,1,1,1,1,1,1,1,1,2021-05-03,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,,,,0.0,0.0,0.0,0.0,4.0,0,2021-05-03 +UI,10014,V3,1,1,1,1,0,0,0,0,0,0,0,0,3,60,50,50,1,1,1,1,na,na,1,na,na,1,1,2021-08-09,,,,,,,,,,,,,,,,,0,2021-05-03 +UI,10015,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,150,115,115,1,1,1,1,1,1,1,1,1,1,1,2021-04-19,3.0,3.0,3.0,4.0,4.0,6.0,7.0,7.0,,,,6.0,6.0,6.0,0.0,4.0,0,2021-05-17 +UI,10015,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,140,95,95,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,0.0,4.0,0.0,0.0,0.0,4.0,3.0,3.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-05-17 +UI,10017,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,91,,91,1,1,1,1,1,1,1,1,1,1,1,2021-04-19,5.0,6.0,8.0,8.0,4.0,10.0,6.0,3.0,,,,7.0,4.5,6.5,7.0,8.0,0,2021-05-03 +UI,10020,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,120,115,115,1,1,1,1,1,1,1,1,1,1,1,2021-04-26,0.0,2.0,0.0,2.0,0.0,4.0,5.0,5.0,,,,0.0,0.0,0.0,2.0,3.0,0,2021-05-03 +UI,10023,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,180,135,135,1,1,1,1,1,1,1,1,1,1,1,2021-05-17,0.0,1.0,0.0,1.0,0.0,6.0,6.5,6.0,5.0,6.0,6.5,2.0,4.0,1.0,0.0,3.0,1,2021-06-14 +UI,10023,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,0.0,0.0,0.0,1.0,0.0,1.0,5.0,7.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-06-14 +UI,10024,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2021-05-31,4.0,1.0,2.0,2.0,1.0,5.0,6.0,7.0,,,,2.0,2.0,2.0,3.0,2.0,0,2021-06-14 +UI,10024,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-01,0.0,2.0,0.0,2.0,0.0,,,,,,,0.0,0.0,0.0,0.0,2.0,1,2021-06-14 +UI,10026,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-05-17,5.0,5.0,5.0,6.0,3.0,4.0,6.0,8.0,,,,3.0,3.0,3.0,4.0,7.0,0,2021-06-07 +UI,10028,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2021-05-24,0.0,0.0,0.0,0.0,0.0,4.0,3.0,5.0,,,,0.0,0.0,0.0,0.0,1.0,0,2021-06-07 +UI,10028,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,70,80,80,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,1.0,0.0,3.0,0.0,0.0,4.5,4.5,4.5,,,,0.0,0.0,0.0,5.0,0.0,0,2021-06-07 +UI,10029,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-05-31,0.0,1.0,0.0,1.0,0.0,4.0,4.0,4.0,,,,0.0,0.0,0.0,0.0,2.0,0,2021-08-16 +UI,10030,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,170,165,165,1,1,1,1,1,1,1,1,1,1,1,2021-05-17,0.0,0.0,0.0,0.0,0.0,4.0,4.0,5.0,3.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-05-17 +UI,10030,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,110,,110,1,1,1,1,1,1,1,1,1,1,1,2021-08-16,1.0,0.0,0.0,0.0,0.0,6.0,5.0,2.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-05-17 +UI,10031,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,115,85,85,1,1,1,1,1,1,1,1,1,1,1,2021-05-31,0.0,2.0,0.0,2.5,0.0,3.0,3.0,3.5,,,,0.0,0.0,0.0,0.0,3.0,0,2021-06-07 +UI,10031,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,125,,125,1,1,1,1,1,1,1,1,1,1,1,2021-09-20,0.0,1.0,0.0,2.0,0.0,5.0,3.0,2.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,1,2021-06-07 +UI,10032,V1,1,1,1,1,1,1,0,0,1,1,0,0,2,140,120,120,1,1,1,1,1,1,1,1,1,1,1,2021-05-24,4.0,4.0,7.0,6.0,1.0,1.0,4.0,6.5,,,,,,,,,0,2021-06-07 +UI,10032,V3,1,1,1,1,1,1,1,1,1,1,0,0,2,120,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-09-13,3.0,4.0,7.0,7.0,0.0,3.0,6.0,7.0,2.0,4.0,7.5,,,,,,0,2021-06-07 +UI,10033,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,60,,60,1,1,1,1,1,1,1,1,1,1,1,2021-06-14,5.0,7.0,4.0,6.0,3.0,4.0,5.0,5.0,,,,3.0,3.0,3.0,3.0,6.0,0,2021-06-28 +UI,10033,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,60,,60,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,2.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,,,,0.0,0.0,0.0,2.0,3.0,0,2021-06-28 +UI,10034,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,140,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-06-07,0.0,0.0,0.0,0.0,0.0,2.0,3.0,3.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-06-28 +UI,10034,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,120,80,80,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,2.0,0.0,3.5,0.0,4.0,5.0,5.0,,,,0.0,0.0,0.0,0.0,3.0,0,2021-06-28 +UI,10035,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,92,,92,1,1,1,1,1,1,1,1,1,1,1,2021-05-24,0.0,2.0,1.0,2.0,0.0,3.0,3.5,3.0,,,,0.0,0.0,0.0,0.0,1.5,0,2021-05-31 +UI,10035,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,130,130,1,1,1,1,1,1,1,1,1,1,1,2021-09-06,1.0,0.0,0.0,0.0,0.0,4.0,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1,2021-05-31 +UC,10036,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-06-21,6.0,3.0,2.0,3.0,5.0,2.0,6.0,5.0,2.0,5.0,8.0,2.0,4.0,6.0,7.0,5.0,1,2021-06-28 +UC,10036,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,0.0,0.0,0.0,0.0,1.0,2.5,4.0,2.0,6.0,6.0,2.0,3.0,4.5,0.0,0.0,1,2021-06-28 +UI,10037,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,65,75,75,1,1,1,1,1,1,1,1,1,1,1,2021-06-07,0.0,0.0,0.0,0.0,0.0,6.0,7.0,9.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-06-07 +UI,10037,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,125,,125,1,1,1,1,1,1,1,1,1,1,1,2021-09-20,0.0,0.0,0.0,0.0,0.0,5.0,6.0,6.0,5.0,6.0,7.0,0.0,0.0,0.0,0.0,0.0,1,2021-06-07 +UI,10038,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2021-06-07,0.0,0.0,0.0,2.0,0.0,3.0,2.0,2.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-06-07 +UI,10038,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,95,,95,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,2.0,0.0,2.0,0.0,1.5,0.0,5.0,8.0,,,,3.0,5.0,3.0,0.0,0.0,0,2021-06-07 +UC,10040,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,1,1,1,1,1,1,1,2021-08-09,5.0,7.0,,,0.0,5.0,5.0,5.0,7.0,7.0,7.0,5.0,5.0,5.0,5.0,2.0,1,2021-08-16 +UI,10041,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,1,1,1,1,1,1,1,2021-06-14,0.5,0.5,0.5,0.5,0.5,4.0,4.0,5.0,2.0,3.0,4.0,0.5,1.0,1.0,0.0,1.0,1,2021-06-28 +UI,10041,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,170,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,1.0,0.0,1.0,0.0,5.0,4.0,4.5,3.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1,2021-06-28 +NS,10042,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,311,,311,1,1,1,1,1,1,1,1,1,1,1,2021-06-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-06-21 +UI,10044,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-06-28,0.0,0.0,0.0,0.0,0.0,5.0,4.0,4.0,5.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2021-06-28 +UI,10044,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,130,120,120,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,1.0,0.0,0.0,0.0,0.0,4.0,5.0,3.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-06-28 +UI,10045,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,145,170,170,1,1,1,1,1,1,1,1,1,1,1,2021-06-14,5.0,0.0,5.0,0.0,0.0,3.0,3.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,5.0,0.0,1,2021-06-28 +UI,10045,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,190,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-06-28 +NS,10047,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,280,290,290,1,1,1,1,1,1,1,1,1,1,1,2021-06-28,0.0,0.0,0.0,0.0,0.0,4.0,4.0,4.5,2.5,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-07-05 +NS,10047,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,210,220,220,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,0.0,0.0,0.0,0.0,4.0,4.0,4.0,1.5,1.5,1.5,0.0,0.0,0.0,0.5,0.0,1,2021-07-05 +UC,10049,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,0.0,0.0,0.0,0.0,0.0,3.5,4.0,4.0,4.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-09 +UC,10049,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,0.0,0.0,3.5,4.0,4.0,2.5,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-09 +NS,10050,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,271,,271,1,1,1,1,1,1,1,1,1,1,1,2021-06-21,0.0,0.0,0.0,0.0,0.0,4.0,5.0,5.5,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-06-28 +UI,10052,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,150,160,160,1,1,1,1,1,1,1,1,1,1,1,2021-06-28,0.0,0.0,0.0,0.0,0.0,4.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-07-12 +UI,10052,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,140,,140,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,0.0,2.0,0.0,2.0,0.0,0.0,2.0,5.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,1,2021-07-12 +NS,10053,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,170.0,190,190,1,1,1,1,1,1,1,1,1,1,1,2021-06-21,0.0,0.0,0.0,0.0,0.0,6.0,6.0,6.0,4.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-06-28 +NS,10054,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,211,,211,1,1,1,1,1,1,1,1,1,1,1,2021-06-21,0.0,0.0,0.0,0.5,0.0,3.5,5.0,5.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.5,1,2021-06-28 +NS,10054,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,240,260,260,1,1,1,1,1,1,1,1,1,1,1,2021-09-20,0.0,0.0,0.0,0.0,0.0,3.5,4.5,5.0,2.0,1.5,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-06-28 +UC,10055,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-08-02,0.0,7.0,0.0,6.0,0.0,4.0,6.0,6.0,3.0,4.0,4.0,3.0,1.0,0.0,0.0,5.0,1,2021-08-02 +UI,10056,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,115,130,130,1,1,1,1,1,1,1,1,1,1,1,2021-07-05,4.0,1.0,4.0,1.0,2.0,6.0,4.0,7.0,2.0,4.0,6.0,2.0,2.0,2.0,2.0,2.0,1,2021-07-12 +UI,10056,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,3.0,2.0,3.0,3.0,3.0,5.0,3.0,2.0,,,,2.0,2.0,2.0,4.0,4.0,0,2021-07-12 +UI,10057,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-02-07,0.0,0.5,0.0,0.5,0.0,1.5,2.0,2.0,0.5,1.0,1.5,0.0,0.0,0.0,0.0,0.5,1,2022-02-07 +UI,10057,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,180,115,115,1,1,1,1,1,1,1,1,1,1,1,2022-06-06,0.0,0.0,0.0,0.0,0.0,3.0,2.5,2.5,,,,0.0,1.0,0.0,0.5,0.0,0,2022-02-07 +UC,10058,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,3.0,7.0,3.0,7.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,6.0,8.0,1,2021-07-26 +UC,10058,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,4.5,3.0,4.0,4.0,4.0,0.0,3.0,2.0,4.0,3.0,4.0,3.0,2.0,2.0,6.0,0.0,1,2021-07-26 +NS,10059,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,111,160,160,1,1,1,1,1,1,1,1,1,1,1,2021-07-05,0.0,0.0,0.0,0.0,0.0,4.5,4.5,4.5,2.0,4.0,4.5,0.0,0.0,0.0,0.0,0.0,1,2021-07-12 +NS,10059,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,110,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,1.0,1.0,0.0,0.0,0.0,4.0,5.0,5.0,5.0,4.0,4.0,0.0,0.0,0.0,0.0,2.0,1,2021-07-12 +NS,10060,V1,1,1,1,1,0,1,1,1,1,1,1,1,3,190,,190,1,1,1,1,na,1,1,na,1,1,1,2021-07-12,0.0,3.0,0.0,3.0,0.0,4.0,6.5,6.5,3.0,5.0,6.0,0.0,0.0,0.0,0.0,2.0,0,2021-07-12 +NS,10060,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,170,120,120,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,3.0,0.0,3.0,0.0,1.0,2.0,3.0,1.0,1.5,1.5,0.0,0.0,0.0,0.0,2.0,1,2021-07-12 +NS,10061,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80.0,,80.0,1,1,1,1,1,1,1,1,1,1,1,2021-07-05,0.0,1.0,1.0,1.0,0.0,4.0,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1,2021-07-12 +NS,10061,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,0.0,0.0,0.0,0.0,0.0,5.0,6.0,6.0,4.0,5.0,6.0,2.0,1.0,1.0,0.0,0.0,1,2021-07-12 +UI,10062,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,190,,190,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,0.0,2.5,0.0,0.0,0.0,8.0,6.0,7.0,7.0,4.0,3.0,6.5,4.0,3.0,4.0,4.5,1,2021-07-26 +UI,10062,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,0.0,0.0,2.5,3.5,5.0,4.0,2.0,4.0,0.0,0.0,0.0,2.0,0.0,1,2021-07-26 +UI,10063,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,105,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,0.0,0.0,0.0,0.0,0.0,5.0,4.0,4.0,,,,0.0,0.0,0.0,0.0,1.0,0,2021-07-26 +UI,10063,V3,1,1,1,1,1,1,0,0,1,1,0,0,2,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,1.0,1.0,1.0,1.0,0.0,4.0,5.0,3.0,,,,,,,0.0,0.0,0,2021-07-26 +UC,10064,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,135,,135,1,1,1,1,1,1,1,1,1,1,1,2021-07-19,0.0,3.0,3.0,4.0,0.0,4.0,4.0,4.5,4.0,3.5,3.5,0.0,0.0,0.0,4.0,0.0,1,2021-08-16 +UC,10064,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-11-08,2.0,3.5,2.0,2.0,0.0,0.0,2.0,4.0,2.5,4.0,5.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-16 +UC,10066,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2021-08-02,0.0,4.0,0.0,0.0,0.0,3.5,3.5,3.5,5.0,5.0,0.0,,,,,,0,2021-08-09 +UC,10067,V1,1,1,1,1,0,0,0,0,1,1,0,0,,145,,145,1,1,1,1,na,1,1,na,1,1,1,2021-07-12,5.0,10.0,,,,,,,,,,,,,,,0,2021-07-19 +UC,10067,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.0,6.0,2.5,6.0,0.0,0.0,2.0,2.0,2.0,4.0,7.0,0.0,0.0,0.0,0.0,7.5,1,2021-07-19 +UC,10068,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,220,,220,1,1,1,1,1,1,1,1,1,1,1,2021-11-08,0.0,0.0,0.0,0.0,1.0,3.0,2.0,1.0,1.0,2.0,3.0,0.0,1.0,2.0,0.0,2.0,1,2021-07-12 +NS,10070,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,179,210,210,1,1,1,1,1,1,1,1,1,1,1,2021-07-05,0.0,0.0,0.0,0.0,0.0,1.5,4.5,4.5,1.0,1.0,1.5,0.0,0.0,0.0,1.0,0.0,1,2021-07-12 +NS,10070,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,0.5,0.0,0.0,0.0,4.0,6.5,7.0,3.0,4.0,3.5,0.0,0.0,0.0,0.0,0.0,1,2021-07-12 +NS,10071,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,0.0,0.0,0.0,2.0,0.0,2.0,5.0,4.0,3.0,7.0,8.0,0.0,0.0,0.0,0.0,0.0,1,2021-07-19 +NS,10071,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,170,170,1,1,1,1,1,1,1,1,1,1,1,2021-11-08,0.0,3.0,0.0,3.0,0.0,1.0,3.0,2.0,1.0,3.0,1.0,1.0,2.0,1.0,0.0,1.0,1,2021-07-19 +UI,10072,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,0.0,0.0,0.0,0.0,0.0,6.0,5.0,4.0,4.0,5.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-02 +UI,10072,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,150,165,165,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.0,0.0,0.0,0.0,0.0,5.0,6.0,5.0,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-02 +NS,10073,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,210,,210,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,5.0,5.0,4.0,6.0,0.0,7.0,7.0,6.0,2.0,3.0,2.0,0.0,0.0,0.0,3.0,7.0,1,2021-07-19 +NS,10073,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,0,1,1,1,2021-10-25,1.0,5.0,1.0,4.0,0.0,4.0,5.0,5.0,3.0,3.0,3.0,0.0,0.0,0.0,1.0,5.0,1,2021-07-19 +NS,10074,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-07-26,0.0,3.0,0.0,3.0,0.0,,,,,,,,,,0.0,2.5,1,2021-08-02 +NS,10075,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-07-19,0.0,2.0,0.0,3.0,0.0,1.0,5.0,9.0,1.0,4.0,6.0,0.0,0.0,0.0,0.0,3.0,1,2021-08-02 +NS,10075,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,170,,170,1,1,1,1,1,1,1,1,1,1,1,2021-11-08,0.5,1.0,0.5,2.0,0.0,0.5,3.0,5.5,0.5,2.0,4.0,0.0,0.0,0.0,0.0,1.0,1,2021-08-02 +NS,10076,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,140,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-07-26,4.0,1.0,3.0,1.0,0.0,7.0,8.5,9.5,5.0,5.0,5.0,0.0,0.0,0.0,5.0,0.0,1,2021-08-02 +NS,10076,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-11-22,1.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-02 +NS,10077,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,1,1,2021-07-26,7.0,8.0,7.0,9.0,3.0,3.0,4.0,5.0,5.0,6.0,7.0,5.0,6.0,8.0,2.0,9.5,1,2021-07-26 +NS,10077,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,5.0,7.0,3.0,7.0,6.0,5.0,5.0,6.0,4.0,4.0,7.0,4.0,4.0,6.0,5.0,7.0,1,2021-07-26 +NS,10080,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,,180,1,1,1,1,1,1,1,1,1,1,1,2021-07-19,0.0,1.0,0.0,2.0,0.0,1.0,4.0,6.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,4.0,1,2021-08-02 +NS,10080,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,230,210,210,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.0,0.0,0.0,0.0,0.0,6.5,8.0,9.0,4.0,6.0,8.0,1.0,1.0,1.0,0.0,2.0,1,2021-08-02 +UI,10082,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-08-02,1.0,0.0,0.0,1.0,0.0,4.0,6.0,10.0,3.0,5.0,7.0,3.0,5.0,7.0,0.0,1.0,1,2021-08-16 +UI,10082,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-15,2.0,6.0,2.0,5.0,0.0,,,,,,,0.0,0.0,0.0,1.0,5.0,1,2021-08-16 +NS,10085,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,120,120,1,1,1,1,1,1,1,1,1,1,1,2021-07-26,0.0,1.0,0.0,1.0,0.0,8.0,7.0,8.0,6.0,8.0,7.5,0.0,0.0,0.0,1.0,1.0,1,2021-08-02 +NS,10085,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,1.0,0.0,5.0,4.0,3.0,4.0,6.0,5.0,0.0,0.0,0.0,0.0,1.0,1,2021-08-02 +NS,10086,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-08-02,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-08-09 +UI,10087,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,70,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-08-02,6.0,5.5,6.0,2.0,4.0,4.5,4.5,4.5,,,,0.0,0.0,0.0,7.5,2.5,0,2021-08-16 +UI,10087,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,140,175,175,1,1,1,1,1,1,1,1,1,1,1,2021-12-13,0.0,3.0,0.0,2.0,0.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,1.0,1.0,1.0,3.0,1,2021-08-16 +UI,10088,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,60,,60,1,1,1,1,1,1,1,1,1,1,1,2021-08-16,0.0,2.0,0.0,4.0,4.0,1.0,3.5,4.0,,,,3.0,3.0,3.0,0.0,5.0,0,2021-08-16 +UI,10088,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-29,0.0,4.0,0.0,3.0,0.0,,,,,,,0.0,0.0,0.0,0.0,3.0,1,2021-08-16 +UI,10089,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-08-02,6.5,5.0,6.5,0.0,0.0,,,,,,,,,,,,1,2021-08-09 +UI,10089,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-22,5.0,0.0,0.0,5.0,,,,,,,,,,,6.0,7.5,1,2021-08-09 +UI,10090,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,65,80,80,1,1,1,1,1,1,1,1,1,1,1,2021-08-02,0.0,0.5,0.0,0.5,0.0,1.0,1.0,0.5,,,,0.5,0.5,0.5,0.0,0.0,0,2021-08-09 +UI,10090,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,130,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,0.0,0.0,4.0,4.5,5.0,3.0,3.0,3.5,0.5,0.5,0.5,0.0,0.0,1,2021-08-09 +NS,10092,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,170,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-08-02,1.0,3.0,1.0,4.0,0.0,3.0,5.0,6.5,3.0,3.0,3.0,1.0,1.0,1.0,1.0,3.0,1,2021-08-02 +NS,10092,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,190,200,200,1,1,1,1,0,1,1,1,1,1,1,2021-11-29,0.0,1.0,0.0,2.0,0.0,4.0,6.0,6.0,3.0,3.0,3.0,1.0,1.0,1.0,0.0,1.0,1,2021-08-02 +NS,10093,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,240,280,280,1,1,1,1,1,1,1,1,1,1,1,2021-08-09,0.0,0.0,0.0,0.0,0.0,3.0,3.5,3.5,0.0,1.5,1.5,0.0,0.0,0.0,1.0,0.0,1,2021-08-16 +NS,10093,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,170,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,0.0,0.0,0.0,0.0,0.0,2.5,3.0,3.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-16 +NS,10094,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-08-02,1.0,0.0,1.0,2.0,,,,,,,,,,,1.0,2.0,1,2021-08-09 +NS,10095,V1,1,1,1,1,0,1,1,1,1,1,1,1,3,210,220,220,1,1,1,1,na,1,1,na,1,1,1,2021-08-02,0.0,0.0,0.0,0.0,0.0,7.0,8.0,,4.5,4.5,5.0,0.0,0.0,0.0,1.0,0.0,0,2021-08-16 +NS,10095,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,170,170,1,1,1,1,1,1,1,1,1,1,1,2021-11-22,0.0,0.0,0.0,0.0,0.0,3.0,5.0,6.0,2.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-16 +UI,10097,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,110,85,85,1,1,1,1,1,1,1,1,1,1,1,2021-08-09,0.0,1.0,1.0,1.0,0.0,4.0,5.0,6.0,,,,1.0,1.0,0.0,1.0,1.0,0,2021-10-18 +NS,10100,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-08-09,0.0,0.0,3.0,0.0,,,,,,,,,,,3.0,3.0,1,2021-08-16 +NS,10101,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-08-16,0.0,1.0,1.0,1.0,0.5,0.5,4.0,8.0,1.5,4.5,8.0,2.0,2.0,2.0,2.0,2.0,1,2021-08-30 +NS,10101,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-12-06,1.0,3.0,1.0,3.0,0.0,,,,,,,0.0,0.0,0.0,1.0,3.0,1,2021-08-30 +UC,10102,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2021-08-23,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,2.0,1,2021-09-06 +UC,10102,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-09-06 +UC,10103,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-11 +UC,10103,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,0,1,1,1,1,1,1,2022-02-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-11 +NS,10104,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-08-16,2.0,0.5,2.5,2.0,2.5,,,,,,,,,,3.0,1.5,1,2021-09-06 +NS,10104,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-12-13,0.0,2.0,0.0,3.0,0.0,,,,,,,0.0,0.0,0.0,1.0,3.0,1,2021-09-06 +NS,10105,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-08-16,0.0,0.5,0.0,0.0,,,,,,,,,,,0.0,0.0,1,2021-08-30 +NS,10105,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-12-06,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-08-30 +UI,10106,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-08-23,2.0,0.0,0.0,0.0,0.0,1.5,1.0,0.5,0.5,0.5,0.0,,,,0.0,1.0,0,2021-09-06 +UI,10106,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,130,135,135,1,1,1,1,1,1,1,1,1,1,1,2021-12-20,0.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-09-06 +UI,10107,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,100,85,85,1,1,1,1,1,1,1,1,1,1,1,2021-08-16,0.0,0.0,0.0,4.0,0.0,6.0,7.0,6.0,,,,0.0,0.0,0.0,0.0,4.0,0,2021-09-13 +UI,10107,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-12-13,0.0,0.0,0.0,0.0,0.0,5.0,7.0,7.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-09-13 +UI,10108,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,110,85,85,1,1,1,1,1,1,1,1,1,1,1,2021-08-16,2.0,0.0,1.0,0.0,0.0,6.0,4.0,1.0,,,,4.0,0.0,0.0,1.0,8.0,0,2021-10-04 +UI,10108,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,155,155,1,1,1,1,1,1,1,1,1,1,1,2022-01-10,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.5,1.0,2.0,0.0,0.0,0.0,4.0,0.0,1,2021-10-04 +UI,10109,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,60,95,95,1,1,1,1,1,1,1,1,1,1,1,2021-08-30,3.0,2.0,4.0,2.0,1.0,2.0,4.0,3.0,,,,1.0,1.0,1.0,1.0,2.0,0,2021-09-13 +UI,10109,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,80,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,0.0,0.0,0.0,0.0,0.0,3.0,3.0,5.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-09-13 +UI,10110,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2021-09-20,0.0,0.0,0.0,0.0,0.0,4.0,4.5,4.5,3.0,3.5,3.5,0.0,0.0,0.0,0.0,0.0,1,2021-10-11 +UI,10110,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-03-07,0.0,0.0,0.0,0.0,0.0,4.0,5.0,4.5,3.0,3.0,4.0,0.0,0.0,0.0,1.0,1.0,1,2021-10-11 +NS,10111,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-08-30,0.0,2.0,0.0,0.0,0.0,2.5,3.0,3.0,5.0,4.0,4.5,1.5,0.0,0.0,0.0,1.5,1,2021-09-13 +NS,10112,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,134,110,110,1,1,1,1,1,1,1,1,1,1,1,2021-08-23,0.0,1.0,0.0,1.0,0.0,3.0,3.0,3.0,3.0,3.5,3.5,0.0,0.0,0.0,0.0,1.0,1,2021-09-13 +NS,10112,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-12-13,0.0,0.5,0.0,0.5,0.0,,,,,,,0.0,0.0,0.0,0.0,0.5,1,2021-09-13 +NS,10113,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,170,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-09-06,0.0,0.0,0.0,0.0,0.0,5.0,4.5,4.0,1.0,0.5,1.0,0.0,0.0,0.0,0.0,1.0,1,2021-09-13 +NS,10113,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,70,,70,1,1,1,0,na,0,1,na,1,1,1,2021-12-13,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,0,2021-09-13 +NS,10117,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,190,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-08-23,0.0,0.5,0.0,0.5,0.0,4.0,5.0,6.5,2.0,3.0,4.0,0.0,0.0,0.0,0.0,2.0,1,2021-08-30 +NS,10117,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,3.0,0.0,2.0,0.0,0.0,2.0,4.0,6.0,2.0,4.0,6.0,0.0,0.0,0.0,1.0,0.0,1,2021-08-30 +NS,10118,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,118,130,130,1,1,1,1,1,1,1,1,1,1,1,2021-08-30,0.0,1.0,0.0,0.0,0.0,4.5,4.0,4.0,3.0,2.5,2.0,0.5,0.5,0.5,0.0,1.0,1,2021-09-06 +UC,10119,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,5.0,0.0,5.0,0.0,0.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,7.0,1,2021-10-04 +UC,10120,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,250,,250,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-08 +UC,10120,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1,2021-11-08 +UI,10121,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,130,80,80,1,1,1,1,1,1,1,1,1,1,1,2021-08-30,0.0,5.0,0.0,5.0,0.0,1.0,2.0,5.0,,,,1.0,0.0,0.0,5.0,5.0,0,2021-09-06 +NS,10122,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,220,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-08-30,0.0,6.0,0.0,7.0,0.0,2.5,2.5,1.0,3.5,4.0,3.5,1.0,0.5,0.0,0.0,6.0,1,2021-09-13 +NS,10122,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2021-12-20,0.0,2.0,0.0,4.0,1.0,4.0,3.0,2.0,5.0,3.5,1.0,1.0,1.0,0.0,0.0,4.0,1,2021-09-13 +UI,10123,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2021-09-06,0.0,0.0,0.0,0.0,0.0,2.0,4.0,5.5,,,,0.0,0.0,0.0,0.0,0.0,0,2021-09-13 +UI,10123,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2021-12-20,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1,2021-09-13 +UI,10125,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,115,,115,1,1,1,1,1,1,1,1,1,1,1,2021-09-06,0.0,0.0,0.0,0.0,0.0,5.0,5.0,6.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-09-13 +UI,10125,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,140,,140,1,1,1,1,0,1,1,1,1,1,1,2021-12-13,2.0,0.0,2.0,0.0,0.0,4.0,5.0,5.0,3.0,4.0,5.0,0.0,0.0,0.0,0.0,0.0,1,2021-09-13 +UI,10126,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,100,70,70,1,1,1,1,1,1,1,1,1,1,1,2021-09-20,0.0,0.0,0.0,0.0,0.0,5.5,2.0,4.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-10-11 +UI,10127,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,105,,105,1,1,1,1,1,1,1,1,1,1,1,2021-09-13,0.0,0.0,0.0,0.0,0.0,4.0,5.0,5.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-09-13 +NS,10128,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-09-06,0.0,1.0,0.0,2.0,0.0,1.0,5.0,7.5,0.0,5.0,6.0,0.0,0.0,0.0,1.0,2.0,1,2021-09-20 +UI,10129,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-09-13,2.0,2.0,1.0,2.0,2.0,3.0,7.0,5.5,2.5,4.5,4.0,,,,,,0,2021-09-27 +UI,10129,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,1.0,3.0,1.0,3.0,2.0,3.0,7.0,5.0,3.0,6.0,5.0,2.5,2.0,1.5,1.0,3.5,1,2021-09-27 +UI,10130,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,80,110,110,1,1,1,1,1,1,1,1,1,1,1,2021-09-06,2.0,2.0,2.0,2.0,1.0,4.0,4.0,2.0,,,,2.0,2.0,2.0,2.0,2.0,0,2021-09-13 +UI,10130,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,2.0,2.0,2.0,2.0,0.0,4.0,4.0,4.0,,,,0.0,0.0,0.0,2.0,2.0,0,2021-09-13 +UC,10132,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-09-13,0.0,0.0,0.0,0.0,0.0,3.5,4.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-09-20 +UC,10133,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,155,,155,1,1,1,1,1,1,1,1,1,1,1,2021-09-06,0.0,0.0,0.0,1.0,0.0,4.0,4.5,4.5,3.5,3.5,3.5,1.5,1.5,1.5,0.0,0.0,1,2021-09-06 +UI,10134,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,40,,40,1,1,1,1,na,1,1,na,1,1,1,2021-09-13,5.0,5.0,5.0,5.0,0.0,,,,,,,0.0,0.0,0.0,5.0,6.0,0,2021-09-20 +UI,10134,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-01-03,5.0,5.0,5.0,5.0,0.0,,,,,,,0.0,0.0,0.0,3.0,3.0,1,2021-09-20 +UC,10135,V1,1,1,1,1,1,1,0,0,1,1,1,1,,90,,90,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,,,,,,,,,,,,0.0,0.0,0.0,6.0,7.0,0,2021-09-27 +NS,10137,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-09-20,1.0,3.0,1.0,3.0,0.0,,,,,,,0.0,0.0,0.0,1.0,4.0,1,2021-09-27 +NS,10138,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-09-13,1.0,1.0,1.0,1.0,1.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1,2021-09-20 +NS,10139,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2021-09-13,1.0,2.0,2.0,2.0,0.0,3.0,8.5,4.5,3.0,3.0,2.5,0.0,0.0,0.0,3.0,2.0,1,2021-09-27 +NS,10141,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,70,,70,1,1,1,1,na,1,1,na,1,1,1,2021-09-13,5.0,5.0,4.5,5.0,4.5,,,,,,,,,,6.0,6.0,0,2021-09-20 +UI,10144,V1,1,1,1,1,1,1,1,1,1,1,1,1,1,160,,160,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,0.0,0.0,2.0,1.0,2.0,5.0,6.0,7.0,3.0,4.5,6.0,1.0,2.0,2.0,0.0,0.0,1,2021-10-18 +UI,10144,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,150,150,1,1,1,1,1,1,1,1,1,1,1,2022-01-31,0.0,0.0,0.0,0.0,0.0,1.0,3.0,6.0,1.0,5.0,7.0,0.0,0.0,0.0,0.0,1.0,1,2021-10-18 +NS,10145,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-09-13,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-09-27 +UC,10147,V1,1,1,1,1,0,0,0,0,0,0,0,0,3,110,,110,1,1,1,1,na,na,1,na,na,1,1,2021-10-18,9.0,,,,,,,,,,,,,,,,0,2021-10-25 +UC,10147,V3,1,1,1,1,0,0,0,0,0,0,0,0,3,90,,90,1,1,1,1,na,na,1,na,na,1,1,2022-02-07,0.0,8.0,,,,,,,,,,,,,,,0,2021-10-25 +UI,10149,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,170,,170,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,0.0,0.0,0.0,0.0,0.0,3.5,3.5,2.5,2.0,1.5,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-04 +UI,10150,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,105,,105,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,0.0,0.0,1.0,0.0,4.0,2.0,2.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-10-18 +UI,10150,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,0.5,0.0,0.0,0.0,2.5,4.0,8.0,,,,2.0,5.0,7.0,0.0,1.5,0,2021-10-18 +NS,10151,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,220,220,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,0.0,1.0,0.0,1.0,0.0,3.0,6.0,8.0,3.0,5.0,7.0,0.0,0.0,0.0,0.5,0.5,1,2021-09-27 +UC,10153,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-11-22,8.0,0.0,5.0,0.0,0.0,3.0,2.5,2.5,1.0,1.0,1.0,0.0,0.0,0.0,5.0,0.0,1,2021-11-29 +UI,10154,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,0.0,0.0,0.0,0.0,2.5,3.0,2.0,0.5,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-17 +UI,10155,V1,1,1,1,1,1,1,0,0,1,1,0,0,2,110,90,90,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,6.0,6.0,8.5,9.0,7.0,10.0,9.0,10.0,,,,,,,,,0,2021-10-04 +UI,10156,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,0.0,0.0,2.0,2.0,2.0,5.0,6.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-10-11 +UI,10156,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,75,90,90,1,1,1,1,1,1,1,1,1,1,1,2022-01-31,1.0,2.0,0.0,1.0,1.0,6.0,8.0,7.0,,,,0.0,0.0,0.0,0.0,1.0,0,2021-10-11 +NS,10157,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,0.0,0.5,0.0,0.5,0.0,5.0,5.0,4.5,4.0,3.0,3.5,0.0,0.0,0.0,0.0,0.5,1,2021-10-04 +NS,10158,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-09-27,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,1.0,1.0,1,2021-10-18 +UI,10159,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,130,130,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,3.0,0.0,2.0,0.0,4.0,6.0,7.0,3.0,3.0,5.0,2.0,2.0,2.0,0.0,4.0,1,2021-10-25 +UI,10159,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2022-02-07,0.0,3.0,1.0,3.0,0.0,4.0,5.0,5.0,3.0,4.0,3.0,0.0,0.0,0.0,1.0,3.0,1,2021-10-25 +NS,10160,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,0.0,0.0,0.0,0.0,0.0,7.0,7.0,7.0,7.0,7.0,7.5,7.0,7.0,7.5,0.0,3.0,1,2021-10-04 +NS,10161,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-04,0.0,2.0,0.0,2.0,0.0,,,,,,,0.0,0.0,0.0,2.0,2.0,1,2021-10-11 +NS,10162,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,260,190,190,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,0.0,0.0,1.0,0.0,3.0,2.0,5.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,1.5,1,2021-10-04 +NS,10163,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,70,,70,1,1,1,1,na,1,1,na,1,1,1,2021-10-04,4.0,0.0,5.0,0.0,0.0,,,,,,,,,,5.0,0.0,0,2021-10-11 +NS,10165,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-04,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-10-11 +NS,10166,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,2.0,1.0,3.0,1.0,6.0,6.5,7.0,5.0,7.0,8.5,2.0,2.0,2.0,1.0,4.0,1,2021-10-25 +NS,10167,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,170,170,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,0.0,0.0,0.0,0.0,2.0,5.0,6.0,2.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,1,2021-10-18 +NS,10168,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,0.0,0.0,0.0,0.0,4.0,5.5,3.5,3.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-18 +UI,10169,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-03-07,7.0,0.0,8.0,5.0,0.0,,,,,,,0.0,0.0,0.0,9.0,4.0,1,2021-10-25 +NS,10170,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,,180,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.5,0.5,0.0,0.5,0.0,8.0,6.0,6.0,5.0,4.0,3.0,0.0,0.0,0.0,0.5,0.5,1,2021-11-01 +NS,10171,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-18,0.0,0.0,0.0,0.0,,,,,,,,,,,0.0,0.0,1,2021-11-01 +UI,10173,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,3.0,7.0,2.0,6.5,1.0,6.0,7.5,5.5,,,,1.0,0.5,1.0,3.0,9.0,0,2021-10-18 +UI,10173,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,70,82,82,1,1,1,1,1,1,1,1,1,1,1,2022-02-07,2.0,3.0,1.5,3.0,1.0,3.0,4.0,3.0,,,,0.0,0.0,0.0,2.5,3.5,0,2021-10-18 +UI,10174,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,2.0,0.0,0.0,0.0,3.0,4.0,4.0,2.0,2.0,2.5,0.0,0.0,0.0,0.0,0.0,1,2021-10-18 +UI,10174,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,180,190,190,1,1,1,1,1,1,1,1,1,1,1,2022-01-24,2.0,0.0,2.0,0.0,0.0,3.5,4.0,4.0,0.5,0.5,1.0,0.0,0.0,0.0,2.0,0.0,1,2021-10-18 +NS,10175,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,0.0,0.0,0.0,0.0,3.5,3.5,3.5,4.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-11 +NS,10177,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,130,130,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,1.5,0.0,0.5,0.0,3.0,3.0,3.0,2.5,2.5,2.5,0.0,0.0,0.0,0.0,1.0,1,2021-11-01 +NS,10179,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,,180,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,0.0,1.0,0.0,2.0,0.0,5.0,5.0,4.0,3.0,2.5,1.5,0.0,0.0,0.0,0.0,2.0,1,2021-10-25 +NS,10180,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,70,,70,1,1,1,1,na,1,1,na,1,1,1,2021-10-25,0.0,1.0,0.0,3.0,0.0,,,,,,,,,,0.0,2.0,0,2021-11-01 +NS,10182,V1,1,1,1,1,0,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,na,1,1,na,1,1,1,2021-10-25,0.0,0.0,0.0,0.0,0.0,7.0,,,0.0,5.0,5.5,0.0,0.0,0.0,1.5,2.0,0,2021-11-08 +NS,10182,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,0.0,0.0,0.0,0.0,0.0,2.0,3.0,4.0,2.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-08 +NS,10185,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,190,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.0,0.0,0.0,0.0,0.0,2.0,3.0,3.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-08 +NS,10185,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,190,190,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,0.0,0.0,0.0,0.0,0.0,0.0,3.0,6.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-08 +UI,10188,V1,1,1,1,1,1,1,0,0,1,1,0,0,2,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-10-11,10.0,9.0,10.0,9.0,0.0,4.0,6.0,8.0,8.0,,,,,,,,0,2022-04-04 +UI,10188,V3,1,1,1,1,0,0,0,0,1,1,0,0,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-07-04,9.0,5.0,10.0,7.0,,,,,,,,,,,,,1,2022-04-04 +UI,10189,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-25,3.0,6.0,3.0,6.0,4.0,,,,,,,,,,3.0,6.0,1,2021-10-25 +NS,10190,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-18,0.0,4.5,0.0,7.5,0.0,,,,,,,0.0,0.0,0.0,0.0,8.0,1,2021-10-25 +NS,10191,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,110,110,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,1.0,0.0,1.0,0.0,0.0,2.0,8.0,8.0,1.0,8.0,8.0,2.0,2.0,2.0,1.0,0.0,1,2021-11-01 +NS,10192,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,0.0,0.0,0.0,0.0,0.0,4.5,5.0,5.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-08 +NS,10192,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-08 +NS,10194,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,1,2021-11-15 +UI,10195,V1,1,1,1,1,0,0,0,0,1,1,0,0,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-18,0.0,0.0,1.0,3.0,,,,,,,,,,,,,1,2021-11-01 +UI,10196,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-08,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-11-15 +UI,10196,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-03-07,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-11-15 +NS,10197,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-18,3.0,1.0,3.0,0.0,,,,,,,,,,,2.5,0.5,1,2021-10-25 +NS,10198,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-08,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-11-15 +UI,10200,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,120,155,155,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.5,0.0,0.5,0.0,0.0,4.0,6.0,5.0,3.0,5.0,5.0,0.0,0.0,0.0,0.0,0.5,1,2021-11-08 +UI,10200,V3,1,1,1,1,1,1,1,1,1,1,0,0,2,140,190,190,1,1,1,1,1,1,1,1,1,1,1,2022-02-14,0.0,0.0,0.0,0.0,0.0,6.0,8.0,8.0,5.0,6.0,6.5,,,,,,0,2021-11-08 +UC,10201,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,9.0,8.0,7.0,9.0,6.0,9.0,7.0,6.0,9.0,7.0,6.0,9.0,7.0,6.0,8.0,7.0,1,2021-11-01 +NS,10202,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,2.0,3.0,1.0,3.0,0.0,1.0,3.0,6.0,2.0,5.0,7.5,,,,,,0,2021-11-22 +NS,10203,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,2.0,2.0,1.5,1.5,1.0,4.0,5.0,5.5,5.0,6.0,6.5,2.0,1.5,1.5,1.0,1.5,1,2021-11-01 +NS,10205,V1,0,0,0,0,0,0,0,0,0,0,1,1,3,,,,1,1,1,0,na,na,0,na,na,na,0,2021-11-08,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,1.5,1,2021-11-15 +NS,10205,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-02-14,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-11-15 +NS,10206,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,120,120,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,1.0,1.0,0.0,0.0,0.0,2.0,4.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,1.0,1,2021-11-01 +NS,10207,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,130,130,1,1,1,1,1,1,1,1,1,1,1,2021-11-08,0.0,0.0,0.0,0.0,0.0,3.0,4.0,5.0,3.0,4.0,5.0,0.0,2.0,1.0,0.5,1.0,1,2021-11-15 +UI,10209,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,1.0,2.0,1.0,2.0,0.0,4.0,4.5,5.0,,,,0.0,0.0,0.0,1.0,2.0,0,2021-12-13 +NS,10211,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,1.0,1.0,1.0,1.0,1.0,1.0,4.0,6.5,1.0,4.0,7.0,1.0,2.0,2.0,2.0,2.0,1,2021-11-15 +NS,10211,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,1.0,1.0,1.0,1.0,1.0,1.0,4.0,7.0,4.0,6.0,7.5,1.0,5.0,7.0,2.0,2.0,1,2021-11-15 +NS,10212,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,70,,70,1,1,1,1,na,1,1,na,1,1,1,2021-11-15,0.0,0.0,4.0,0.0,9.5,,,,,,,2.0,2.0,2.0,7.0,7.0,0,2021-12-06 +UI,10213,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,160,,160,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,4.0,0.0,4.0,0.0,0.0,1.5,2.0,2.0,0.0,3.0,3.0,0.0,0.0,0.0,3.0,0.0,1,2022-01-24 +UI,10213,V3,1,1,1,1,1,1,1,1,1,1,0,0,3,180,200,200,1,1,1,1,1,1,1,1,1,1,1,2022-05-09,0.0,0.0,0.0,0.0,0.0,1.5,1.5,1.5,0.0,0.0,0.0,,,,,,0,2022-01-24 +UI,10214,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,3.5,3.5,4.5,4.5,0.0,5.0,7.0,8.5,,,,0.0,0.0,0.0,3.5,3.5,0,2022-07-18 +NS,10215,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,160,160,1,1,1,1,1,1,1,1,1,1,1,2021-11-08,0.0,2.0,0.0,3.5,0.0,3.5,6.0,7.5,1.0,3.0,3.5,0.5,0.0,0.0,0.0,1.5,1,2021-11-15 +UI,10216,V1,1,1,1,1,0,0,0,0,1,1,0,0,1,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-08,7.0,5.0,0.0,0.0,0.0,,,,,,,,,,,,1,2021-11-15 +UI,10217,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-03-21,0.0,0.0,0.0,0.0,0.0,0.0,5.0,6.0,3.0,5.0,7.0,5.0,3.0,0.0,0.0,0.0,1,2021-11-22 +UI,10218,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,110,80,80,1,1,1,1,1,1,1,1,1,1,1,2021-11-22,2.0,1.0,2.0,2.0,0.0,1.0,1.0,1.0,,,,2.5,2.5,2.5,3.0,7.0,0,2021-11-29 +UI,10218,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,110,75,75,1,1,1,1,na,1,1,na,1,1,1,2022-03-14,0.0,0.0,0.0,2.0,0.0,,,,,,,0.0,0.0,0.0,1.0,0.0,0,2021-11-29 +UI,10219,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,140,150,150,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-22 +UI,10219,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,180,170,170,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,2.0,3.0,4.0,1.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-22 +NS,10220,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-22,0.0,1.0,1.0,1.5,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2021-11-29 +NS,10220,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,1,1,2022-03-07,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1,2021-11-29 +NS,10221,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,2.0,4.0,2.0,4.0,0.0,2.0,3.0,2.0,4.0,7.0,6.0,2.0,3.0,2.0,3.0,4.0,1,2021-11-29 +UI,10222,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-12-06,2.0,3.5,4.0,5.0,1.0,,,,,,,1.0,1.0,1.0,4.5,6.0,1,2021-12-06 +NS,10223,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,170,180,180,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.5,0.5,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-13 +NS,10223,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,110,120,120,1,1,1,1,1,1,1,1,1,1,1,2022-03-21,0.0,0.0,0.0,0.0,0.0,2.5,2.0,1.5,1.5,1.5,1.0,0.0,0.0,0.0,0.0,1.0,1,2021-12-13 +UI,10224,V1,1,1,1,1,1,1,1,1,1,1,0,0,2,180,120,120,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,0.0,0.0,0.0,0.0,0.0,3.0,2.0,1.0,3.0,4.0,4.0,,,,0.0,0.0,0,2021-12-06 +UI,10224,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,120,100,100,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,0.0,0.0,0.0,0.0,0.0,4.0,3.0,2.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-12-06 +NS,10231,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,130,130,1,1,1,0,0,0,1,1,1,1,1,2021-11-22,0.0,2.0,0.0,2.0,0.0,8.0,8.0,10.0,10.0,8.0,8.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-29 +UI,10232,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,60,70,70,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,5.0,0.0,5.0,0.0,0.0,4.0,0.0,5.0,,,,0.0,0.0,0.0,5.0,0.0,0,2021-12-06 +UI,10233,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,120,80,80,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,6.0,4.5,6.0,5.0,0.0,2.0,2.5,3.0,,,,0.0,0.0,0.0,5.5,4.0,0,2021-12-13 +UI,10233,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,100,115,115,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,4.5,4.5,4.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-12-13 +NS,10234,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,260,300,300,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,0.0,0.0,0.0,0.0,0.0,3.0,4.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-13 +NS,10234,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,300,290,290,1,1,1,1,1,1,1,1,1,1,1,2022-03-21,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-13 +UC,10235,V1,1,1,1,1,1,1,1,1,1,1,0,0,,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-12-20,2.0,0.0,0.0,0.0,0.0,3.5,3.5,3.5,3.5,3.5,3.5,,,,,,0,2022-03-14 +UI,10236,V1,1,1,1,1,1,1,1,1,1,1,0,0,2,160,180,180,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,3.0,1.0,6.0,2.5,0.0,7.5,6.0,8.0,1.5,1.0,3.5,,,,4.5,3.5,0,2021-12-13 +UC,10237,V1,1,1,1,1,1,1,1,1,1,1,1,1,,120,,120,1,1,1,1,1,1,1,1,1,1,1,2021-11-29,3.0,5.0,2.0,5.0,0.0,3.0,6.0,8.0,3.0,6.0,8.0,0.0,0.0,0.0,2.0,5.0,1,2021-12-27 +UC,10237,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,0,0,0,0,0,0,0,0,1,2022-04-04,1.0,3.0,1.0,3.0,0.0,6.0,5.0,3.0,7.0,6.0,5.0,3.0,2.0,3.0,2.0,3.0,1,2021-12-27 +NS,10238,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,60,,60,1,1,1,1,na,1,1,na,1,1,1,2021-11-29,0.5,0.5,0.5,0.5,0.0,,,,,,,,,,2.5,2.0,0,2021-12-06 +NS,10238,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,70,,70,1,1,1,1,1,1,1,1,1,0,1,2022-03-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.5,1,2021-12-06 +UC,10243,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,0.0,1.0,0.0,1.0,0.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-03 +UC,10244,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,0.0,0.0,0.0,0.0,5.0,8.0,8.0,5.0,6.0,6.0,0.0,0.0,0.0,0.0,6.0,1,2022-03-14 +UC,10244,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,80,,80,1,1,1,1,1,1,1,1,1,1,1,2022-06-27,0.0,2.0,0.0,3.0,3.0,6.0,7.0,4.0,8.0,9.0,6.0,5.0,6.0,5.0,0.0,4.0,1,2022-03-14 +UC,10245,V1,1,1,0,0,0,0,0,0,0,0,0,0,3,60,,60,1,1,1,1,na,na,1,na,na,na,1,2022-03-21,,,,,,,,,,,,,,,,,0,2022-03-21 +NS,10246,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,120,120,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,0.0,1.0,1.0,0.5,0.0,3.5,4.0,2.5,3.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-13 +NS,10246,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,100,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-03-28,0.0,0.0,0.0,0.0,0.0,0.0,5.0,8.0,0.0,5.0,7.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-13 +UI,10247,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,130,110,110,1,1,1,1,1,1,1,1,1,1,1,2021-12-13,3.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,,,,0.0,0.0,0.0,5.0,3.0,0,2021-12-13 +NS,10250,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,170,130,130,1,1,1,1,1,1,1,1,1,1,1,2021-12-20,3.0,4.5,2.0,2.0,1.0,4.0,5.5,7.5,2.0,2.5,3.5,1.0,1.5,1.5,1.0,5.0,1,2022-02-07 +NS,10250,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,170,,170,1,1,1,1,1,1,1,1,1,1,1,2022-06-06,1.0,2.0,2.0,3.0,0.0,4.0,6.0,8.0,5.0,6.0,6.0,1.0,2.0,2.0,0.0,2.0,1,2022-02-07 +UI,10255,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-12-20,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-03 +UI,10255,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-03 +NS,10257,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-12-20,0.0,4.0,0.0,3.0,0.0,,,,,,,0.0,0.0,0.0,0.0,1.0,1,2022-02-14 +NS,10257,V3,1,1,1,1,0,0,0,0,1,1,0,0,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-23,0.0,2.0,0.0,1.0,0.0,,,,,,,,,,,,1,2022-02-14 +NS,10258,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,,,,1,1,1,0,0,0,1,1,1,1,1,2022-02-21,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,2.0,0.0,8.0,1,2022-02-28 +UI,10261,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,0.0,0.0,0.0,2.0,0.0,3.0,5.0,6.5,1.0,1.5,4.0,0.0,0.0,0.0,0.0,2.0,1,2022-01-24 +UI,10262,V1,1,1,1,1,0,0,0,0,1,1,1,1,1,,,,1,1,1,0,na,0,1,na,1,1,1,2021-12-20,4.0,4.0,2.0,4.0,0.0,,,,,,,0.0,0.0,0.0,2.0,5.0,1, +UI,10265,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-04-18,2.0,0.0,2.0,0.0,0.0,,,,,,,0.0,0.0,0.0,4.0,0.0,1,2022-01-17 +UI,10266,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,155,165,165,1,1,1,1,0,1,1,0,1,1,1,2022-01-10,0.0,0.0,0.0,0.0,0.0,3.0,5.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-17 +UI,10266,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,0,1,1,1,1,1,1,2022-04-11,0.0,0.0,0.0,0.0,0.0,2.0,2.5,3.0,0.5,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-17 +UI,10267,V1,1,1,1,1,1,1,1,1,1,1,0,0,1,120,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-01-24,0.0,0.0,0.0,0.0,0.0,6.0,6.0,6.0,3.0,7.0,6.0,,,,0.0,0.0,0,2022-05-02 +UI,10267,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,125,110,110,1,1,1,0,0,0,0,1,0,0,1,2022-08-15,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,,,,0.0,0.0,0.0,0.0,0.0,0,2022-05-02 +UI,10269,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,110,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-01-17,1.0,4.0,2.0,5.0,0.0,5.0,6.0,5.0,5.0,5.0,4.0,2.0,2.0,2.0,1.0,6.0,1,2022-01-31 +UI,10270,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-01-10,4.0,7.0,4.0,5.0,0.0,,,,,,,0.0,0.0,0.0,5.0,7.0,1,2022-01-24 +UI,10270,V3,1,1,1,1,1,1,1,1,1,1,0,0,2,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-05-02,3.0,5.0,4.0,7.0,1.0,3.0,4.0,4.5,6.0,6.5,7.0,,,,4.0,6.0,0,2022-01-24 +UI,10272,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2022-01-17,2.0,4.0,5.0,5.0,4.0,1.5,7.0,7.5,,,,0.0,3.0,4.0,2.0,5.0,0,2022-01-17 +UI,10272,V3,1,1,1,1,1,1,0,0,1,1,0,0,3,110,115,115,1,1,1,1,1,1,1,1,1,1,1,2022-05-09,0.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,,,,,,,,,0,2022-01-17 +UI,10275,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,1,1,1,1,1,1,1,2022-01-24,3.0,3.0,0.0,3.0,0.0,5.0,4.0,4.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,4.0,1,2022-01-31 +UI,10275,V3,1,1,1,1,1,1,1,1,1,1,0,0,3,80,90,90,1,1,1,1,1,1,1,0,1,1,1,2022-05-09,0.0,2.0,0.0,3.0,0.0,0.0,3.0,0.0,2.0,3.0,0.0,,,,,,0,2022-01-31 +UI,10277,V1,1,1,1,1,1,1,1,1,1,1,0,0,2,140,170,170,1,1,1,1,1,1,1,1,1,1,1,2022-02-07,0.0,0.0,0.0,3.0,0.0,7.0,5.0,5.0,3.0,2.0,1.0,,,,0.0,3.0,0,2022-02-14 +UI,10280,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-01-31,1.0,1.5,0.0,1.5,0.0,,,,,,,0.0,0.0,0.0,0.0,1.5,1,2022-02-07 +UI,10280,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-09,1.5,0.5,0.5,0.5,0.0,,,,,,,0.0,0.0,0.0,0.0,0.5,1,2022-02-07 +UI,10281,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,105,,105,1,1,1,1,1,1,1,1,1,1,1,2022-02-07,0.0,0.0,0.0,0.0,0.0,5.0,5.0,5.0,,,,0.0,0.0,0.0,0.0,0.0,0,2022-02-14 +UI,10282,V1,1,1,1,1,1,1,0,0,1,1,1,1,,150,110,110,1,1,1,1,1,1,1,0,1,1,1,2022-02-21,5.0,5.0,7.0,8.0,7.0,5.0,7.0,9.5,,,,3.0,3.0,3.0,4.0,6.0,0,2022-02-21 +UI,10284,V1,1,1,1,1,1,1,0,0,1,1,0,0,2,90,115,115,1,1,1,1,1,1,1,0,1,1,1,2022-02-14,0.0,8.0,0.0,8.0,0.0,4.0,7.0,6.0,,,,,,,,,0,2022-02-14 +NS,10285,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,100,60,60,1,1,1,1,na,1,1,na,1,1,1,2022-02-14,0.5,0.5,0.0,0.5,0.0,,,,,,,0.0,0.0,0.0,0.0,0.5,0,2022-02-21 +NS,10285,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2022-06-27,0.0,0.0,0.0,0.0,0.0,7.0,8.0,8.5,8.0,9.0,9.0,0.0,0.0,1.0,0.0,0.0,1,2022-02-21 +UC,10286,V1,1,1,0,1,0,0,0,0,0,0,0,0,3,,,,1,1,1,1,na,na,1,na,na,na,1,2022-02-28,,,,,,,,,,,,,,,,,1,2022-03-14 +UI,10287,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,140,160,160,1,1,1,1,1,1,1,1,1,1,1,2022-02-14,0.0,0.0,0.0,2.0,0.0,2.0,3.5,4.0,0.0,1.0,2.5,0.0,0.0,0.0,0.0,2.0,1,2022-02-28 +NS,10288,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,70,,70,1,1,1,1,0,0,1,0,1,1,1,2022-02-14,1.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,3.0,4.0,1.0,1.0,1.0,3.0,2.0,1,2022-02-21 +NS,10288,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2022-06-20,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,5.0,7.0,6.0,0.0,0.0,0.0,0.0,0.0,1,2022-02-21 +UI,10292,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-02-28,0.0,2.0,0.0,2.0,0.0,,,,,,,0.0,0.0,0.0,0.0,2.0,1,2022-03-14 +NS,10293,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80,,80,1,1,1,0,0,0,1,0,1,1,1,2022-02-21,2.0,3.0,2.0,2.0,2.0,5.0,4.0,4.0,7.0,8.0,8.0,4.0,4.0,4.0,2.0,4.0,1,2022-02-28 +NS,10293,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,0,0,0,1,1,1,1,1,2022-06-20,2.0,3.0,2.0,3.0,2.0,4.0,4.0,2.0,5.5,6.0,3.0,2.0,2.0,2.0,2.0,3.0,1,2022-02-28 +NS,10294,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,140,140,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,0.5,0.0,0.5,0.0,3.5,2.5,3.0,2.0,1.0,1.0,0.5,0.5,0.5,0.0,0.0,1,2022-02-28 +NS,10294,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-06-20,0.0,0.5,0.0,1.0,1.0,1.0,5.0,6.0,1.5,5.0,3.0,1.0,1.0,1.0,0.0,1.0,1,2022-02-28 +UI,10295,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,140,145,145,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,2.0,0.0,2.0,0.0,4.0,4.0,4.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,1.0,1,2022-03-07 +UI,10295,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,155,200,200,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,0.0,0.0,0.0,0.0,0.0,2.5,3.5,3.0,1.0,1.0,0.5,0.0,0.0,0.0,0.0,0.0,1,2022-03-07 +NS,10296,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,6.0,1.0,6.0,0.0,5.0,5.5,5.5,4.0,6.0,6.0,3.0,3.0,3.0,1.0,7.0,1, +NS,10297,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5,1,2022-03-07 +NS,10297,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-27,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,1,2022-03-07 +NS,10298,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,300,,300,1,1,1,1,1,1,1,1,1,1,1,2022-03-07,0.0,0.0,0.0,0.0,0.0,5.0,5.0,5.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,1,2022-03-14 +NS,10298,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,180,180,1,1,1,1,1,1,1,1,1,1,1,2022-06-27,0.0,0.0,0.0,0.0,0.0,4.0,4.0,4.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1,2022-03-14 +UI,10299,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-03-07,0.0,1.5,0.0,2.0,0.0,0.0,1.0,2.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1,2022-03-14 +UI,10301,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,110,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,0.0,3.0,0.0,3.0,0.0,3.0,4.0,4.0,3.0,5.0,4.0,0.0,0.0,0.0,2.5,4.0,1,2022-03-14 +UI,10302,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-02-28,0.0,0.0,0.0,0.5,0.0,,,,,,,0.0,0.0,0.0,0.0,0.5,1,2022-03-14 +UI,10302,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-27,0.0,1.0,0.0,0.5,0.0,,,,,,,2.0,2.0,2.0,0.0,2.0,1,2022-03-14 +NS,10303,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,120,120,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,0.0,0.0,0.0,6.0,0.0,5.0,5.0,5.0,6.0,7.0,7.0,1.0,1.0,1.0,0.0,3.5,1,2022-02-28 +NS,10305,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,90,90,1,1,1,1,1,1,1,1,1,1,1,2022-03-07,0.0,1.0,0.0,0.0,0.0,3.0,3.0,3.0,4.5,5.0,7.0,0.0,0.0,0.0,0.0,0.0,1,2022-03-14 +NS,10305,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,100,100,1,1,1,1,1,1,1,1,1,1,1,2022-06-27,1.0,1.0,0.0,0.0,0.0,3.0,3.0,3.0,4.0,4.5,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-03-14 +UC,10307,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2022-03-07,0.0,0.0,0.0,0.0,1.0,5.5,6.0,5.5,6.5,6.0,6.5,2.5,1.5,1.5,0.0,0.0,1,2022-03-14 +UC,10307,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2022-07-11,0.0,0.0,0.5,1.0,0.0,4.0,3.0,3.0,4.0,5.0,6.0,0.0,0.0,0.0,0.0,1.0,1,2022-03-14 +UC,10308,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2022-05-02,4.0,1.0,3.5,2.0,0.0,0.0,2.5,3.5,0.0,1.5,3.0,0.0,0.0,0.0,3.0,0.0,1,2022-05-09 +UC,10308,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,160,160,1,1,1,1,1,1,0,0,0,1,1,2022-08-08,0.0,0.0,0.0,0.0,0.0,1.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-05-09 +UI,10311,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,200,80,80,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0,2022-03-21 +UI,10311,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,200,180,180,1,1,1,1,1,1,1,1,1,1,1,2022-06-27,0.0,0.0,0.0,0.0,0.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,0.0,0.0,1,2022-03-21 +NS,10312,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,60,,60,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1,2022-03-21 +NS,10312,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,0.0,0.0,0.0,0.0,0.0,3.5,5.0,6.0,4.5,7.0,8.0,0.0,0.0,0.0,0.0,2.5,1,2022-03-21 +UI,10313,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,150,200,200,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1,2022-03-21 +UI,10313,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-06-20,0.0,0.0,1.0,0.0,0.0,1.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,2.0,0.5,1,2022-03-21 +NS,10314,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80,110,110,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,2.0,3.5,2.0,5.0,0.0,2.5,5.0,3.0,3.0,6.0,3.0,0.0,0.0,0.0,3.0,4.0,1,2022-03-28 +NS,10314,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,0.0,0.0,0.0,0.0,0.0,2.0,4.0,3.0,2.0,6.0,4.0,0.0,0.0,0.0,0.0,2.0,1,2022-03-28 +UC,10315,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,0,1,na,1,1,1,2022-06-13,0.0,0.0,,,,,,,,,,,,,,,1,2022-03-14 +NS,10318,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,160,160,1,1,1,1,1,1,1,1,1,1,1,2022-03-21,0.0,0.0,0.0,0.0,0.0,3.0,4.0,3.5,2.0,2.5,4.5,0.0,0.0,0.0,0.0,0.0,1,2022-03-28 +NS,10318,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,100,100,1,1,1,1,1,1,1,1,1,1,1,2022-07-11,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3.5,1.0,5.0,3.0,1.0,0.0,0.0,0.0,0.0,1,2022-03-28 +NS,10319,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,180,180,1,1,1,1,1,1,1,1,1,1,1,2022-03-21,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.5,0.5,0.5,0.0,0.0,0.0,0.0,0.0,0.5,1,2022-03-28 +NS,10319,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,190,200,200,1,1,1,0,0,0,0,0,0,0,1,2022-07-11,0.0,0.0,0.0,0.5,0.0,4.0,3.5,4.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.5,1,2022-03-28 +UI,10320,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-04-04,5.0,6.0,5.0,6.0,3.0,,,,,,,0.0,0.0,0.0,5.0,7.0,1,2022-04-11 +UI,10320,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-07-18,1.0,1.0,1.0,1.5,0.0,,,,,,,0.0,0.0,0.0,1.0,2.0,1,2022-04-11 +UC,10321,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,0,1,1,1,1,1,1,2022-03-21,3.0,0.0,3.0,0.0,0.0,3.5,4.0,4.0,4.5,5.0,5.0,0.0,0.0,0.0,3.0,0.0,1,2022-04-11 +UI,10324,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-04-04,0.0,0.0,0.0,0.0,0.0,5.0,7.0,8.5,6.0,8.0,10.0,3.5,2.0,0.0,2.0,3.5,1,2022-04-25 +UC,10325,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,0,1,1,1,1,1,1,2022-03-28,3.0,0.0,3.0,0.0,0.0,3.5,4.0,4.0,5.0,5.0,5.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-04 +UI,10326,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,125,125,1,1,1,1,1,1,1,1,1,1,1,2022-03-28,2.0,0.0,2.0,0.0,0.0,3.0,5.0,5.0,2.0,6.0,2.0,2.0,5.5,2.0,2.0,0.0,1,2022-04-11 +UC,10327,V1,1,1,1,0,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,0,1,2022-04-11,6.0,5.0,6.0,0.0,0.0,4.0,4.0,4.0,2.0,2.0,2.0,0.0,0.0,0.0,4.0,0.0,1,2022-04-18 +NS,10328,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2022-04-04,0.5,1.5,0.5,1.5,0.0,3.5,4.5,5.0,4.0,5.0,6.0,2.0,1.0,0.5,0.5,2.0,1,2022-04-11 +NS,10328,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,70,,70,1,1,1,1,na,1,1,na,1,1,1,2022-08-01,0.0,1.0,0.0,1.5,0.0,,,,,,,,,,,,0,2022-04-11 +UC,10329,V1,1,1,1,1,0,0,0,0,0,0,0,0,3,100,,100,1,1,1,1,na,na,1,na,na,1,1,2022-04-11,,,,,,,,,,,,,,,,,0,2022-04-11 +NS,10330,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-04-04,0.0,3.0,0.0,3.0,0.0,4.0,5.5,5.5,3.5,6.5,5.0,0.0,0.0,0.0,0.5,3.0,1,2022-04-11 +NS,10330,V3,1,1,1,1,1,1,0,1,1,1,1,1,3,110,120,120,1,1,1,1,1,1,1,1,1,1,1,2022-07-18,1.5,0.5,1.0,0.0,0.0,3.0,3.5,3.5,0.0,4.0,3.0,0.0,0.0,0.0,2.0,0.5,0,2022-04-11 +UC,10331,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2022-04-04,0.0,0.0,1.0,0.0,0.0,0.0,2.0,2.5,0.0,2.0,2.5,0.0,1.0,2.5,1.0,0.0,1,2022-04-11 +UC,10331,V3,1,1,1,1,1,1,1,1,1,1,1,1,,60,,60,1,1,1,1,1,1,1,1,1,1,1,2022-07-25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1,2022-04-11 +UC,10332,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,9.0,6.0,9.0,7.0,0.0,0.0,3.0,4.0,0.0,3.0,5.0,0.0,3.0,6.0,9.0,9.0,1,2022-04-18 +UC,10332,V3,1,0,1,0,1,0,0,0,1,0,1,0,3,,,,0,0,0,0,0,0,0,0,0,0,0,na,0.0,5.0,0.0,5.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,5.0,1,2022-04-18 +NS,10333,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,0,0,1,1,1,1,1,2022-04-04,1.0,2.0,1.0,2.0,0.0,1.0,2.0,2.0,2.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,1,2022-04-18 +NS,10333,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,110,110,1,1,1,1,1,1,1,1,1,1,1,2022-07-18,1.0,1.5,2.0,2.0,0.0,3.0,3.0,4.0,5.0,5.0,5.5,1.0,1.0,1.0,2.5,3.0,1,2022-04-18 +NS,10334,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,,100,1,1,1,1,0,0,1,1,1,1,1,2022-04-04,4.5,3.0,4.5,5.5,0.0,5.5,8.0,8.0,8.5,7.0,9.0,0.0,0.0,0.0,2.0,6.5,1,2022-04-18 +UC,10335,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,1.0,1.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5,4.5,1,2022-04-18 +UC,10335,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,,,,1,1,1,1,1,1,1,1,1,1,0,2022-08-08,0.0,0.0,1.0,2.0,0.0,2.0,2.0,2.0,,,,3.0,3.0,3.0,0.0,2.0,1,2022-04-18 +UI,10337,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,0,1,1,1,2022-04-11,1.0,1.0,1.0,1.0,0.0,5.0,5.0,6.0,4.0,2.0,1.0,0.0,0.0,0.0,2.0,1.0,1,2022-04-11 +UI,10337,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,170,170,1,1,1,1,0,0,1,1,1,1,1,2022-08-01,0.0,0.0,0.0,0.0,0.0,4.0,5.0,6.0,3.0,4.0,4.0,0.0,0.0,0.0,0.0,1.0,1,2022-04-11 +NS,10340,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,0.0,1.0,1.0,2.0,0.0,2.0,2.0,2.5,1.0,2.5,2.5,0.0,1.0,1.0,0.0,1.0,1,2022-04-18 +NS,10340,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,180,180,1,1,1,1,1,1,1,1,1,1,1,2022-08-08,0.0,0.0,0.0,0.0,0.0,3.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-18 +UC,10341,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-04-04,0.0,0.0,0.0,0.0,0.0,7.0,7.0,7.0,7.0,7.0,10.0,10.0,7.0,0.0,8.0,0.0,1,2022-04-11 +UC,10341,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,0,0,1,1,1,0,1,2022-07-25,0.0,2.0,4.0,4.0,0.0,5.0,7.0,0.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-11 +NS,10342,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,0.0,3.0,0.0,3.0,0.0,0.0,4.5,0.0,4.0,5.0,5.0,0.0,0.0,0.0,0.0,3.0,1,2022-04-25 +UI,10343,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-09,0.0,0.0,0.0,1.0,1.0,,,,,,,0.0,2.0,2.0,0.0,0.0,1,2022-05-16 +UI,10343,V3,1,1,1,1,0,0,0,0,1,1,1,1,2,70,,70,1,1,1,1,na,1,1,na,1,1,0,2022-08-22,1.0,5.0,1.0,4.0,0.0,,,,,,,0.0,0.0,0.0,3.0,6.0,0,2022-05-16 +UI,10344,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,100,140,140,1,1,1,1,1,1,1,1,1,1,1,2022-04-18,1.0,2.0,1.0,2.0,0.0,4.0,5.0,5.0,2.0,4.0,5.0,1.0,1.0,1.0,1.0,2.0,1,2022-04-25 +NS,10345,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2022-04-18,0.0,0.0,0.0,0.0,0.0,6.5,7.0,6.5,6.0,7.0,6.5,0.0,0.0,0.0,0.0,0.5,1,2022-04-25 +UI,10346,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,190,195,195,1,1,1,1,1,1,1,1,1,1,1,2022-05-02,0.0,0.0,0.0,0.0,0.0,5.0,6.0,7.0,4.0,4.0,5.0,0.0,0.0,0.0,3.0,0.0,1,2022-05-23 +UI,10346,V3,1,1,1,1,0,0,0,0,0,1,0,0,2,160,160,160,1,1,1,1,na,na,1,na,na,1,0,2022-08-22,1.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,0,2022-05-23 +UI,10347,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,120,95,95,1,1,1,1,1,1,1,1,1,1,1,2022-04-25,0.0,2.0,3.0,3.0,0.0,4.0,6.0,6.0,,,,0.0,0.0,0.0,4.0,4.0,0,2022-05-09 +UI,10347,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,85,80,80,1,1,1,0,0,0,1,0,1,0,1,2022-08-15,5.0,5.0,7.0,7.0,0.0,5.0,5.0,5.0,,,,0.0,7.0,7.0,7.0,0.0,0,2022-05-09 +NS,10348,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,60,,60,1,1,1,1,na,1,1,na,1,1,1,2022-05-02,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,0,2022-05-02 +NS,10348,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,70,,70,1,1,1,1,na,1,1,na,1,1,1,2022-08-01,0.0,0.0,0.0,0.5,0.5,,,,,,,,,,,,0,2022-05-02 +UI,10349,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,170,80,80,1,1,1,1,na,1,1,na,1,1,1,2022-04-18,0.5,0.5,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,0,2022-05-02 +UI,10349,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,160,120,120,1,1,1,1,1,1,1,1,1,1,1,2022-08-15,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,,,,0.0,0.0,0.0,0.0,0.0,0,2022-05-02 +UC,10350,V1,1,1,1,1,1,1,1,1,1,1,0,1,3,100,,100,1,1,1,1,1,1,1,1,1,1,1,2022-04-18,9.0,7.0,6.0,0.0,5.0,5.0,5.0,7.0,8.0,8.0,7.0,,,,,,0,2022-04-25 +UC,10350,V3,1,1,1,1,1,1,1,1,1,1,0,0,3,60,,60,1,1,1,1,1,1,1,1,1,1,0,2022-08-15,4.0,8.0,6.0,6.5,0.0,0.0,0.0,7.0,0.0,0.0,0.0,,,,8.0,7.0,0,2022-04-25 +NS,10352,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,,,,1,1,1,1,1,1,1,1,1,1,1,2022-04-18,0.0,1.0,0.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1,2022-04-25 +NS,10352,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-08-01,0.0,2.0,0.0,2.0,0.0,,,,,,,,,,,,1,2022-04-25 +NS,10353,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,210,210,1,1,1,1,1,1,1,1,1,1,1,2022-04-25,0.0,0.0,0.0,0.0,0.0,5.0,6.0,6.0,3.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-05-02 +UC,10354,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-04-25,1.0,1.0,1.0,1.0,1.0,1.0,4.0,4.0,1.0,4.0,4.0,1.0,1.0,1.0,1.0,1.0,1,2022-05-09 +UI,10355,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-05-16,0.0,0.0,0.0,0.0,0.0,6.0,6.0,6.0,7.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-05-23 +UI,10355,V3,1,1,1,1,1,1,1,1,1,1,0,0,2,180,,180,1,1,1,1,1,1,1,1,1,1,0,2022-08-22,0.0,0.0,0.0,0.0,0.0,7.0,7.0,8.0,4.0,4.0,4.0,,,,,,0,2022-05-23 +UC,10356,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,0,2022-06-27,0.0,2.0,0.0,2.0,0.0,3.0,3.5,3.5,3.5,3.5,3.5,0.0,0.0,0.0,0.0,2.0,1,2022-08-08 +NS,10357,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-02,0.0,5.0,1.0,5.0,0.0,,,,,,,,,,,,1,2022-05-09 +UC,10360,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,60,,60,1,1,1,1,1,1,1,1,1,1,1,2022-05-02,9.0,5.5,9.0,5.0,2.0,2.0,2.0,2.0,5.0,5.0,10.0,,,,,,0,2022-05-09 +UI,10361,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-08-29,0.0,0.0,0.0,0.0,0.0,4.0,5.0,3.5,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2022-05-09 +UI,10362,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-02,0.0,1.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,1.0,1,2022-05-02 +UI,10362,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,90,95,95,1,1,1,1,1,1,1,1,1,1,1,2022-08-01,0.0,0.0,0.0,0.0,0.0,2.0,3.0,4.0,,,,0.0,0.0,0.0,0.0,0.0,0,2022-05-02 +UC,10363,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,,,,1,1,1,1,0,1,1,1,1,1,1,2022-05-02,9.5,9.0,9.0,9.0,0.0,8.0,8.0,0.0,0.0,0.0,0.0,,,,,,1,2022-05-02 +NS,10364,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,100,100,1,1,1,1,1,1,1,1,1,1,1,2022-05-09,0.0,0.0,0.0,1.0,0.0,3.0,4.0,4.0,0.0,5.0,5.0,0.0,0.0,0.0,1.0,1.0,1,2022-05-23 +NS,10366,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,90,90,1,1,1,1,1,1,1,1,1,1,1,2022-05-02,0.0,1.0,0.0,1.0,0.0,6.0,7.0,8.0,7.0,8.0,9.5,0.5,0.5,0.5,0.0,2.0,1,2022-05-16 +UI,10367,V1,1,1,1,1,1,1,1,1,1,1,0,0,2,140,150,150,1,1,1,1,1,1,1,1,1,1,1,2022-05-09,0.0,0.0,0.0,0.0,0.0,4.0,5.0,6.0,5.0,6.0,7.0,,,,,,0,2022-05-09 +UI,10367,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,140,125,125,1,1,1,1,1,1,1,1,1,1,1,2022-08-15,1.5,0.0,0.0,0.0,0.0,2.0,4.0,5.0,2.0,4.0,6.0,2.0,2.0,2.0,3.0,0.0,1,2022-05-09 +UI,10368,V1,1,1,1,1,1,1,1,1,1,1,0,0,2,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-05-09,0.0,0.0,0.0,0.0,0.0,4.0,3.0,3.0,2.0,2.0,2.0,,,,,,0, +UC,10372,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-06-06,0.0,5.0,2.5,5.0,0.0,6.0,6.0,6.0,7.0,7.5,7.5,0.0,0.0,0.0,5.0,5.0,1,2022-06-20 +NS,10375,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-09,4.5,1.0,1.5,1.0,0.0,,,,,,,,,,,,1,2022-05-16 +NS,10379,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-05-16,0.0,1.0,0.0,3.0,1.0,4.0,5.0,5.0,5.0,4.0,3.0,1.0,1.0,1.0,0.0,3.0,1,2022-08-08 +NS,10380,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-30,0.0,4.0,0.0,5.0,0.0,,,,,,,,,,,,1,2022-06-06 +NS,10382,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,,130,1,1,1,1,1,1,1,1,1,1,1,2022-05-16,0.0,0.0,0.0,1.0,0.0,4.0,4.0,4.0,4.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,1,2022-05-23 +UI,10384,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-16,3.0,2.0,3.0,0.0,0.0,,,,,,,0.0,0.0,0.0,1.0,0.0,1,2022-05-16 +UI,10384,V3,1,1,1,1,0,0,0,0,1,1,1,1,3,80,,80,1,1,1,1,na,1,1,na,1,1,0,2022-08-22,4.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,0,2022-05-16 +NS,10385,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-05-23,0.0,0.0,0.0,0.0,0.0,0.0,4.0,7.0,1.0,4.0,7.5,0.0,0.0,0.0,2.0,2.0,1,2022-06-06 +NS,10386,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-06,0.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,,,,,,,1,2022-06-13 +NS,10387,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-06,0.0,1.5,0.0,2.0,0.0,,,,,,,,,,,,1,2022-06-20 +UI,10390,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,115,125,125,1,1,1,1,1,1,1,1,1,1,1,2022-05-30,0.0,0.0,0.0,0.0,0.0,3.5,4.0,5.0,3.0,4.0,4.5,0.0,0.0,0.0,0.0,0.0,1,2022-06-13 +UI,10391,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,190,,190,1,1,1,1,1,1,1,1,1,1,1,2022-05-30,2.0,0.0,2.0,0.0,0.0,4.0,4.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1,2022-06-06 +UC,10392,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,120,120,1,1,1,1,0,1,1,1,1,1,1,2022-08-01,2.0,4.0,2.0,2.0,0.0,3.5,4.0,4.5,3.0,3.0,3.0,0.0,0.0,0.0,2.0,1.5,1,2022-08-01 +UC,10393,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2022-07-11,2.0,2.0,2.0,2.0,0.0,3.0,3.0,4.0,2.0,2.0,2.0,0.0,0.0,0.0,2.0,3.0,1,2022-07-18 +NS,10394,V1,1,1,1,1,0,1,0,1,1,1,1,1,3,110,,110,1,1,1,0,na,0,1,na,1,1,1,2022-05-30,0.0,0.0,0.0,0.0,0.0,1.0,3.0,5.0,1.0,4.0,6.0,0.0,0.0,0.0,0.0,3.0,0,2022-06-06 +UI,10395,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,100,,100,1,1,1,1,1,1,1,1,1,1,1,2022-06-13,1.0,2.0,0.0,1.0,0.0,3.0,4.0,4.0,,,,0.0,0.0,0.0,0.0,4.0,0,2022-06-13 +UI,10396,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,130,130,1,1,1,1,1,1,1,1,1,1,1,2022-06-06,0.0,0.0,0.0,0.0,0.0,1.5,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-06-13 +UI,10397,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,80,,80,1,1,1,1,na,1,1,na,1,1,1,2022-06-13,0.0,0.0,1.0,1.0,1.0,,,,,,,0.0,0.0,0.0,0.0,0.0,0,2022-06-20 +UI,10398,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-13,6.0,6.0,5.0,6.0,2.0,,,,,,,3.0,3.0,2.0,5.0,5.0,1,2022-06-13 +NS,10401,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-13,5.0,1.0,6.0,5.0,0.5,,,,,,,,,,,,1,2022-06-20 +NS,10402,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-06-13,0.0,0.0,0.0,0.0,0.0,2.0,5.0,7.5,3.0,6.0,7.5,0.0,0.0,0.0,0.0,1.0,1,2022-06-20 +UI,10405,V1,1,1,1,1,0,0,0,0,,1,1,1,2,,,,1,1,1,1,na,0,1,na,1,1,1,2022-06-20,0.0,0.0,0.0,0.0,0.0,,,,,,,0.0,0.0,0.0,0.0,0.0,1,2022-07-11 +NS,10406,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,0,na,0,1,na,1,1,1,2022-06-27,7.0,0.0,7.0,7.0,0.0,,,,,,,,,,,,1,2022-07-11 +NS,10407,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-20,6.0,6.0,7.0,7.0,7.0,,,,,,,,,,,,1,2022-07-11 +UI,10408,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,60,,60,1,1,1,1,na,1,1,na,1,1,1,2022-06-20,3.0,6.0,3.0,6.0,0.0,,,,,,,0.0,0.0,0.0,8.0,8.0,0,2022-07-11 +UC,10411,V1,1,1,1,1,0,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,na,1,1,na,1,1,1,2022-07-04,0.0,0.0,1.0,1.0,0.0,4.0,4.0,5.0,5.0,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0,2022-07-04 +UC,10413,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2022-07-18,0.0,2.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,0.5,0.0,0.0,0.0,0.0,2.0,2.0,1,2022-07-18 +NS,10414,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,310,250,250,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,0.0,0.0,0.0,0.0,0.0,1.5,5.0,8.0,2.0,4.0,4.0,1.5,4.0,4.0,0.0,2.0,1,2022-07-18 +NS,10415,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-27,2.0,0.0,2.0,0.0,0.0,,,,,,,,,,,,1,2022-07-04 +UC,10416,V1,1,1,1,1,1,1,0,0,1,1,0,0,3,60,,60,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,8.0,8.0,8.5,8.0,0.0,0.0,0.0,0.0,,,,,,,,,0,2022-07-04 +UI,10417,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,130,140,140,1,1,1,1,1,1,1,1,1,1,1,2022-06-27,0.0,0.0,0.0,0.0,0.0,7.0,9.0,10.0,5.0,7.0,8.0,,,,0.0,9.0,0,2022-06-27 +NS,10419,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,60,,60,1,1,1,1,na,1,1,na,1,1,1,2022-07-18,3.0,3.0,3.0,3.0,3.0,,,,,,,,,,,,0,2022-07-25 +UI,10420,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,120,115,115,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,2.0,2.0,1.0,2.0,0.0,7.0,9.0,7.0,,,,0.0,0.0,0.0,1.0,2.0,0,2022-07-11 +UI,10421,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,90,140,140,1,1,1,1,1,1,1,1,1,1,1,2022-07-11,0.0,3.0,0.0,2.0,0.0,4.0,6.0,6.0,2.0,4.0,4.0,0.0,0.0,0.0,0.0,1.0,1,2022-08-01 +UC,10423,V1,1,0,1,0,0,0,0,0,0,0,0,0,,110,,110,0,0,0,0,na,na,0,na,na,0,0,na,,,,,,,,,,,,,,,,,0,2022-07-18 +UC,10424,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,240,,240,1,1,1,1,1,1,1,1,1,1,1,2022-07-25,0.0,0.5,0.0,0.0,0.0,3.0,4.0,4.0,3.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2022-08-01 +UC,10425,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,,,,1,1,1,0,0,0,1,0,1,1,1,2022-08-08,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1,2022-09-19 +NS,10427,V1,1,0,1,0,0,0,0,0,1,0,0,0,3,,,,1,0,0,0,na,0,0,na,0,0,0,na,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,1,2022-07-18 +NS,10428,V1,1,1,1,1,0,1,0,1,1,1,1,1,3,100,,100,1,1,1,1,na,1,1,na,1,1,1,2022-07-11,5.0,1.0,6.0,6.0,0.0,6.5,,,6.5,,,7.5,7.5,7.5,7.5,0.0,0,2022-07-18 +NS,10429,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,0,1,na,1,1,1,2022-08-01,1.0,0.0,4.0,0.0,0.0,,,,,,,,,,,,1,2022-08-08 +NS,10430,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,100,110,110,1,1,1,1,1,1,1,1,1,1,1,2022-07-25,1.0,0.0,0.0,0.0,0.0,3.0,6.0,7.0,4.0,6.0,7.0,0.0,0.0,0.0,0.5,0.5,1,2022-08-01 +NS,10431,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-07-25,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,1,2022-08-08 +NS,10432,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,60,,60,1,1,1,1,na,1,1,na,1,1,1,2022-07-25,4.0,6.0,7.0,9.0,6.0,,,,,,,,,,,,0,2022-08-01 +NS,10434,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,90,110,110,1,1,1,1,1,1,1,1,1,1,1,2022-08-08,2.0,0.0,2.0,1.0,0.0,5.0,5.0,5.0,5.0,6.0,7.0,0.0,0.0,0.0,1.0,0.0,1,2022-08-15 +NS,10437,V1,1,1,1,1,1,0,1,0,1,1,1,0,3,90,84,84,1,1,1,1,0,1,1,0,1,1,1,2022-07-11,1.0,0.0,1.0,2.0,0.0,3.0,6.0,9.0,6.0,8.0,9.0,0.0,0.0,0.0,1.0,2.0,1,2022-08-15 +UC,10443,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,210,,210,1,1,1,1,1,1,1,1,1,1,0,2022-08-15,0.0,2.0,0.0,2.0,0.0,0.0,6.0,6.0,2.0,2.0,2.0,0.0,0.0,0.0,2.0,0.0,1,2022-08-29 +UI,10447,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,0,0,0,0,0,0,1,1,2022-08-15,0.5,0.5,1.0,0.0,0.0,4.0,5.0,3.0,4.0,6.0,5.0,1.0,2.0,2.0,2.0,0.0,1,2022-08-22 +UI,10449,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,100,105,105,1,1,0,0,0,0,0,0,0,0,0,2022-08-29,0.0,0.0,0.0,0.0,0.0,2.0,4.0,7.0,,,,0.0,0.0,0.0,0.0,0.0,0,2022-08-29 +UI,10452,V1,1,1,1,1,1,1,1,1,1,1,0,0,3,120,140,140,1,1,0,0,0,0,0,0,0,0,0,2022-08-29,3.0,3.0,3.0,3.0,3.0,5.0,5.0,5.0,3.5,3.5,3.5,,,,,,0,2022-08-29 +UI,10453,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,115,110,110,1,1,1,1,1,1,1,1,1,1,1,2022-09-05,2.0,1.0,2.0,1.0,1.0,4.5,5.0,5.0,,,,1.0,1.0,1.0,1.0,1.0,0,2022-09-05 +UM,20004,V1,1,1,1,1,1,1,1,1,1,1,1,1,,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-07-12,0.0,0.0,0.0,0.0,3.5,4.0,4.5,4.0,2.0,2.0,2.0,,,,0.0,0.0,1,2021-07-12 +UM,20004,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-07-12 +UM,20007,V1,1,1,1,1,1,1,1,1,1,1,1,1,,310,400,400,1,1,1,1,1,1,1,1,1,1,1,2021-08-02,0.0,0.0,0.0,0.0,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-09 +UM,20007,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,260,,260,1,1,1,1,1,1,1,1,1,1,1,2021-11-01,0.0,0.0,0.0,0.0,0.0,4.0,5.0,6.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-09 +UM,20009,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2021-08-16,0.0,0.0,0.0,0.0,4.0,4.0,4.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-08-30 +UM,20012,V1,1,1,1,1,1,1,0,0,1,1,0,0,2,105,,105,1,1,1,1,1,1,1,1,1,1,1,2021-08-30,0.0,0.0,0.0,0.0,5.0,5.0,5.0,5.0,,,,,,,,,0,2021-09-13 +UM,20013,V1,1,1,1,1,0,0,0,0,1,1,0,0,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-08-09,0.0,0.0,0.0,0.0,,,,,,,,,,,0.0,0.0,1,2021-08-16 +UM,20013,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-11-08,0.0,2.0,0.0,2.0,,,,,,,,,,,,,1,2021-08-16 +UM,20016,V1,1,1,1,1,1,1,0,1,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2021-08-09,0.0,0.0,0.0,0.0,4.0,4.0,7.0,8.0,,,,2.0,2.0,1.0,0.0,0.0,0,2021-08-23 +UM,20016,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,80,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,0.0,0.0,3.0,7.0,10.0,,,,2.0,2.0,2.0,0.0,0.0,0,2021-08-23 +UM,20017,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2021-09-13,0.0,0.0,0.0,0.0,4.0,2.0,3.0,5.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-09-27 +UM,20017,V3,1,1,1,1,0,1,1,1,1,1,1,1,3,250,260,260,1,1,1,1,na,1,1,na,1,1,1,2022-01-10,0.0,0.0,0.0,0.0,0.0,2.0,4.0,6.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0,2021-09-27 +UM,20018,V1,1,1,1,1,1,1,0,0,1,1,0,0,2,230,,230,1,1,1,1,1,1,1,1,1,1,1,2021-08-30,0.0,0.0,0.0,0.0,5.0,1.0,5.0,,,,,,,,,,0,2021-09-27 +UM,20018,V3,1,1,1,1,0,1,1,1,1,1,1,1,2,170,190,190,1,1,1,1,na,1,1,na,1,1,1,2022-01-03,0.0,0.0,0.0,0.0,0.0,2.0,5.0,7.0,2.0,5.0,6.0,2.0,5.0,6.0,0.0,0.0,0,2021-09-27 +UM,20019,V1,1,1,1,1,1,1,0,1,1,1,1,1,3,145,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-09-20,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0,2021-10-11 +UM,20019,V3,1,1,1,1,0,1,1,1,1,1,1,1,3,190,250,250,1,1,1,1,na,1,1,na,1,1,1,2022-01-17,0.0,0.0,0.0,1.0,0.0,0.0,1.5,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0,2021-10-11 +UM,20020,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,250,,250,1,1,1,1,1,1,1,1,1,1,1,2021-09-13,0.0,0.0,0.0,0.0,5.0,5.0,6.0,5.0,6.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-18 +UM,20021,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,190,190,1,1,1,1,1,1,1,1,1,1,1,2021-09-27,0.0,5.0,0.0,2.0,3.5,3.0,2.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1,2021-10-04 +UM,20021,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,140,160,160,1,1,1,1,1,1,1,1,1,1,1,2022-01-10,0.0,0.0,0.0,0.0,0.0,5.0,6.0,5.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-04 +UM,20022,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-04,0.0,0.0,0.0,0.0,,,,,,,,,,,,,1,2021-10-11 +UM,20023,V1,1,1,1,1,0,0,0,0,1,1,1,1,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-09-27,0.0,0.0,0.0,0.0,,,,,,,,,,,0.0,0.0,1,2021-10-04 +UM,20023,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-01-10,0.0,0.0,0.0,1.0,0.0,,,,,,,,,,,,1,2021-10-04 +UM,20024,V1,1,1,1,1,0,0,0,0,1,1,1,1,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-09-20,0.0,1.0,0.0,1.0,,,,,,,,,,,0.0,0.0,1,2021-10-11 +UM,20025,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,135,155,155,1,1,1,1,1,1,1,1,1,1,1,2021-10-04,0.0,0.0,0.0,0.0,0.0,3.5,3.5,3.5,2.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,1,2021-10-11 +UM,20025,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,190,190,1,1,1,1,1,1,1,1,1,1,1,2022-01-17,0.0,0.0,0.0,0.0,0.0,5.0,5.0,5.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-11 +UM,20026,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,118,170,170,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,0.0,0.0,0.0,0.0,2.5,4.0,5.5,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-25 +UM,20026,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,130,155,155,1,1,1,1,1,1,1,1,1,1,1,2022-01-24,0.0,0.0,0.0,0.0,0.0,3.0,5.0,6.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-10-25 +UM,20027,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,185,140,140,1,1,1,1,1,1,1,1,1,1,1,2021-10-18,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,2.5,2.5,2.5,1.0,0.5,0.0,0.0,0.5,1,2021-11-01 +UM,20027,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,190,210,210,1,1,1,1,1,1,1,1,1,1,1,2022-02-14,0.0,4.0,0.0,4.0,0.0,3.0,4.0,5.0,2.0,3.0,4.0,1.0,1.5,1.5,0.0,4.0,1,2021-11-01 +UM,20028,V1,1,1,1,1,0,0,0,0,1,1,0,0,2,,,,1,1,1,1,na,1,1,na,1,1,1,2021-10-18,0.0,5.0,0.0,0.0,,,,,,,,,,,,,1,2021-10-25 +UM,20029,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-10-25,0.0,0.0,0.0,3.5,0.0,5.0,5.0,5.0,7.0,7.0,7.0,0.0,0.0,0.0,0.0,3.0,1,2021-11-01 +UM,20029,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,190,170,170,1,1,1,1,1,0,1,1,1,1,1,2022-02-07,0.0,0.0,0.0,0.0,1.0,5.0,6.0,6.0,4.0,3.0,7.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-01 +UM,20030,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,,180,1,1,1,1,1,1,1,1,1,1,1,2021-11-08,0.0,0.0,0.0,0.0,0.0,6.0,4.0,6.0,1.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-22 +UM,20030,V3,1,1,1,1,1,1,1,1,1,1,0,0,2,260,200,200,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,1.0,1.0,1.0,,,,,,0,2021-11-22 +UM,20031,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,220,230,230,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,0.0,0.0,4.0,5.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-06 +UM,20031,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,180,180,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,4.0,7.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-06 +UM,20033,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,73,123,123,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,4.0,0.0,5.0,0.0,4.0,5.0,6.0,4.0,5.0,6.0,0.0,0.0,0.0,0.0,5.0,1,2021-12-20 +UM,20033,V3,1,1,1,1,0,0,0,0,1,1,0,0,2,60,,60,1,1,1,1,na,1,1,na,1,1,1,2022-03-28,1.0,5.0,1.0,4.0,,,,,,,,,,,,,0,2021-12-20 +UM,20034,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,1,1,1,1,1,1,1,2021-11-22,0.0,0.0,0.0,0.0,4.0,1.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-22 +UM,20035,V1,1,1,1,1,1,1,0,0,1,1,1,1,2,131,,131,1,1,1,1,1,1,1,1,1,1,1,2021-11-15,0.0,0.0,0.0,0.0,0.0,3.0,5.0,6.0,,,,0.0,0.0,0.0,0.0,0.0,0,2021-11-15 +UM,20036,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,170,170,1,1,1,1,1,1,1,1,1,1,1,2021-11-22,0.0,3.0,0.0,3.0,0.0,3.0,3.5,4.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,1,2021-11-22 +UM,20036,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,250,,250,1,1,1,1,1,1,1,1,1,1,1,2022-02-28,0.0,0.0,0.0,1.0,0.0,5.0,6.0,7.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-22 +UM,20037,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2021-12-13,0.0,2.0,0.0,2.0,,,,,,,,,,,,,1,2022-01-31 +UM,20037,V3,1,1,1,1,0,0,0,0,1,1,0,0,2,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-16,0.0,0.5,0.0,1.0,,,,,,,,,,,,,1,2022-01-31 +UM,20038,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,210,220,220,1,1,1,1,1,1,1,1,1,1,1,2021-11-22,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2021-11-29 +UM,20038,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,170,230,230,1,1,1,1,1,1,1,1,1,1,1,2022-02-14,1.0,1.0,4.0,0.0,0.0,3.0,5.0,6.0,2.0,2.0,3.0,0.0,0.0,0.0,4.0,0.0,1,2021-11-29 +UM,20040,V1,1,1,1,1,0,0,0,0,1,1,0,0,1,,,,1,1,1,1,na,1,1,na,1,1,1,2022-01-10,0.0,0.0,0.0,0.0,,,,,,,,,,,,,1,2022-01-10 +UM,20041,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,250,,250,1,1,1,1,1,1,1,1,1,1,1,2021-12-06,8.0,0.0,7.0,0.0,0.0,5.0,6.5,6.0,2.0,2.0,2.0,0.0,0.0,0.0,4.0,0.0,1,2021-12-13 +UM,20041,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,1,1,1,1,1,1,1,2022-03-21,0.0,1.0,0.0,1.0,0.0,2.0,5.0,6.0,4.0,4.0,3.0,1.0,1.0,1.0,1.0,2.0,1,2021-12-13 +UM,20042,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,120,100,100,1,1,1,1,1,1,1,1,1,1,1,2021-12-13,0.0,0.0,0.0,0.0,0.0,4.0,5.0,5.0,5.0,7.0,4.0,4.0,4.0,4.0,0.0,5.0,1,2021-12-20 +UM,20042,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-04-04,0.0,1.0,0.0,1.0,,,,,,,,,,,,,1,2021-12-20 +UM,20043,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,175,,175,1,1,1,1,1,1,1,1,1,1,1,2021-12-13,0.0,4.0,0.0,0.0,0.0,5.0,4.5,4.0,4.5,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2021-12-13 +UM,20045,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,310,330,330,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,0.0,2.0,0.0,0.0,1.0,4.0,5.0,4.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1,2022-01-24 +UM,20046,V1,1,1,1,1,1,1,0,1,1,1,1,1,3,90,110,110,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,1.5,6.5,0.0,5.0,0.0,4.0,6.0,10.0,5.0,10.0,,0.0,0.0,0.0,3.0,8.0,0,2022-01-17 +UM,20046,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,80,,80,1,1,1,1,0,1,1,1,1,1,1,2022-04-18,4.0,7.0,4.0,6.0,0.0,4.0,6.0,6.0,,,,4.0,4.0,4.0,7.0,7.0,0,2022-01-17 +UM,20047,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,160,160,0,1,1,1,1,1,1,1,1,1,1,2021-12-20,0.0,0.0,0.0,0.0,0.0,2.0,2.5,3.5,2.0,2.5,2.5,0.0,0.0,0.0,0.0,0.0,1,2022-01-03 +UM,20047,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,160,190,190,1,1,1,1,1,1,1,1,1,1,1,2022-04-04,0.0,0.0,0.0,0.0,0.0,2.5,3.5,4.5,2.0,2.5,2.5,0.0,0.0,0.0,0.0,0.0,1,2022-01-03 +UM,20049,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,150,220,220,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,0.0,0.0,0.0,0.0,0.0,6.0,8.0,9.5,7.0,5.0,8.0,1.0,1.0,1.0,0.0,1.0,1,2022-01-17 +UM,20049,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,140,190,190,1,1,1,1,1,1,1,1,1,1,1,2022-04-18,0.0,1.0,0.0,2.0,1.5,4.0,6.0,7.0,4.5,4.0,6.0,2.0,3.0,3.0,0.0,4.0,1,2022-01-17 +UM,20050,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,78,,78,1,1,1,1,na,1,1,na,1,1,1,2021-12-13,0.0,3.0,0.0,3.0,,,,,,,,,,,,,0,2021-12-27 +UM,20050,V3,1,1,1,1,1,1,0,1,1,1,1,1,3,80,100,100,1,1,1,1,1,1,1,1,1,1,1,2022-04-25,0.0,5.0,3.0,5.0,0.0,5.0,7.0,10.0,4.0,8.0,10.0,3.0,3.0,3.0,4.0,6.0,0,2021-12-27 +UM,20051,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,110,,110,1,1,1,1,1,1,1,1,1,1,1,2022-01-10,0.0,0.0,0.0,0.0,0.0,3.5,2.5,5.0,4.0,4.0,5.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-17 +UM,20051,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,110,,110,1,1,1,1,na,1,1,na,1,1,1,2022-04-11,0.0,0.0,0.0,0.0,,,,,,,,,,,,,0,2022-01-17 +UM,20052,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,190,200,200,1,1,1,1,1,1,1,1,1,1,1,2021-12-20,0.0,0.0,0.0,0.0,0.0,4.0,3.0,3.0,2.0,1.0,0.5,0.0,0.0,0.0,0.0,0.0,1, +UM,20056,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-01-03,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-10 +UM,20056,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,0.0,1.0,0.0,1.0,0.0,4.0,5.0,4.0,,,,1.0,1.0,1.0,0.0,1.0,0,2022-01-10 +UM,20057,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,110,,110,1,1,1,1,1,1,1,1,1,1,1,2022-01-10,0.0,0.0,0.0,0.0,0.0,5.0,5.0,5.0,5.0,6.0,6.0,2.0,2.0,2.0,0.0,0.0,1,2022-01-31 +UM,20057,V3,1,1,1,1,1,1,0,0,1,1,1,1,2,100,90,90,1,1,1,1,1,1,1,1,1,1,1,2022-05-16,0.0,2.0,0.0,1.0,0.0,5.0,5.0,4.0,,,,1.0,1.0,1.0,0.0,2.0,0,2022-01-31 +UM,20058,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,120,160,160,1,1,1,1,1,1,1,1,1,1,1,2022-01-17,0.0,0.0,0.0,0.0,0.0,2.0,5.0,8.0,1.0,3.0,5.0,1.0,1.0,1.0,0.0,0.0,1,2022-02-21 +UM,20059,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,80,80,1,1,1,1,0,1,1,1,1,1,1,2022-01-24,1.0,2.0,1.0,2.0,0.0,3.0,6.0,8.0,3.5,7.0,9.0,0.0,0.0,0.0,1.0,2.0,1,2022-03-14 +UM,20059,V3,1,1,1,1,1,1,0,0,1,1,1,1,3,100,120,120,1,1,1,1,1,1,1,1,1,1,1,2022-06-13,0.0,0.0,0.0,0.0,0.0,3.0,6.0,9.0,,,,0.0,0.0,0.0,0.0,0.0,0,2022-03-14 +UM,20061,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,80,110,110,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,0.0,0.0,0.0,0.0,3.0,6.0,8.0,,,,2.0,2.0,2.0,0.0,0.0,0,2022-03-14 +UM,20061,V3,1,1,1,1,0,0,0,0,1,1,0,0,2,60,,60,1,1,1,1,na,1,1,na,1,1,1,2022-06-20,0.0,0.0,0.0,0.0,,,,,,,,,,,0.0,0.0,0,2022-03-14 +UM,20062,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-01-24,0.0,0.0,0.0,0.0,0.0,3.0,3.0,5.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-31 +UM,20062,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,1,2022-05-02,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-01-31 +WS,20064,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,170,170,1,1,1,1,0,0,1,1,1,0,1,2022-02-14,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3.0,0.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2022-02-21 +WS,20064,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,120,,120,1,1,1,1,1,1,1,1,1,1,1,2022-05-30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.5,0.0,0.0,0.0,0.0,0.0,1,2022-02-21 +UM,20066,V1,1,1,1,1,1,1,0,0,1,1,0,0,3,190,260,260,1,1,1,1,1,1,1,1,1,1,1,2022-02-07,6.0,8.0,6.0,8.0,0.0,2.0,6.0,9.0,,,,,,,,,0,2022-02-07 +UM,20067,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,340,400,400,1,1,1,1,1,1,1,1,1,1,1,2022-02-07,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-02-14 +UM,20068,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,250,,250,1,1,1,1,1,1,1,1,1,1,1,2022-02-14,0.0,0.0,0.0,0.0,0.0,4.5,6.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-03-21 +UM,20068,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,330,,330,1,1,1,1,0,1,1,1,1,1,1,2022-06-13,0.0,0.0,0.0,0.0,0.0,4.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-03-21 +UM,20071,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-02-21,1.0,3.0,3.0,3.0,,,,,,,,,,,,,1,2022-02-28 +UM,20071,V3,1,1,1,1,,0,,0,1,1,,0,3,,,,1,1,1,1,0,1,1,0,1,1,1,2022-06-06,0.0,0.0,0.0,0.0,,,,,,,,,,,,,1,2022-02-28 +UM,20072,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,300,,300,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,4.0,5.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-03-21 +UM,20075,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80,120,120,1,1,1,1,1,1,1,1,1,1,1,2022-02-21,0.0,0.0,0.0,0.0,0.0,3.0,4.0,5.0,4.0,6.0,7.5,0.0,0.0,0.0,0.0,0.0,1,2022-03-14 +UM,20075,V3,,0,,0,,0,,0,,0,,0,,100,,100,0,0,0,0,0,0,0,0,0,0,0,na,,,,,,,,,,,,,,,,,0,2022-03-14 +UM,20076,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,130,,130,1,1,1,1,1,1,1,1,1,1,1,2022-03-07,0.0,0.0,0.0,0.0,0.0,6.0,5.5,6.0,7.0,5.5,5.5,0.0,0.0,0.0,0.0,0.0,1,2022-03-14 +UM,20076,V3,1,1,1,1,0,0,0,0,1,1,0,0,3,100,70,70,1,1,1,1,na,1,1,na,1,1,1,2022-06-20,0.0,0.0,0.0,1.0,0.0,,,,,,,,,,,,0,2022-03-14 +UM,20077,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,170,170,1,1,1,1,1,1,1,0,1,1,1,2022-03-21,0.0,0.0,0.0,0.5,0.0,0.0,3.0,5.5,4.0,2.0,3.0,1.0,0.0,0.0,1.0,1.5,1,2022-04-11 +UM,20077,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,100,140,140,1,1,1,1,1,1,1,1,1,1,1,2022-07-25,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,3.0,4.0,6.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-11 +UM,20078,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,190,,190,1,1,1,1,1,1,1,1,1,1,1,2022-03-14,0.0,0.0,0.0,0.0,0.0,7.0,5.0,7.0,5.0,5.0,6.0,0.0,0.0,0.0,0.0,2.0,1,2022-03-14 +UM,20078,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,130,180,180,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,0.0,0.0,0.0,0.0,0.0,4.0,6.0,8.0,3.0,5.0,6.0,0.0,0.0,0.0,0.0,0.0,1,2022-03-14 +UM,20081,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-04-04,0.0,0.0,0.0,1.0,,,,,,,,,,,,,1,2022-04-04 +UM,20081,V3,1,1,1,1,0,0,0,0,1,1,0,0,,,,,1,1,1,1,na,0,1,na,1,1,1,2022-07-25,0.0,0.0,0.0,0.0,,,,,,,,,,,,,1,2022-04-04 +UM,20084,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,190,,190,1,1,1,1,1,1,1,1,1,1,1,2022-04-11,0.0,0.0,0.0,0.0,0.0,4.5,5.5,7.0,4.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-18 +UM,20084,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,140,,140,1,1,1,1,1,1,1,1,1,1,1,2022-07-25,0.0,0.0,0.0,0.0,0.0,3.0,4.0,3.0,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-18 +UM,20088,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,210,210,1,1,1,1,0,0,1,1,1,1,1,2022-04-04,0.0,0.0,0.0,0.0,0.0,4.0,4.0,3.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-05-16 +UM,20088,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,125,,125,1,1,1,1,1,1,1,1,1,1,1,2022-08-15,0.0,4.0,0.0,4.0,0.0,4.0,5.0,6.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,3.5,1,2022-05-16 +UM,20090,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,,200,1,1,1,1,0,1,1,1,1,1,1,2022-03-28,0.0,0.0,0.0,0.0,0.0,4.0,4.5,4.5,2.0,1.5,1.5,0.0,0.0,0.0,0.0,0.0,1,2022-04-11 +UM,20090,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,190,200,200,1,1,1,1,1,1,1,1,1,1,1,2022-07-11,0.0,0.0,0.0,0.0,0.0,3.5,3.5,3.5,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-11 +UM,20092,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,180,,180,1,1,1,1,1,1,1,1,1,1,1,2022-04-04,0.0,0.0,0.0,0.0,0.0,4.0,5.0,5.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-11 +UM,20094,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,240,,240,1,1,1,1,1,1,1,1,1,1,1,2022-04-18,0.0,0.0,0.0,2.0,0.0,4.0,4.0,4.0,3.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,1,2022-04-25 +UM,20094,V3,1,1,1,1,1,1,1,1,1,1,1,1,2,270,,270,1,1,1,1,1,1,1,1,1,1,1,2022-08-01,0.0,0.0,0.0,0.0,0.0,5.0,4.0,4.0,4.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-25 +UM,20097,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-04-25,0.0,0.0,0.0,0.0,,,,,,,,,,,,,1,2022-05-09 +UM,20098,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,160,160,1,1,1,1,0,1,1,1,1,1,1,2022-04-18,0.0,2.0,0.0,0.0,0.0,5.0,5.0,4.0,2.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-25 +UM,20098,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,90,140,140,1,1,1,1,1,1,1,1,1,1,1,2022-07-18,0.0,0.0,0.0,0.0,0.0,2.0,3.0,3.0,2.0,3.0,5.0,0.0,0.0,0.0,0.0,0.0,1,2022-04-25 +UM,20099,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,80,100,100,1,1,1,1,0,1,1,1,1,1,1,2022-05-09,0.0,2.0,0.0,2.0,0.0,1.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,1,2022-06-13 +WS,20100,V1,1,1,1,1,1,1,0,0,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2022-05-09,1.0,4.0,1.0,0.0,1.0,3.0,4.0,4.0,,,,7.0,4.0,1.0,0.0,4.0,0,2022-05-16 +UM,20101,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2022-05-02,0.0,3.0,0.0,4.0,0.0,4.0,8.0,8.0,4.0,5.0,5.0,0.0,0.0,0.0,0.0,6.0,1,2022-05-09 +UM,20101,V3,1,1,1,1,1,1,1,1,1,1,1,1,3,145,185,185,1,1,1,1,1,1,1,1,1,1,1,2022-08-15,0.0,3.0,0.0,3.0,0.0,3.0,6.0,7.5,4.0,4.0,5.0,0.0,0.0,0.0,0.0,3.0,1,2022-05-09 +UM,20102,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,270,,270,1,1,1,1,1,1,1,1,1,1,1,2022-05-16,0.0,0.0,0.0,0.0,0.0,4.0,4.0,4.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1,2022-06-06 +UM,20104,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,90,,90,1,1,1,1,1,1,1,1,1,1,1,2022-05-16,0.0,0.0,0.0,0.0,0.0,2.0,4.0,4.0,4.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-05-30 +UM,20105,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-05-23,4.0,5.0,4.0,5.0,0.0,,,,,,,,,,,,1,2022-05-23 +SH,20108,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,100,100,1,1,1,1,1,1,1,1,1,1,1,2022-06-06,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-06-13 +WS,20112,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,200,230,230,1,1,1,1,1,1,1,1,1,1,1,2022-06-13,0.0,0.0,0.0,3.5,0.0,4.0,4.0,4.5,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1,2022-06-20 +UM,20116,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,,,,1,1,1,1,na,1,1,na,1,1,1,2022-06-06,2.0,2.0,0.0,0.0,0.0,,,,,,,,,,0.0,3.0,1,2022-06-06 +UM,20116,V3,1,0,1,0,1,0,1,0,1,0,1,0,3,150,,150,0,0,0,0,0,0,0,0,0,0,0,na,1.0,0.0,0.0,0.0,0.0,4.0,5.0,7.0,3.0,4.0,6.0,1.0,1.0,0.0,0.0,0.0,1,2022-06-06 +UM,20121,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,150,150,1,1,1,1,1,1,1,1,1,1,1,2022-06-20,0.0,0.0,0.0,0.0,0.0,5.0,4.0,6.0,2.0,2.5,3.5,0.5,0.0,0.0,0.0,0.0,1,2022-06-20 +SH,20124,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,150,,150,1,1,1,1,1,1,1,1,1,1,0,2022-06-20,0.0,0.0,0.0,0.0,0.0,3.0,3.5,4.0,2.0,2.0,2.5,0.0,0.0,0.0,0.0,0.0,1,2022-07-04 +SH,20127,V1,1,0,1,1,1,1,1,1,1,1,1,1,3,220,,220,1,1,1,0,0,0,0,1,0,0,0,2022-06-27,0.0,5.0,0.0,5.0,0.0,4.0,4.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,5.0,1,2022-07-11 +UM,20128,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,60,80,80,1,1,1,1,1,1,1,1,1,1,1,2022-07-18,0.0,4.0,0.0,4.0,0.0,2.0,2.0,2.0,5.0,5.0,6.0,0.0,0.0,0.0,0.0,,1,2022-07-25 +UM,20130,V1,1,1,1,1,0,0,0,0,1,1,0,0,3,60,,60,1,1,1,1,na,1,1,na,1,1,1,2022-06-27,0.0,5.0,,,,,,,,,,,,,0.0,5.0,0,2022-07-04 +UM,20132,V1,1,0,1,0,1,0,1,0,1,0,1,0,3,190,140,140,0,0,0,0,0,0,0,0,0,0,0,na,0.0,1.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,4.0,5.0,3.0,3.0,3.0,4.5,5.0,1,2022-07-11 +UM,20133,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80,,80,1,1,1,1,1,1,1,1,1,1,1,2022-07-04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,8.0,8.0,0.0,0.0,0.0,0.0,0.0,1,2022-07-11 +UM,20134,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,130,170,170,1,1,1,1,1,1,1,1,1,1,1,2022-07-11,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2.0,1.0,5.0,6.0,0.0,0.0,0.0,0.0,0.0,1,2022-07-18 +SH,20135,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,80,120,120,1,1,1,1,1,1,1,1,1,1,0,2022-07-04,0.0,0.0,0.0,0.0,0.0,3.0,5.0,3.0,3.0,4.0,6.0,2.0,0.0,0.0,0.0,0.0,1,2022-07-25 +UM,20136,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,130,140,140,1,1,1,1,1,0,1,1,1,1,1,2022-07-18,0.0,0.0,0.0,3.0,0.0,5.0,5.0,5.0,6.0,6.0,6.0,0.0,0.0,0.0,0.0,4.0,1,2022-07-25 +SH,20138,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,350,,350,1,1,1,1,1,1,1,1,1,1,1,2022-07-25,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2022-08-01 +UM,20139,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,171,190,190,1,1,1,1,1,1,1,1,1,1,1,2022-08-08,0.0,4.0,0.0,3.0,0.0,2.0,3.0,4.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,3.0,1,2022-08-29 +UM,20142,V1,1,1,1,1,1,1,1,1,1,1,1,1,2,110,170,170,1,1,1,0,0,0,1,1,1,1,1,2022-07-25,5.0,0.0,0.0,0.0,0.0,3.0,4.0,3.0,3.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1,2022-08-08 +UM,20143,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,160,,160,1,1,1,1,1,1,1,1,1,1,1,2022-08-01,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,3.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,1,2022-08-15 +SH,20146,V1,1,1,1,1,1,1,1,1,1,1,1,1,3,140,135,135,1,1,1,1,1,1,1,1,1,1,0,2022-08-22,0.0,5.0,0.0,5.5,0.0,5.0,6.0,7.0,4.0,6.0,7.5,0.0,0.0,0.0,0.0,5.5,1,2022-09-12 diff --git a/datastore/src/data/imaging/mriqc-group-bold-latest.csv b/datastore/src/data/imaging/mriqc-group-bold-latest.csv new file mode 100644 index 0000000..325200a --- /dev/null +++ b/datastore/src/data/imaging/mriqc-group-bold-latest.csv @@ -0,0 +1,1870 @@ +bids_name aor aqi dummy_trs dvars_nstd dvars_std dvars_vstd efc fber fd_mean fd_num fd_perc fwhm_avg fwhm_x fwhm_y fwhm_z gcor gsr_x gsr_y size_t size_x size_y size_z snr spacing_tr spacing_x spacing_y spacing_z spikes_num summary_bg_k summary_bg_mad summary_bg_mean summary_bg_median summary_bg_n summary_bg_p05 summary_bg_p95 summary_bg_stdv summary_fg_k summary_fg_mad summary_fg_mean summary_fg_median summary_fg_n summary_fg_p05 summary_fg_p95 summary_fg_stdv tsnr +sub-10003_ses-V1_task-cuff_run-01_bold 0.0021518636363636362 0.010252279522727272 10 32.81593374906606 1.0347407227562642 1.0195968652619598 0.4182338807109066 13206.0927734375 0.21217503183565656 0 0.0 2.3400880261155823 2.2904790756512057 2.3975040713984144 2.3322809312971273 0.00778463 0.0030055460520088673 0.02000836841762066 440 90 90 60 2.878337056221832 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 3 252.02293090993606 11.806904792785645 31.967288970947266 8.300000190734863 336799.0 0.02499999850988388 130.48135681152303 98.39411926269531 3.163648347410734 238.5270233154297 990.90869140625 951.8067626953125 81487.0 492.0824798583985 1576.1327026367187 330.6773681640625 33.12279510498047 +sub-10003_ses-V1_task-rest_run-01_bold 0.0014207692307692307 0.010701698891402716 8 31.542477043083895 1.019821149591837 1.023665379160997 0.4176247786143294 13359.5078125 0.17959080295157767 44 9.95475113122172 2.3423019266075933 2.2900165756695836 2.3910290716557077 2.3458601324974886 0.00421006 0.0030414958018809557 0.020389629527926445 442 90 90 60 2.8746213425333473 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 5 243.1238466904233 11.874236106872559 32.04655075073242 8.291855812072754 337119.0 0.013574661687016487 129.28032531738234 99.44234466552734 3.1670727850705376 239.71527099609375 995.2866821289062 955.3778686523438 81383.0 493.06563415527353 1587.6840209960935 332.3470764160156 33.39635467529297 +sub-10003_ses-V1_task-rest_run-02_bold 0.001332398190045249 0.013232433597285069 8 34.440938097619 1.0123101281405902 0.9842030242403629 0.41787920858906985 12400.2978515625 0.21044505679302178 84 19.004524886877828 2.3434644205633917 2.2891665757033595 2.402333237873187 2.3388934481136276 0.00495011 0.0023200809955596924 0.020893802866339684 442 90 90 60 2.8911878481804862 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 5 261.2808917806445 12.135870933532715 31.511371612548828 8.5 336741.0 0.018099548295140266 127.96833038330078 97.5888900756836 3.11017646769922 236.5404815673828 987.5494995117188 949.0306396484375 81582.0 489.182160949707 1567.662902832031 328.24737548828125 30.48916244506836 +sub-10003_ses-V3_task-cuff_run-01_bold 0.002298480725623583 0.017981520181405895 9 40.29472336336364 1.0639915694772726 1.0020204994772732 0.41198789629788896 10784.158203125 0.21517140301578844 6 1.3605442176870748 2.3711769865093104 2.2644207433533374 2.4323415700140965 2.4167686461604974 0.00360779 0.004729478154331446 0.018674343824386597 441 90 90 60 2.760912281727407 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 7 251.36521762415148 12.358380317687988 28.824127197265625 8.721088409423828 339768.0 0.0317460335791111 113.29852828979485 84.92111206054688 4.1230362852504525 229.14271545410156 949.2135620117188 902.5634765625 79436.0 478.18424224853516 1534.8724975585938 326.9056396484375 27.399009704589844 +sub-10003_ses-V3_task-rest_run-01_bold 0.0031051247165532884 0.02138861678004535 9 39.205449927886356 1.0459656625227272 0.9888747701590909 0.41220654078895413 10535.642578125 0.21129056135751556 62 14.058956916099774 2.3965672831160796 2.2884999090631837 2.461391568859753 2.4398103714253017 0.00601485 0.005170945078134537 0.018626956269145012 441 90 90 60 2.7573816513179903 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 25 269.5036895972802 12.519752502441406 28.925857543945312 8.83900260925293 339617.0 0.0317460335791111 112.83719177246095 85.5968246459961 4.0855699746363685 229.42852783203125 947.6957397460938 901.8991088867188 79570.0 476.3828948974609 1531.5915710449221 327.0832824707031 24.421104431152344 +sub-10003_ses-V3_task-rest_run-02_bold 0.0031003401360544212 0.016274552517006803 9 40.46588760295455 1.0823365530227282 1.0069013010227268 0.41233601577136964 10634.173828125 0.2063378124631993 76 17.233560090702948 2.38137976709591 2.279716576078869 2.4439207362206483 2.4205019889882124 0.00651895 0.004724128171801567 0.01935330219566822 441 90 90 60 2.7188574443486244 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 3 258.5917978815253 12.489496231079102 29.41321563720703 8.798186302185059 339585.0 0.027210883796215057 116.60544433593738 86.78726959228516 4.1804799738094305 231.15310668945312 949.3796997070312 903.5714111328125 79670.0 471.01951446533207 1544.3190429687502 332.3328857421875 28.092437744140625 +sub-10008_ses-V1_task-cuff_run-01_bold 0.004143009049773756 0.022636813552036197 8 35.68753223448981 1.0243646547845808 0.9606880082766441 0.432912294447594 14305.646484375 0.21433548117790097 0 0.0 2.4921618447343428 2.4496665693256627 2.512291566837169 2.5145273980401974 0.017072 -0.003553100163117051 0.018359877169132233 442 90 90 60 2.6887678313332994 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 48.87925894716339 13.303170204162598 34.665409088134766 9.271493911743164 328755.0 0.05429864674806595 147.95249938964844 82.39372253417969 3.4492080157890372 311.72210693359375 1177.4498291015625 1113.873291015625 89097.0 625.098193359375 1955.182861328125 414.2667236328125 24.971878051757812 +sub-10008_ses-V1_task-rest_run-01_bold 0.0024886425339366515 0.017708306108597284 8 41.05701397646256 1.101627826145125 1.010248528344671 0.43064216285650864 13667.36328125 0.25938251182488126 132 29.86425339366516 2.4548687784913876 2.426337403586014 2.460491568895516 2.4777773629926325 0.0155151 -0.005487728398293257 0.018539344891905785 442 90 90 60 2.6424481385724934 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 44.58133526201291 13.739228248596191 35.122337341308594 9.628959655761719 330165.0 0.06787330657243729 151.91132202148435 80.66840362548828 3.451142419519324 315.8983459472656 1182.044921875 1117.728515625 88171.0 618.1968383789062 1976.78515625 422.98736572265625 25.332469940185547 +sub-10008_ses-V1_task-rest_run-02_bold 0.003620995475113122 0.02233984176470588 8 43.02948258845804 1.1268706059637188 1.1064935797052151 0.43209808108471964 14181.7861328125 0.2796411493059667 165 37.33031674208145 2.4733118445948232 2.427941570188937 2.4801499014476973 2.5118440621478353 0.020393 -0.0027048138435930014 0.019073685631155968 442 90 90 60 2.6888792177019982 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 47.95339979995861 13.19918441772461 34.1114501953125 9.242081642150879 329325.0 0.05429864674806595 146.7778381347656 79.63603973388672 2.85364580527576 308.2420654296875 1156.7388916015625 1092.7705078125 88794.0 608.3920013427735 1923.0546264648387 406.40142822265625 24.006261825561523 +sub-10008_ses-V3_task-cuff_run-01_bold 0.002887420814479638 0.030936381674208143 8 46.843588156734675 1.0560084331972792 0.989978343219955 0.4267837227949159 13193.521484375 0.2838578812095024 9 2.0361990950226243 2.53655757140595 2.5171040666459374 2.634087395330771 2.4584812522411403 0.0128117 -0.0024225381202995777 0.013943103142082691 442 90 90 60 2.4161693932327397 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 8 51.939712330380495 13.856629371643066 33.726104736328125 9.687783241271973 328737.0 0.07013574987649918 137.06244506835958 78.03499603271484 6.000741822339089 309.3037414550781 1192.97314453125 1111.386962890625 88757.0 627.2529663085937 2044.9412841796873 459.976318359375 20.724849700927734 +sub-10008_ses-V3_task-rest_run-01_bold 0.0015886681715575619 0.02129450158013544 7 44.16299888549774 1.0808663271493222 0.9888385980316735 0.4244676424288275 13267.056640625 0.2853297868301905 151 34.08577878103837 2.4626603068409154 2.494179067556895 2.4879124011392433 2.4058894518266087 0.0183066 -0.0015321673126891255 0.01399142574518919 443 90 90 60 2.2918541465009525 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 4 57.81627254622467 13.69482707977295 34.43317413330078 9.641083717346191 328903.0 0.09029345214366913 138.12257995605412 83.18768310546875 9.54709048442637 312.7688903808594 1200.8856201171875 1114.6953125 88575.0 630.1693115234375 2061.43916015625 486.3699645996094 23.919963836669922 +sub-10008_ses-V3_task-rest_run-02_bold 0.005637477477477476 0.030267655855855856 6 58.86476434051917 1.0627666747404076 1.0130040804740403 0.42696695623935477 13498.037109375 0.5223910026410882 241 54.27927927927928 2.4782311917475193 2.4897790677317353 2.478404068183737 2.4665104393270854 0.0273101 0.0009724579867906868 0.015538337640464306 444 90 90 60 2.385142352872348 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 15 61.35909316795734 13.296671867370605 33.27519989013672 9.367116928100586 328261.0 0.0833333358168602 132.64639282226562 81.38967895507812 8.529189593841767 298.2218933105469 1163.8382568359375 1084.955078125 88950.0 613.2024780273437 1971.285546875001 454.8780822753906 18.0786190032959 +sub-10010_ses-V1_task-cuff_run-01_bold 0.0015678781038374716 0.012248839864559817 7 71.12858216475115 1.1675040864705881 1.0516232710859736 0.4864773864807004 1985.7083740234375 0.5390833747376239 4 0.9029345372460497 2.519242395655469 2.4924957342904515 2.5614498982171257 2.503781554458829 0.0117939 0.022050807252526283 0.010519160889089108 443 90 90 60 2.308971831504507 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 46.56522822874513 33.72167205810547 66.37296295166016 24.530473709106445 312225.0 0.09029345214366913 260.092559814453 134.9916229248047 3.959774428880926 346.12066650390625 1178.689453125 1097.6669921875 102920.0 556.1327270507813 2091.8756835937484 475.3898010253906 26.453996658325195 +sub-10010_ses-V1_task-cuff_run-02_bold 0.001056756756756757 0.010621668716216217 6 65.06223660507905 1.1689645090519203 0.9880599087810378 0.4879061312773613 1858.736083984375 0.46384028365132146 1 0.22522522522522523 2.4914798813111 2.4737832350340194 2.5435248989294013 2.4571315099698796 0.0129763 0.021532312035560608 0.011056629940867424 444 90 90 60 2.3156530971818587 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 47.256148127283666 34.09317398071289 66.81979370117188 25.085586547851562 312399.0 0.11036036163568497 263.4709594726562 134.57473754882812 4.091658066160104 340.70135498046875 1166.3919677734375 1087.177978515625 102967.0 551.3565551757813 2064.276635742187 469.48858642578125 28.600614547729492 +sub-10010_ses-V1_task-rest_run-01_bold 0.00089368778280543 0.012652823733031672 8 74.19521137140586 1.1450809362811796 0.9837318616780046 0.4854887121985333 1977.206787109375 0.6332200836016602 350 79.18552036199095 2.5042521101369712 2.4790624014909106 2.555087398469949 2.478606530450055 0.014906 0.021236250177025795 0.011227725073695183 442 90 90 60 2.3410618565508634 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 50.07537171094717 33.23108673095703 63.89942932128906 24.50678825378418 312294.0 0.09502262622117996 246.77240829467752 128.00010681152344 4.011761187289352 339.234130859375 1168.417724609375 1089.728515625 102777.0 555.7108764648438 2057.85625 465.4824523925781 26.41370391845703 +sub-10010_ses-V1_task-rest_run-02_bold 0.0009260810810810812 0.012713597049549549 6 68.65783997115118 1.1487434228216702 1.0007718114898416 0.48940634005935874 1822.3349609375 0.5310203363252419 342 77.02702702702703 2.5073034988632172 2.4843540679473053 2.5590748983114997 2.478481530330846 0.0125068 0.023244019597768784 0.011185131035745144 444 90 90 60 2.330089865067229 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 46.98065817684377 34.133243560791016 66.99113464355469 25.119369506835938 311834.0 0.10360360890626907 264.9327819824214 135.07928466796875 4.014088523206743 335.1048583984375 1155.0255126953125 1078.3243408203125 103413.0 545.395068359375 2039.7311279296873 462.7800598144531 26.575054168701172 +sub-10010_ses-V3_task-cuff_run-01_bold 0.0008978280542986426 0.019126402126696834 8 78.17814059265314 1.157367400113379 1.006555058412698 0.4847778702066641 2135.687744140625 0.7102100785805187 165 37.33031674208145 2.5007382857353733 2.3830332386401003 2.583558230671953 2.535623387894066 0.00903003 0.033308420330286026 0.014230874367058277 442 90 90 60 2.537176273230176 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 64.14639122946488 26.448688507080078 51.2238655090332 20.00678825378418 312927.0 0.09276018291711807 193.57331695556644 112.79933166503906 4.183063730629862 262.0717468261719 963.2958374023438 909.4118041992188 102115.0 473.65318298339844 1617.5084106445302 358.432861328125 23.17241096496582 +sub-10010_ses-V3_task-rest_run-01_bold 0.0009631221719457012 0.015741537601809956 8 75.12800880133791 1.1687100857142865 0.9930930575963718 0.4836434864214605 2229.417236328125 0.6675067624238099 375 84.84162895927602 2.4814480147284583 2.3747249056369104 2.564216564773855 2.505402573774609 0.00489055 0.03354647010564804 0.013162454590201378 442 90 90 60 2.534795481586293 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 67.47300802247563 25.573211669921875 50.35880661010742 19.257919311523438 312923.0 0.09954751282930374 190.9341751098632 112.08695983886719 4.158715186563836 263.6784973144531 965.6875610351562 911.9683837890625 102134.0 473.45205078125 1617.1062011718739 359.7781066894531 25.330684661865234 +sub-10010_ses-V3_task-rest_run-02_bold 0.00075631221719457 0.015077467737556562 8 75.10769725099773 1.1688090277777778 1.0043910656689339 0.48549828708878423 2182.938720703125 0.6435883767815822 352 79.63800904977376 2.477152182044318 2.3705124058043 2.5579498983562035 2.5029942419724516 0.00618256 0.034730248153209686 0.014378811232745647 442 90 90 60 2.5462829011640533 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 61.99335635503617 25.895225524902344 51.345924377441406 19.411766052246094 312471.0 0.07466063648462296 197.67535400390625 114.1163101196289 4.139585581507625 262.47589111328125 961.9169921875 908.4367065429688 102422.0 472.26301727294924 1608.3010742187498 356.76800537109375 25.789058685302734 +sub-10011_ses-V1_task-cuff_run-01_bold 0.0009313800904977375 0.010908244049773754 8 52.18308648151923 1.2066391168253967 1.0008596769841276 0.4718507520387778 2592.595947265625 0.35681712463382 0 0.0 2.577431348229675 2.5621623981888138 2.6847707266501297 2.485360919850083 0.00902776 0.01644025556743145 0.029674673452973366 442 90 90 60 2.566111869476696 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 80.41769924884763 31.158126831054688 67.89582824707031 22.065610885620117 322592.0 0.029411766678094864 269.4862075805665 159.11367797851562 4.403141203146701 348.3779602050781 1194.284912109375 1134.6990966796875 93647.0 583.601806640625 1978.679943847656 442.18377685546875 31.380718231201172 +sub-10011_ses-V1_task-cuff_run-02_bold 0.0009265837104072399 0.015197816063348416 8 59.23504987276646 1.1626794366666666 0.9598880028344665 0.47396701674826097 2498.974609375 0.47401729850123087 19 4.298642533936651 2.595442454211037 2.5617498982052047 2.7169998920361245 2.507577572391782 0.014945 0.01690622791647911 0.029575642198324203 442 90 90 60 2.6184043503101977 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 78.00741844257321 31.181608200073242 67.7026596069336 22.208145141601562 322354.0 0.05429864674806595 269.35261840820255 157.47067260742188 4.368892259466399 337.5737609863281 1176.01025390625 1120.277099609375 93872.0 580.7400939941406 1931.5532409667965 427.844970703125 26.614423751831055 +sub-10011_ses-V1_task-rest_run-01_bold 0.001118194130925508 0.011299142731376976 7 54.48384275493216 1.2187172052036188 1.0229071014479634 0.47181587590222135 2688.606689453125 0.4262064016123943 304 68.62302483069978 2.5661341292908944 2.5463290654846404 2.6809790601341303 2.4710942622539123 0.016636 0.014446374960243702 0.030302278697490692 443 90 90 60 2.5916824958886653 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 81.64029068932801 31.017513275146484 67.8715591430664 21.95259666442871 322748.0 0.03386004641652107 270.6302536010736 157.85577392578125 4.577826654603713 346.80682373046875 1201.0550537109375 1141.2822265625 93344.0 597.8064636230469 1979.3978515625 440.361083984375 30.830291748046875 +sub-10011_ses-V1_task-rest_run-02_bold 0.001172392776523702 0.014785102257336343 7 66.62053918176471 1.2177727083710401 1.0235525529638003 0.4749921184061872 2538.910888671875 0.605926569704335 360 81.26410835214448 2.6058591185498123 2.5760957309684858 2.7242707250805407 2.517210899600411 0.0136989 0.018214499577879906 0.02960173226892948 443 90 90 60 2.6326964684690193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 75.27942525580127 31.171463012695312 67.90778350830078 22.246049880981445 321903.0 0.09029345214366913 270.93205566406164 155.96090698242188 4.363717701789029 335.4044494628906 1167.76416015625 1114.44140625 94146.0 576.7725982666016 1911.9678955078125 423.30572509765625 26.402877807617188 +sub-10011_ses-V3_task-cuff_run-01_bold 0.001416439909297052 0.01382646879818594 9 55.28311844736361 1.1860473171590897 1.0003906597954542 0.47122335601781057 2681.603515625 0.40360518289640546 3 0.6802721088435374 2.4949867328224777 2.49294573427257 2.5415498990078804 2.450464565186984 0.00453641 0.013749632053077221 0.011849712580442429 441 90 90 60 2.8010728432960175 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 48.090325570408105 29.127588272094727 62.29877853393555 20.825397491455078 326256.0 0.056689344346523285 252.70067977905273 138.817626953125 3.183117470165331 307.05340576171875 1122.1297607421875 1082.71435546875 91325.0 553.241748046875 1794.0517333984376 386.5334777832031 28.648475646972656 +sub-10011_ses-V3_task-cuff_run-02_bold 0.0011543792325056433 0.011864332437923251 7 53.95581816771493 1.2218222187782792 0.9919742844570133 0.471840481765436 2619.480712890625 0.36798164033363845 0 0.0 2.477725606017534 2.486424901198351 2.515312400050465 2.4314395168037843 0.00920084 0.012998710386455059 0.012745493091642857 443 90 90 60 2.761450815345634 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 51.696156653898186 29.673799514770508 63.915218353271484 21.019187927246094 326254.0 0.022573363035917282 263.0722351074219 142.59506225585938 3.21089592273617 307.45428466796875 1126.4278564453125 1085.0294189453125 91297.0 549.35849609375 1816.3797119140618 392.91790771484375 31.05931854248047 +sub-10011_ses-V3_task-rest_run-01_bold 0.002550248306997743 0.012023533047404063 7 50.50632050447963 1.1986278054072392 1.058698149977376 0.47161608699111957 2997.62158203125 0.4004765372955588 278 62.753950338600454 2.495167303046608 2.489687401068711 2.5283040662008895 2.467510441870224 0.0124126 0.012827446684241295 0.01300897914916277 443 90 90 60 2.7951298777990177 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 0 51.48626206116924 28.540929794311523 63.51653289794922 20.246049880981445 325980.0 0.04966140165925026 257.6699874877926 141.19082641601562 3.285534759278926 304.90228271484375 1129.7652587890625 1088.0283203125 91714.0 557.9897460937501 1810.546417236328 389.2564697265625 30.05149269104004 +sub-10011_ses-V3_task-rest_run-02_bold 0.001220722347629797 0.012135151512415348 7 60.837186554456984 1.248138110520362 0.9942472812217198 0.4723325455387226 2696.751953125 0.4439165636461437 325 73.36343115124153 2.4706533826988033 2.478704068171816 2.50341656718983 2.4298395127347634 0.00943141 0.013912552036345005 0.012473043985664845 443 90 90 60 2.77545494974831 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 2 49.85798368206025 29.123262405395508 63.60671615600586 20.65462875366211 326029.0 0.020316027104854584 261.4875793457029 141.94190979003906 3.121409641535288 303.7427062988281 1117.4271240234375 1078.11962890625 91473.0 542.2631958007812 1795.9923583984373 388.4457702636719 30.605857849121094 +sub-10013_ses-V1_task-cuff_run-01_bold 0.003375646258503402 0.013706617891156464 9 46.48179991890908 1.0484712462272727 1.0163862648181827 0.4295900214945498 9708.1171875 0.36306834215627926 17 3.854875283446712 2.4857313537469117 2.3918207382909165 2.5894415637715036 2.4759317591783145 0.00697356 -0.012525230646133423 0.025208452716469765 441 90 90 60 2.338918753303913 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 249.7416575299388 14.930242538452148 34.64877700805664 10.410430908203125 329418.0 0.043083902448415756 130.71202087402344 87.63966369628906 3.236641082757939 300.22021484375 1121.8173828125 1022.378662109375 89500.0 581.8972686767578 1995.5543640136718 437.1134948730469 25.57939910888672 +sub-10013_ses-V1_task-rest_run-01_bold 0.002205328798185941 0.010010331541950114 9 43.26541357043183 1.0921075645227272 1.0195646606590905 0.4271142972181044 9698.2548828125 0.3039963993071492 196 44.44444444444444 2.488324411640734 2.398054071376559 2.60327489655515 2.463644266990492 0.00741489 -0.011887453496456146 0.025461232289671898 441 90 90 60 2.273330251845947 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 251.51341362711133 14.883174896240234 34.26958465576172 10.351473808288574 329162.0 0.02947845868766308 128.17665252685552 88.80768585205078 3.454869289412194 306.97265625 1123.1571044921875 1020.688232421875 89766.0 569.8395690917969 2024.5255432128906 448.981201171875 29.816526412963867 +sub-10013_ses-V1_task-rest_run-02_bold 0.001662085201793722 0.015093669977578474 4 43.0598642885393 1.0591318386741573 0.9892353823370784 0.43098897180031814 8987.30078125 0.28545865996049197 177 39.68609865470852 2.4595244170087915 2.3642957393846618 2.571891564468878 2.442385947172834 0.0152741 -0.012239646166563034 0.023543039336800575 446 90 90 60 2.3972248054124017 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 199.45438419861722 15.228253364562988 33.89253234863281 10.591928482055664 329219.0 0.03139013797044754 128.3320724487304 81.5249252319336 2.8964625450013504 293.2494812011719 1104.6033935546875 1009.4282836914062 89705.0 577.3973510742187 1945.7018554687502 421.0796813964844 25.97542953491211 +sub-10013_ses-V3_task-cuff_run-01_bold 0.0033972850678733032 0.012341888529411765 8 43.146685411904805 1.0867773148979587 1.0576474100907025 0.4211355538760009 11189.439453125 0.3447840357733805 7 1.583710407239819 2.530570232841383 2.4375999031384827 2.637849895181263 2.5162609002044043 0.022302 -0.013696236535906792 0.020627979189157486 442 90 90 60 2.151909395736804 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 202.9168225905813 14.966903686523438 35.64991760253906 10.441177368164062 331156.0 0.0429864265024662 136.580322265625 89.70292663574219 6.8380800901766055 324.91448974609375 1213.48046875 1092.2467041015625 88461.0 640.4932250976562 2193.1357421875 507.5680847167969 27.361679077148438 +sub-10013_ses-V3_task-rest_run-01_bold 0.00164158371040724 0.011163358574660632 8 41.73940590247165 1.086890984671203 1.0378197403854876 0.4197992682849195 10736.7431640625 0.30513008672692765 210 47.51131221719457 2.5345660715169447 2.451154069266555 2.6639707274766473 2.4885734178076313 0.0107225 -0.014220742508769035 0.019701426848769188 442 90 90 60 2.0986521449767572 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 199.72397888669184 15.4901762008667 36.07360076904297 10.71267032623291 331544.0 0.03619909659028053 137.49480361938467 90.32418060302734 7.294124723264234 333.74993896484375 1237.9193115234375 1109.901611328125 88212.0 647.598565673828 2266.5292236328123 528.8610229492188 29.601238250732422 +sub-10013_ses-V3_task-rest_run-02_bold 0.0013244796380090496 0.014970475904977375 8 39.90513529530614 1.0369709861451253 0.9829303760770977 0.42031604490343466 10680.7314453125 0.2954438384670349 206 46.60633484162896 2.5835743884504008 2.4898332343962495 2.6995748927285317 2.5613150382264216 0.0173497 -0.014252929948270321 0.019212467595934868 442 90 90 60 2.082860728994199 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 180.6423218460274 15.60086727142334 36.400856018066406 10.787330627441406 331495.0 0.03846153989434242 140.1712722778318 88.42607879638672 7.1936421956648555 334.13397216796875 1228.919921875 1101.555419921875 88482.0 637.3766265869141 2260.170178222656 528.8635864257812 25.405349731445312 +sub-10014_ses-V1_task-cuff_run-01_bold 0.0010365237020316027 0.01538626756207675 7 42.73085896260182 1.0609714858597292 1.0071287131447957 0.45043814146828937 5033.53955078125 0.31545356275685094 0 0.0 2.44216586850574 2.397395738069386 2.5170623999809263 2.4120394674669074 0.019778 0.012096134014427662 0.021112358197569847 443 90 90 60 3.58196946914796 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 106.19977943414605 18.70823097229004 40.863590240478516 13.27991008758545 332851.0 0.02483070082962513 152.8273162841797 101.17559814453125 2.5280027402186915 203.75405883789062 953.3173217773438 930.05419921875 85046.0 558.5045471191406 1388.0293579101562 259.6473083496094 30.537397384643555 +sub-10014_ses-V1_task-rest_run-01_bold 0.001216779279279279 0.02053183761261261 6 43.01826293634314 1.0326048563205423 0.9833835893453725 0.44993473760152125 4928.91357421875 0.2942269425202985 211 47.52252252252252 2.467263118931518 2.407724904325608 2.548108232080609 2.445956220388337 0.00675664 0.012448371388018131 0.021491365507245064 444 90 90 60 3.599429886359919 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 0 95.81717133404183 18.89984130859375 40.265750885009766 13.47747802734375 332845.0 0.06756757199764252 148.10360717773438 98.69800567626953 2.395696361418752 204.14833068847656 958.005126953125 934.712890625 85058.0 563.0094940185547 1394.5301818847654 259.68206787109375 29.255531311035156 +sub-10014_ses-V1_task-rest_run-02_bold 0.001715337837837838 0.016307464527027027 6 43.06027239765241 1.076775138442438 1.005597284875847 0.451100734571855 4743.03076171875 0.2755441873998635 188 42.34234234234234 2.4576005994058145 2.408183237640729 2.5417873989984434 2.422831161578271 0.00995708 0.013231972232460976 0.021037330850958824 444 90 90 60 3.57614930605382 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 6 97.01386882574744 18.776288986206055 40.58841323852539 13.416666984558105 332478.0 0.03378378599882126 152.74133377075188 100.35553741455078 2.49445607835648 201.68739318847656 944.1262817382812 920.2860717773438 85396.0 553.0321197509766 1374.4049072265625 257.33843994140625 30.14931297302246 +sub-10015_ses-V1_task-cuff_run-01_bold 0.0013651357466063349 0.01752905846153846 8 57.57827987163259 1.0959796200680278 0.984931156281179 0.4673414601496534 1913.5723876953125 0.4407919247888694 5 1.1312217194570136 2.525996572601849 2.437241569819388 2.605112396482134 2.5356357515040253 0.00519883 0.020319154486060143 0.004430788103491068 442 90 90 60 2.6067458568193738 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 69.69717589823487 28.048690795898438 52.13663864135742 21.567874908447266 327200.0 0.14027149975299835 195.10250015258774 106.09882354736328 7.357199685941124 242.7325439453125 1009.545166015625 942.70703125 91144.0 563.5298797607422 1663.3519226074209 361.63934326171875 26.052488327026367 +sub-10015_ses-V1_task-rest_run-01_bold 0.0015249887133182843 0.015790718916478555 7 54.00665102821272 1.0985255643212672 1.0030951644117645 0.46647025211883286 1997.661865234375 0.3898626480286562 274 61.8510158013544 2.5065576705859076 2.4305124034201144 2.5954998968641 2.4936607114735074 0.00322703 0.020970109850168228 0.003953908104449511 443 90 90 60 2.611691987500045 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 57.52773271354627 27.4130802154541 50.79716491699219 21.009029388427734 326909.0 0.1286681741476059 189.29300537109333 102.21553802490234 6.887900056085591 240.0175018310547 1000.5309448242188 935.2302856445312 91193.0 557.472705078125 1652.4262451171871 358.0916748046875 26.76982879638672 +sub-10015_ses-V1_task-rest_run-02_bold 0.0014474717832957111 0.018627207674943566 7 56.39991672219459 1.086209932104072 0.9933285594570139 0.4679652187821454 1832.2191162109375 0.43718355575557566 282 63.6568848758465 2.538100738768223 2.454583235796959 2.6241415623926496 2.5355774181150608 0.00450752 0.021023206412792206 0.00436739856377244 443 90 90 60 2.604075681417345 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 60.28072768511573 28.63129425048828 52.131961822509766 22.03160285949707 327203.0 0.15575620532035828 193.92077941894522 104.64344787597656 7.483364387458421 241.704345703125 1007.88818359375 940.356689453125 91174.0 566.7193023681641 1663.9025939941396 361.10760498046875 24.730058670043945 +sub-10015_ses-V3_task-cuff_run-01_bold 0.0018726351351351352 0.019900654279279277 6 57.55291779916478 1.0528321497742654 0.9900950698419855 0.4718069963950613 1747.8956298828125 0.4878018452748039 20 4.504504504504505 2.5795854696582947 2.489499901076162 2.682524893406038 2.5667316144926846 0.00611803 0.023465657606720924 0.016138892620801926 444 90 90 60 2.6706342797897213 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 193.20284933070627 27.421464920043945 49.71613693237305 20.99549674987793 324250.0 0.13063062727451324 178.94640350341786 113.53277587890625 6.239837400553041 236.15118408203125 926.7862548828125 873.68359375 93408.0 514.6202880859375 1514.5915771484372 327.1428527832031 22.931488037109375 +sub-10015_ses-V3_task-rest_run-01_bold 0.0026714221218961626 0.01743876586907449 7 58.115927942172014 1.0989749024660633 1.0177168940045247 0.47074958616891405 1791.63427734375 0.47150437219624447 303 68.39729119638827 2.5915493621558072 2.50831240032862 2.6872707265507887 2.5790649595880124 0.00953129 0.023664990440011024 0.01292699109762907 443 90 90 60 2.6292781046562976 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 178.53505503137984 27.148691177368164 49.548133850097656 20.814899444580078 324525.0 0.14672686159610748 180.2460479736328 110.07440948486328 6.320490346693154 240.99815368652344 933.3474731445312 879.2054443359375 93311.0 512.6580200195312 1535.4718017578125 334.3886413574219 24.007083892822266 +sub-10015_ses-V3_task-rest_run-02_bold 0.0030127313769751692 0.022519740857787813 7 61.68564891377831 1.0689670185520357 1.0300701493438922 0.4730759100628408 1641.312255859375 0.591794065657889 296 66.81715575620767 2.6600993808026434 2.555883231771659 2.7808123895004435 2.6436025211358274 0.00354101 0.02369537390768528 0.016314798966050148 443 90 90 60 2.5608318127658074 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 19 178.91924041542043 28.089120864868164 50.789794921875 21.52144432067871 323142.0 0.22347630560398102 181.68115310668958 115.49101257324219 6.320818635614563 246.67428588867188 925.0706787109375 869.43115234375 94433.0 507.0361328125 1541.2722656249998 339.5094299316406 21.314373016357422 +sub-10017_ses-V1_task-cuff_run-01_bold 0.0016899097065462753 0.0169651188261851 7 58.61010125972852 1.127670763981901 0.9944630105429856 0.445022765411788 3200.6201171875 0.4177234563566406 19 4.288939051918736 2.47576332783096 2.5273248995731312 2.5712207311622013 2.3287443527575475 0.0118713 0.00766989029943943 0.03721451759338379 443 90 90 60 2.389183983838552 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 306.9846558810936 22.76447105407715 40.473201751708984 16.01805877685547 327210.0 0.006772009190171957 138.79006958007812 98.56421661376953 4.630336039031044 266.751220703125 982.9707641601562 913.01806640625 89005.0 494.1548583984375 1705.3056884765633 382.1442565917969 24.355993270874023 +sub-10017_ses-V1_task-rest_run-01_bold 0.0045260810810810815 0.02205605968468469 6 58.80943769376972 1.1199469462753953 1.0289276971331827 0.4450173360745786 3162.27734375 0.44324869537601463 280 63.06306306306306 2.5129549824805095 2.552883231890868 2.6041915631853914 2.38179015236527 0.00999284 0.007891575805842876 0.03661123663187027 444 90 90 60 2.403684751527036 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 298.37337501804353 22.89017677307129 39.919166564941406 16.240991592407227 326933.0 0.020270271226763725 136.2833404541014 95.50348663330078 4.601614696343563 265.7665100097656 984.0494384765625 915.1846923828125 89315.0 493.7677978515625 1699.635400390625 380.7402648925781 20.756668090820312 +sub-10017_ses-V1_task-rest_run-02_bold 0.0033582997762863524 0.015061489149888143 3 62.59271787634529 1.174370221479821 1.075966827399103 0.4449914731726997 3513.86962890625 0.4897911071062606 331 74.04921700223714 2.481899437997062 2.5280748995433293 2.585349897267425 2.3322735171804316 0.0129213 0.00784902274608612 0.03805140033364296 447 90 90 60 2.393593922386267 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 330.4729082232742 22.15611457824707 40.50827407836914 15.581655502319336 327184.0 0.01342281885445118 139.78735504150353 99.24932861328125 4.76314668281805 266.90985107421875 981.7935791015625 912.6778564453125 89042.0 496.594174194336 1699.1772094726555 381.2980651855469 24.104625701904297 +sub-10020_ses-V1_task-cuff_run-01_bold 0.0025319501133786847 0.008980284716553289 9 36.51981125727277 1.1494704857499998 1.032249210568181 0.42122755840802095 13794.236328125 0.17708201625100478 0 0.0 2.4299244364107526 2.420237403828406 2.5188832332419064 2.3506526721619463 0.0130048 -0.006866133771836758 0.02366357110440731 441 90 90 60 2.393624006299572 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 336.8806204144165 14.1435546875 40.75436019897461 9.698412895202637 335498.0 0.004535147454589605 184.10986175537084 109.85948181152344 5.5515072570577235 337.34075927734375 1232.907958984375 1137.437744140625 83652.0 651.7893615722656 2119.8010253906245 475.1919860839844 34.968929290771484 +sub-10020_ses-V1_task-rest_run-01_bold 0.001599593679458239 0.011289599774266365 7 37.029995426425316 1.0825292271945697 0.9980712364705888 0.4214528892749597 13484.6845703125 0.19265803076206336 35 7.900677200902934 2.4465202640604553 2.4329915699882676 2.530629066108502 2.375940156084597 0.0146418 -0.006455509923398495 0.02361174300312996 443 90 90 60 2.4009310971595355 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 341.4918463724777 14.230303764343262 41.121646881103516 9.841986656188965 335651.0 0.018058691173791885 183.98533630371094 109.83585357666016 5.446619135127717 337.64349365234375 1234.759521484375 1141.0068359375 83542.0 653.6562408447265 2123.506018066406 475.2322998046875 31.263935089111328 +sub-10020_ses-V1_task-rest_run-02_bold 0.0020498871331828443 0.008060726772009029 7 36.33386348246606 1.1477818748190056 1.03427210780543 0.421564979680104 14069.8857421875 0.17306967372443352 18 4.063205417607223 2.4283216605137765 2.4256415702803302 2.5178165666176255 2.3415068446433738 0.0185321 -0.00699335802346468 0.023297080770134926 443 90 90 60 2.3661203752462505 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 346.9223421616141 13.962565422058105 41.06974411010742 9.623024940490723 335117.0 0.009029345586895943 185.53092346191409 110.09785461425781 5.8562863518903505 339.73681640625 1228.98193359375 1134.796875 83983.0 640.264324951172 2122.3823974609363 479.5994873046875 36.11288070678711 +sub-10023_ses-V1_task-cuff_run-01_bold 0.001376447963800905 0.012453769660633485 8 49.15012674056688 1.1287395618820857 0.9775896162811789 0.41390407789573186 10173.2998046875 0.26379621526432195 0 0.0 2.384584187763347 2.4614249021917622 2.4792249014844536 2.2131027596138257 0.00255638 -0.006024467758834362 0.01689688302576542 442 90 90 60 2.4849366916774267 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 149.01713114188112 16.00338363647461 31.27174949645996 11.242081642150879 333569.0 0.022624434903264046 118.2923110961913 75.39041137695312 6.143379663970251 315.2542419433594 1213.2786865234375 1138.142578125 84115.0 610.1434814453125 2038.1863037109376 458.0140075683594 31.454496383666992 +sub-10023_ses-V1_task-cuff_run-02_bold 0.0010555429864253392 0.009877964343891403 8 50.45222201528344 1.187572549818594 0.9864850772562355 0.41362581767737805 10112.177734375 0.2530211911743099 0 0.0 2.3541633630380785 2.4318374033674637 2.4547915691220137 2.175861116624758 0.00254472 -0.005987898912280798 0.017226623371243477 442 90 90 60 2.482124640990403 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 128.88664932253283 15.96313190460205 31.399457931518555 11.242081642150879 333852.0 0.020361991599202156 119.51787796020514 75.53617858886719 6.4611626444483825 312.2655944824219 1211.9024658203125 1135.0147705078125 83826.0 613.0373382568359 2036.6086730957031 457.27276611328125 34.43856430053711 +sub-10023_ses-V1_task-rest_run-01_bold 0.0011197963800904976 0.014035769819004526 8 52.042428269909266 1.1301182677324262 0.9757501921995461 0.41419084318419686 10332.935546875 0.31704360789861513 218 49.321266968325794 2.3956786284762672 2.4784540681817506 2.4789165681633722 2.229665249083679 0.00678958 -0.00593003211542964 0.016658965498209 442 90 90 60 2.454231906530728 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 152.3321202015933 15.845731735229492 31.46965789794922 11.228507041931152 333095.0 0.05203619971871376 117.81041564941395 76.36284637451172 6.67017094770776 318.52301025390625 1220.119384765625 1142.4853515625 84376.0 612.28564453125 2059.5137329101562 465.5137023925781 29.461711883544922 +sub-10023_ses-V1_task-rest_run-02_bold 0.001305972850678733 0.014443077737556561 8 49.658308872834496 1.1441569808843537 0.9633425979818596 0.41463492552421477 9496.0732421875 0.26544507724624766 193 43.665158371040725 2.3946272429140323 2.476249901602669 2.4944999008774795 2.2131319262619487 0.00313023 -0.004892379976809025 0.016147218644618988 442 90 90 60 2.4699854565614374 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 127.82774113298359 16.33881378173828 31.64494514465332 11.617647171020508 333546.0 0.05882353335618973 119.00113487243652 74.80973815917969 6.438180990279108 313.48638916015625 1210.1929931640625 1134.53955078125 84138.0 606.4752624511718 2034.5534790039062 459.3277282714844 29.47630500793457 +sub-10023_ses-V3_task-cuff_run-01_bold 0.001629546485260771 0.015452860430839002 9 60.66604902963641 1.1993969517272725 0.9613109057500008 0.41149644767118276 13053.2568359375 0.3013482529380624 0 0.0 2.4929702622461565 2.5820665640645597 2.521062399821981 2.3757818228519296 0.0026182 -0.007864221930503845 0.025767114013433456 441 90 90 60 2.3783263926150777 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 280.23634401821835 14.425955772399902 29.659868240356445 9.895691871643066 331880.0 0.0022675737272948027 115.13866119384757 72.995361328125 4.279459172461516 373.6392822265625 1214.3046875 1144.184814453125 85822.0 568.6894439697265 2080.2877563476554 481.0854187011719 27.678058624267578 +sub-10023_ses-V3_task-rest_run-01_bold 0.001984446952595937 0.008602238103837472 7 39.63024277056562 1.1470024723529404 1.0095538761085974 0.4089517467412258 14450.4716796875 0.17571757907632157 60 13.544018058690744 2.466895267755113 2.560187398267293 2.4872290678330633 2.353269337164982 0.00631199 -0.00896121934056282 0.024074720218777657 443 90 90 60 2.337136494373434 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 296.1892073581709 13.939138412475586 30.0933780670166 9.670429229736328 332828.0 0.015801355242729187 119.78251190185539 72.30777740478516 4.860423241855895 384.2550354003906 1244.9912109375 1168.3837890625 84623.0 594.215380859375 2149.5786132812495 499.9181213378906 34.57673645019531 +sub-10023_ses-V3_task-rest_run-02_bold 0.0015605895691609977 0.013711940476190477 9 61.90255428670461 1.201659609227273 0.999591230204545 0.41370963808532896 13372.3193359375 0.3403364349179596 258 58.50340136054422 2.471191098105567 2.554595731822819 2.491554067661203 2.367423494832678 0.00354782 -0.007918909192085266 0.027365518733859062 441 90 90 60 2.4256397371102953 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 271.0530434086388 14.17717456817627 29.752779006958008 9.725624084472656 332629.0 0.004535147454589605 117.06394500732412 71.40885925292969 3.876665407390936 360.68768310546875 1193.24462890625 1126.5556640625 85792.0 560.8792572021484 2031.8802307128904 464.4338073730469 27.891826629638672 +sub-10024_ses-V1_task-cuff_run-01_bold 0.0011166591422121896 0.015895068532731378 7 36.25478136904977 1.015581851334843 0.9745970452714936 0.40750248814338486 8596.560546875 0.14736421888202195 0 0.0 2.4304563533141175 2.323229074349838 2.4789749014943876 2.4891650840981265 0.0161547 -0.0019862812478095293 0.01721723936498165 443 90 90 60 2.9062927093032926 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 17 204.84773241436764 15.0167875289917 37.19807052612305 10.521445274353027 351125.0 0.015801355242729187 144.9814971923828 101.42527770996094 8.532276464488497 227.71835327148438 1015.2841186523438 961.892822265625 70850.0 596.6760894775391 1584.4617797851574 330.9666748046875 30.00503921508789 +sub-10024_ses-V1_task-rest_run-01_bold 0.0007563574660633484 0.012242287149321268 8 35.41149302444442 1.0606800319727885 0.9965825777324266 0.40853671001800257 8469.3955078125 0.15002055811771045 12 2.7149321266968327 2.3862230343183413 2.2992749086350237 2.433545736632914 2.425848457687087 0.0106477 -0.0022983644157648087 0.018287725746631622 442 90 90 60 2.938684522553899 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 212.40096897506342 15.329168319702148 37.847572326660156 10.717195510864258 350945.0 0.011312217451632023 147.38869018554672 103.89378356933594 8.453335526156039 225.9827880859375 1032.0201416015625 976.4400634765625 70890.0 608.2653015136718 1603.232110595703 332.268798828125 35.354331970214844 +sub-10024_ses-V1_task-rest_run-02_bold 0.0008823476297968397 0.012481839548532731 7 35.52494711875568 1.0628807403393659 1.0468735758144796 0.4067998035300813 8508.2490234375 0.13156499210647327 9 2.0316027088036117 2.416098028842996 2.331645740682056 2.469216568548816 2.4474317772981156 0.0082177 -0.001059016678482294 0.017693081870675087 443 90 90 60 2.9066614797521533 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 244.77339068179893 14.87622356414795 36.077091217041016 10.43566608428955 350674.0 0.018058691173791885 138.19492797851558 100.73795318603516 8.042508961909087 228.12664794921875 1006.257568359375 954.1129150390625 71253.0 585.4225952148438 1569.227587890625 328.2481384277344 34.601985931396484 +sub-10024_ses-V3_task-rest_run-01_bold 0.0020812954545454546 0.008511805477272727 10 33.53067517986332 1.0962706678132121 1.0115968974259677 0.40288682938686393 14758.744140625 0.10494511673734305 0 0.0 2.411052205023385 2.3760332389182555 2.4565665690514815 2.4005568071004184 0.00352475 -0.004334903322160244 0.018211128190159798 440 90 90 60 2.9500873892274897 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 143.64716405303392 13.717440605163574 39.067447662353516 9.320454597473145 351219.0 0.0 170.37090759277334 100.91542053222656 3.294589724514097 309.6717529296875 1175.8218994140625 1125.259033203125 70841.0 652.8295288085938 1851.8953857421875 381.42974853515625 37.555442810058594 +sub-10024_ses-V3_task-rest_run-02_bold 0.0006901128668171557 0.00812451749435666 7 34.310729557556556 1.089086672828055 0.9850918128733024 0.40279469112732635 14593.0966796875 0.11202775396484646 0 0.0 2.4120119280353127 2.3825082386609617 2.457137402362132 2.396390143082846 0.00666348 -0.005076873581856489 0.019938034936785698 443 90 90 60 2.9487576224798637 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 167.62956430850184 13.862163543701172 39.51139831542969 9.395033836364746 351308.0 0.0 171.11061096191406 104.16246795654297 3.239130119461544 309.0306396484375 1181.984375 1128.7200927734375 70793.0 660.8903076171875 1862.7742919921873 382.7754821777344 38.57349395751953 +sub-10026_ses-V1_task-cuff_run-01_bold 0.0007785294117647059 0.009703089208144796 8 49.3541473680952 1.1934541195918371 1.0044662127210893 0.4545296151018272 7611.111328125 0.2541025544857968 0 0.0 2.377102220090602 2.43629990319014 2.3634957394164506 2.331511017665216 0.0105833 0.013159909285604954 0.011936971917748451 442 90 90 60 2.898394451279792 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 62.41030674684593 16.75474739074707 41.061649322509766 11.669683456420898 322735.0 0.0067873308435082436 159.928057861328 105.88743591308594 3.6991030322824114 265.40264892578125 1062.42822265625 1019.069091796875 93706.0 556.3936920166016 1688.5905456542969 351.5959167480469 35.48369598388672 +sub-10026_ses-V1_task-rest_run-01_bold 0.0007419638826185101 0.012019658306997742 7 48.96973258651583 1.1783850405656102 0.9851699477149314 0.4546622193081515 7639.3310546875 0.26760903133032693 196 44.24379232505643 2.3743661087843964 2.4268290702331434 2.3632290727603804 2.3330401833596657 0.0111422 0.013596707955002785 0.012016047723591328 443 90 90 60 2.9174644200081605 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 59.90949593592594 16.805614471435547 40.96015930175781 11.687358856201172 322824.0 0.0022573363967239857 157.80779724121086 105.9966049194336 3.689147297301793 266.1689147949219 1066.682373046875 1023.8690795898438 93545.0 563.6478881835938 1688.4479248046875 350.9429626464844 34.702632904052734 +sub-10026_ses-V1_task-rest_run-02_bold 0.0008781981981981983 0.009408115698198199 6 44.87008295837472 1.1634864220316017 0.9982661072686236 0.45472528520539085 7559.49951171875 0.2186971140944738 101 22.74774774774775 2.3799313864221587 2.438587403099243 2.3685749058812897 2.332631850285943 0.0114924 0.013255133293569088 0.011335322633385658 444 90 90 60 2.8949549762311753 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 59.496245306617865 16.846235275268555 41.20304489135742 11.659910202026367 322758.0 0.0022522523067891598 161.01159973144522 105.52461242675781 3.6144817024817684 265.2790222167969 1059.53759765625 1017.4031982421875 93739.0 552.4513549804688 1683.1153198242187 351.4382019042969 36.08821105957031 +sub-10028_ses-V1_task-cuff_run-01_bold 0.0012763656884875849 0.014917111015801354 7 30.14315668585973 0.9878706788235284 0.9608158367194563 0.44525248254129973 5948.08837890625 0.11743858295853417 0 0.0 2.4517410986714796 2.496004067484376 2.4907540676929925 2.368465160837071 0.0118073 0.005784430541098118 0.018704712390899658 443 90 90 60 2.566317838914961 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 65.15931167330713 21.73367691040039 48.10982894897461 15.316027641296387 326591.0 0.06997742503881454 189.2099380493164 111.13449096679688 4.768910107204594 338.36968994140625 1252.1695556640625 1178.0576171875 90372.0 648.2414306640626 2094.225683593749 459.0433349609375 31.21343994140625 +sub-10028_ses-V1_task-rest_run-01_bold 0.0011192272727272728 0.012849244295454545 10 29.0501288847836 0.9828629504328016 0.949085714009112 0.4437257422198361 6619.4169921875 0.1103694135457914 3 0.6818181818181818 2.45561054064421 2.494199900889401 2.4924999009569526 2.3801318200862758 0.0180099 0.006139995530247688 0.01869392953813076 440 90 90 60 2.5495429033557686 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 71.86026636409073 21.14392852783203 48.44314956665039 14.736363410949707 326826.0 0.029545454308390617 188.4124984741211 114.91984558105469 4.862755151988428 346.91033935546875 1266.951416015625 1191.6624755859375 90210.0 656.9732635498046 2127.6545043945316 467.3998107910156 32.61373519897461 +sub-10028_ses-V1_task-rest_run-02_bold 0.0014071040723981898 0.009601880067873304 8 29.232467577664398 1.0404412989115643 0.9801766818140595 0.4445750456832948 6477.58984375 0.10680254769678184 1 0.22624434389140272 2.4265508295745613 2.4850582345859915 2.4647832353916472 2.3298110187460463 0.00529146 0.005677470006048679 0.019815048202872276 442 90 90 60 2.5426027723367306 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 85.83603646706416 21.09857177734375 48.38077163696289 14.755657196044922 326747.0 0.04072398319840431 190.90317230224625 114.0130615234375 4.968730724260896 343.24920654296875 1250.651611328125 1178.3665771484375 90297.0 642.1425537109375 2092.6715332031245 463.4463806152344 35.45384216308594 +sub-10028_ses-V3_task-cuff_run-01_bold 0.0008722095671981777 0.0077728423917995445 11 33.1463811212557 1.0900239635388127 0.9964705993607299 0.4528036207793316 6783.77392578125 0.11096914459741687 0 0.0 2.350008993808349 2.347333240058691 2.426124903594458 2.2765688377718964 0.00321989 0.015122679993510246 0.014304726384580135 439 90 90 60 2.8548476716232773 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 52.969684048048194 17.83681869506836 42.89726638793945 12.509111404418945 323094.0 0.006833713501691818 160.13668823242188 114.66592407226562 4.840530602118193 252.2955780029297 1083.9700927734375 1029.076416015625 93502.0 593.2491271972656 1740.0614135742187 360.4643859863281 40.649024963378906 +sub-10028_ses-V3_task-rest_run-01_bold 0.001087900677200903 0.008698620316027089 7 31.388670390769253 1.055251438144797 0.993013463099547 0.4533250511154548 6935.0419921875 0.09705402254394734 1 0.22573363431151242 2.3588201052730042 2.3601082395510575 2.437658236469498 2.2786938397984566 0.00479908 0.015727728605270386 0.016410771757364273 443 90 90 60 2.8373316854053514 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 56.51008756335396 17.720947265625 43.70344924926758 12.54853343963623 323037.0 0.013544018380343914 163.88758239746096 117.8218765258789 5.191857014632795 255.8124542236328 1089.619140625 1033.795654296875 93558.0 595.9063415527344 1743.901538085937 364.3529357910156 38.902523040771484 +sub-10028_ses-V3_task-rest_run-02_bold 0.001559343891402715 0.009468729027149321 8 31.75138682403628 1.057730881723357 0.9900701207256243 0.45402225290054193 6777.4287109375 0.10068657711636751 0 0.0 2.3587826076214293 2.356162406374518 2.4344040699321403 2.2857813465576298 0.00624464 0.015082502737641335 0.015268178656697273 442 90 90 60 2.855501797984995 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 52.02533421651391 17.841543197631836 43.53681564331055 12.549774169921875 323165.0 0.013574661687016487 164.74751586914056 114.89175415039062 5.055239077606197 252.7635955810547 1084.90087890625 1028.8077392578125 93396.0 599.7675628662109 1737.6861877441406 360.2877197265625 36.98723602294922 +sub-10029_ses-V1_task-cuff_run-01_bold 0.0008536651583710407 0.01928526515837104 8 53.162933012312934 1.0926132219501141 0.9779314449886617 0.4360950628544124 4437.00732421875 0.2796314380037671 1 0.22624434389140272 2.4587090560006684 2.4264290702490383 2.4722707350941207 2.4774273626588466 0.00602074 -0.005964295007288456 0.03158295154571533 442 90 90 60 3.282996047710017 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 416.9998436552604 16.99961280822754 30.738000869750977 12.782806396484375 333758.0 0.05203619971871376 103.81199531555129 85.55352783203125 1.5885684163206957 215.1115264892578 872.9227905273438 858.8846435546875 84749.0 456.7828247070313 1317.0421386718745 261.61456298828125 26.39139175415039 +sub-10029_ses-V1_task-rest_run-01_bold 0.0008183295711060949 0.015907939571106092 7 54.383568180950206 1.1177566080769235 0.9869838747963803 0.4356607693686734 4406.083984375 0.26836192548613624 189 42.66365688487585 2.4315534900764884 2.4057374044045843 2.446066569468714 2.442856496356166 0.00712424 -0.00615416606888175 0.03134842962026596 443 90 90 60 3.2787999875228837 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 9 490.7381188944804 16.9813175201416 30.72134017944336 12.853273391723633 334154.0 0.08577878028154373 103.86083679199214 86.78996276855469 1.6642844539869763 215.0408935546875 877.3785400390625 861.6602783203125 84646.0 458.53895568847656 1327.5169677734375 262.7958984375 27.886503219604492 +sub-10029_ses-V1_task-rest_run-02_bold 0.0009836794582392776 0.015804594040632055 7 53.31867242208153 1.1259302753846145 1.0121885226696825 0.4352054271716844 4466.53466796875 0.2627792009720592 167 37.69751693002257 2.426771545390203 2.400383237950673 2.4383790697741876 2.441552328445748 0.00666508 -0.00611862214282155 0.031009746715426445 443 90 90 60 3.286886629506595 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 467.30275663668624 16.894304275512695 30.732812881469727 12.753951072692871 334600.0 0.045146726071834564 105.34334259033197 86.48894500732422 1.6164777988678551 215.02085876464844 874.127685546875 859.64111328125 84175.0 457.90385742187505 1320.2613891601563 261.5350341796875 27.850757598876953 +sub-10030_ses-V1_task-cuff_run-01_bold 0.0010802267573696144 0.011135332040816327 9 35.975099481250005 1.0410660907499998 0.9945746548409086 0.45538531074062105 4235.81982421875 0.1427993326692732 2 0.45351473922902497 2.3909202645536856 2.371899905749166 2.416283237318864 2.3845776505930263 0.0123454 0.01718110404908657 0.018062250688672066 441 90 90 60 2.41628635325681 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 234.91477570490338 22.81728172302246 46.93773651123047 16.716552734375 319418.0 0.0793650820851326 186.11610717773377 114.39192962646484 3.5750329337694504 340.0841064453125 1184.7203369140625 1102.6995849609375 96944.0 594.6272186279298 2038.1668457031244 456.35894775390625 31.672069549560547 +sub-10030_ses-V1_task-cuff_run-02_bold 0.0021176712328767125 0.013718654497716894 12 39.370916580343234 1.085672675286042 1.0366734062929068 0.45611610487809695 4498.74169921875 0.22183484430921402 3 0.684931506849315 2.4096424787055537 2.3765874055629013 2.430887403405213 2.4214526271485473 0.0125971 0.016665132716298103 0.018666459247469902 438 90 90 60 2.451946269882361 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 233.70959051484235 22.394739151000977 46.57966613769531 16.39269256591797 319333.0 0.0776255652308464 183.89588317871085 113.04464721679688 3.4675500663233105 333.6329345703125 1174.72509765625 1095.0753173828125 97021.0 594.0182495117188 2012.7579345703125 446.6124267578125 27.8220272064209 +sub-10030_ses-V1_task-rest_run-01_bold 0.0017033408577878104 0.011678925462753951 7 33.00007301450228 1.027734005022623 1.0221178640723982 0.45568919315132234 4274.70458984375 0.10744479378974055 3 0.6772009029345373 2.414474425640201 2.3926665715906394 2.442804069598354 2.407952635731611 0.0179663 0.016555041074752808 0.01653672382235527 443 90 90 60 2.3745379229962094 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 196.11675189585105 23.356843948364258 48.78554153442383 17.06546401977539 319578.0 0.06094808131456375 194.0225830078125 115.4825439453125 3.6207291752417774 344.88726806640625 1207.2542724609375 1118.9007568359375 96839.0 602.6474365234375 2093.8958251953118 471.2053527832031 30.986202239990234 +sub-10030_ses-V1_task-rest_run-02_bold 0.0013120135746606336 0.01380478309954751 8 41.006019830181394 1.0855206357823124 1.0349421737188205 0.4565599732540869 4311.6015625 0.24711425046775012 119 26.923076923076923 2.3996522046220474 2.3705707391353155 2.423529070364274 2.404856804366554 0.0140706 0.01706624962389469 0.018428388983011246 442 90 90 60 2.4644648194364054 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 255.3609860721121 22.50067138671875 46.11349868774414 16.597286224365234 319170.0 0.0882352963089943 182.31821823120112 112.05636596679688 3.449352998758264 330.6270751953125 1167.409912109375 1089.8914794921875 97241.0 590.4841918945312 1994.11767578125 442.2403869628906 28.155380249023438 +sub-10030_ses-V3_task-cuff_run-01_bold 0.0007109318181818181 0.010664605181818181 10 34.93981759375855 1.0287637335990898 0.9785660283599079 0.46718494546320527 3637.972900390625 0.11614098461649434 0 0.0 2.35263415551527 2.308020741620829 2.368079072567659 2.3818026523573224 0.00830718 0.02500266395509243 0.019398124888539314 440 90 90 60 2.5010567853862065 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 179.61987730405195 20.528987884521484 43.11591339111328 15.296590805053711 314270.0 0.036363635212183 161.9499969482422 113.28268432617188 4.931456019231881 257.6021423339844 999.4005126953125 933.2192993164062 100896.0 520.3210144042969 1687.6806335449219 373.1281433105469 33.23296356201172 +sub-10030_ses-V3_task-rest_run-01_bold 0.0020542760180995473 0.009450755565610862 8 34.721603415532876 1.045673888526078 1.0209943567800452 0.46749974003933215 3978.3388671875 0.12395567767993303 13 2.9411764705882355 2.3554299840577175 2.302154075187283 2.358779072937207 2.4053568040486626 0.00877493 0.025833744555711746 0.01706654019653797 442 90 90 60 2.5250382530036504 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 145.6166581092057 20.206327438354492 42.71859359741211 14.782806396484375 314111.0 0.024886878207325935 163.0226287841797 106.46928405761719 4.892920571040964 257.197998046875 1005.7564697265625 941.2715454101562 100903.0 522.4608825683595 1696.3996337890612 372.7733154296875 33.26352310180664 +sub-10030_ses-V3_task-rest_run-02_bold 0.0015298639455782312 0.009479144671201813 9 35.98121104668182 1.0652104570227265 1.0333032260454547 0.46691914864947975 3835.660400390625 0.13101489356303736 11 2.494331065759637 2.33852026989012 2.292070742254625 2.3552915730757884 2.3681984943399463 0.00702531 0.025699125602841377 0.01915130764245987 441 90 90 60 2.506246917514858 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 183.66586092976826 20.158010482788086 42.553550720214844 14.918367385864258 314479.0 0.056689344346523285 161.0941055297849 110.2180404663086 5.020334642229498 255.75390625 995.347412109375 929.3900146484375 100526.0 522.1995391845703 1677.6179504394531 370.8275451660156 34.60651397705078 +sub-10031_ses-V1_task-cuff_run-01_bold 0.001439886621315193 0.014276333106575962 9 42.41653026240909 1.0293206033863636 0.9816975052045458 0.4647727685030621 3340.376708984375 0.2959717705751747 5 1.1337868480725624 2.4058326415063713 2.352708239845107 2.4710332351432944 2.393756449530712 0.00363467 0.005899843759834766 0.022959869354963303 441 90 90 60 3.0656194263293517 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 55.45081559374593 22.282737731933594 44.146732330322266 15.852607727050781 325349.0 0.020408162847161293 163.31473999023393 99.83102416992188 2.129865054069601 242.72987365722656 950.9813232421875 918.9863891601562 91305.0 512.0145385742187 1484.71611328125 299.77020263671875 26.66199493408203 +sub-10031_ses-V1_task-rest_run-01_bold 0.0014430995475113123 0.011612063144796382 8 39.704026730702935 1.0245620490476206 0.9865426509977333 0.46459389457569283 3382.408447265625 0.24609065772949348 123 27.828054298642535 2.3997826389183134 2.365370739341945 2.448762402694925 2.38521477471807 0.00537831 0.006341405212879181 0.023026220500469208 442 90 90 60 3.0455726608890803 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 49.743525224709835 22.027713775634766 44.05824661254883 15.798643112182617 325283.0 0.04072398319840431 163.0067901611328 98.84759521484375 2.258679532253498 240.07925415039062 953.4808959960938 921.0792236328125 91502.0 506.80263061523436 1490.9844177246093 302.4305419921875 28.756738662719727 +sub-10031_ses-V1_task-rest_run-02_bold 0.001391923076923077 0.017068793529411763 8 46.66305215038549 1.0063412491383223 0.9683578114965985 0.46555411164214205 3336.328369140625 0.3731459598192173 258 58.3710407239819 2.4344326571709844 2.379066572131055 2.4797374014640887 2.4444939979178093 0.00590115 0.006522462237626314 0.02242879383265972 442 90 90 60 3.077564524346009 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 51.7609868712477 22.32624626159668 44.42512893676758 15.959277153015137 325228.0 0.0656108632683754 163.99762878417945 100.18425750732422 2.109986210268932 243.13165283203125 951.7216796875 920.4649658203125 91462.0 514.1573760986328 1483.394122314453 299.0871276855469 24.12841796875 +sub-10031_ses-V3_task-cuff_run-01_bold 0.0021251241534988715 0.013994112799097068 7 37.60334698871038 1.0359753345022626 0.998865387556561 0.4637770868989795 4038.27685546875 0.2192041537217044 6 1.3544018058690745 2.366936788469268 2.3088040749230356 2.4624207354855248 2.329585554999245 0.00462296 0.0036169143859297037 0.02274041250348091 443 90 90 60 3.159990269994516 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 121.74192121395564 21.04425048828125 42.89672088623047 14.837471961975098 325045.0 0.022573363035917282 161.3282196044921 100.1273422241211 2.1714673558145776 241.79800415039062 975.5521240234375 943.128662109375 91935.0 538.2212524414062 1501.9483886718754 298.4577331542969 28.29009246826172 +sub-10031_ses-V3_task-cuff_run-02_bold 0.0020093212669683256 0.012357649615384615 8 37.670453795737 1.040697345804989 1.0211602217687077 0.46415783588672316 4074.114013671875 0.22669215328451103 4 0.9049773755656109 2.3633506759084386 2.3135082414027752 2.4517665692422166 2.324777217080323 0.00440225 0.003686809679493308 0.023364080116152763 442 90 90 60 3.148259428987019 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 136.02828407222574 20.94091796875 43.431522369384766 14.84615421295166 325159.0 0.04977375641465187 163.8312271118162 101.10933685302734 2.34522705279685 243.717041015625 974.4378662109375 942.2059326171875 91747.0 537.2124389648437 1503.6093017578123 299.2767333984375 29.849811553955078 +sub-10031_ses-V3_task-rest_run-01_bold 0.002020907029478458 0.012520390158730159 9 38.18170286549999 1.0325743227045454 0.9968839618863643 0.4640089169232674 4111.45361328125 0.2361332688488617 86 19.501133786848072 2.378314569335343 2.326695740878751 2.4679707352649873 2.3402772318622893 0.00391238 0.0032885842956602573 0.0207724217325449 441 90 90 60 3.152389811982356 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 123.98255518922332 20.840478897094727 42.94838333129883 14.786848068237305 324438.0 0.038548752665519714 162.98367996215728 99.530517578125 2.2143588399113296 245.02947998046875 978.9534301757812 947.213134765625 92210.0 536.6719940185546 1509.9132080078125 300.4729919433594 29.05263328552246 +sub-10031_ses-V3_task-rest_run-02_bold 0.002508961625282167 0.013358687742663657 7 37.83238356585973 1.0350753868099554 1.0357701533710417 0.4653991481948966 4343.99658203125 0.2583482258708176 130 29.345372460496613 2.39556596978804 2.33211657399668 2.4773124015604493 2.377268933806992 0.00669261 0.0038663337472826242 0.022336015477776527 443 90 90 60 3.1668085859636195 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 141.08170745412338 20.5255069732666 44.00760269165039 14.507901191711426 324283.0 0.04740406572818756 167.05440979003836 102.68087005615234 2.214484720429499 241.08511352539062 974.3444213867188 942.5620727539062 92361.0 536.4650268554688 1500.979736328125 297.63623046875 27.690654754638672 +sub-10032_ses-V1_task-cuff_run-01_bold 0.0025629638009049775 0.018802702194570135 8 49.25813976820865 1.0825012751473921 1.0439556036054423 0.44641139195320756 3341.785400390625 0.3826144391646924 17 3.8461538461538463 2.3972869273902595 2.397395738069386 2.391883238288433 2.4025818058129595 0.00708206 0.016104841604828835 0.008098892867565155 442 90 90 60 2.795565130371315 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 58.06759216703493 23.644487380981445 45.2294807434082 17.210407257080078 334460.0 0.1085972934961319 168.58145141601562 98.24954986572266 8.015595652718149 235.23068237304688 1024.455810546875 971.9864501953125 83970.0 585.7514007568359 1634.1123229980471 347.6866455078125 24.790740966796875 +sub-10032_ses-V1_task-rest_run-01_bold 0.0012560045146726862 0.02417319796839729 7 57.78954585334851 1.0559997756787334 0.9842565837782812 0.44601470264538134 3099.78466796875 0.49322888223346617 308 69.52595936794583 2.427110530702659 2.4161415706578264 2.4293207368008005 2.43586928464935 0.00455741 0.015927907079458237 0.008501985110342503 443 90 90 60 2.8106092475510334 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 69.14705760113955 24.099817276000977 44.20513916015625 17.52144432067871 334497.0 0.07900677621364594 160.39864807128913 97.21590423583984 7.642730978846769 232.8388671875 1021.0621337890625 968.4954833984375 84200.0 579.5665924072265 1624.109637451172 344.58355712890625 22.839778900146484 +sub-10032_ses-V3_task-cuff_run-01_bold 0.0023709932279909708 0.02189185169300226 7 42.980921533823526 1.029063608416288 0.9974496668552028 0.4443311266914276 2450.00341796875 0.2508793317629348 6 1.3544018058690745 2.3785951422106444 2.3408624069824855 2.4023082378741805 2.3926147817752668 0.00486282 0.012623467482626438 0.012564931996166706 443 90 90 60 2.782330309281669 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 16 185.60457504622346 23.596134185791016 41.88892364501953 18.016929626464844 335912.0 0.08803611993789673 148.24368515014677 94.77112579345703 5.4755774351169055 226.57373046875 940.3264770507812 894.6253051757812 82721.0 523.9683837890625 1520.1671142578125 321.53619384765625 23.160160064697266 +sub-10032_ses-V3_task-cuff_run-02_bold 0.0019125791855203618 0.014954521538461538 8 41.64504826709753 1.0555824585487528 1.0269519527664404 0.4442176455201016 2773.449951171875 0.23717234918779465 4 0.9049773755656109 2.35822152372312 2.332766573970851 2.3740040723322204 2.367893924866287 0.00448371 0.014047915115952492 0.011148732155561447 442 90 90 60 2.763059051759991 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 178.1197041795202 22.634841918945312 42.26163101196289 16.943439483642578 335675.0 0.07013574987649918 153.90476226806632 97.03395080566406 5.47207953486542 229.296875 936.1688842773438 891.4638671875 82862.0 514.4820526123046 1514.9809692382812 322.6346130371094 27.241243362426758 +sub-10032_ses-V3_task-rest_run-01_bold 0.0015390561797752808 0.02391383191011236 5 41.386924709166664 1.0268405136261256 0.9994847977477481 0.44427110978158657 2635.08349609375 0.18931049919427237 69 15.50561797752809 2.3823951500152174 2.336358240494798 2.39418740486354 2.4166398046873137 0.0132642 0.013376998715102673 0.012578106485307217 445 90 90 60 2.8168123650558936 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 198.51236008898175 23.181903839111328 41.36723709106445 17.52134895324707 335667.0 0.09213483333587646 148.07640075683594 93.42906951904297 5.565065956685032 222.4170379638672 941.9816284179688 897.119140625 82969.0 524.9775268554688 1516.6755126953099 318.4854431152344 23.422500610351562 +sub-10033_ses-V1_task-cuff_run-01_bold 0.0016140406320541759 0.0141804869751693 7 38.2084953814706 1.0697310042081447 1.0543661923529415 0.4492107368219329 5824.447265625 0.2798149939957922 0 0.0 2.3738869500178237 2.2980665753497056 2.530220732791395 2.29337354191237 0.0143687 0.007482117507606745 0.023197222501039505 443 90 90 60 3.5880956527730863 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 148.43688052658354 18.14263343811035 41.68308639526367 12.616252899169922 333145.0 0.0022573363967239857 151.90429382324214 110.97026062011719 2.987406147560545 211.6925048828125 976.6063232421875 953.4954833984375 85116.0 580.5372467041016 1425.3499450683594 265.7370300292969 31.814651489257812 +sub-10033_ses-V1_task-rest_run-01_bold 0.0018544469525959369 0.015883913905191876 7 37.91923239875569 1.0533508522850679 1.0092247947963804 0.44902346480646643 5632.82666015625 0.2770240341164292 203 45.82392776523702 2.3799272248096313 2.2988707419844174 2.533716565985816 2.30719436645866 0.0106828 0.007564480882138014 0.02124069444835186 443 90 90 60 3.582675361117182 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 134.86452360121444 18.50910186767578 41.68619155883789 12.951467514038086 333392.0 0.006772009190171957 150.10519943237324 109.19878387451172 2.893218111809687 211.25906372070312 979.9765014648438 957.3837890625 84877.0 581.8108764648438 1431.3354980468748 267.224365234375 30.753921508789062 +sub-10033_ses-V1_task-rest_run-02_bold 0.002212044943820224 0.013773911820224718 5 38.37594746254506 1.0876821451576573 1.035680181846847 0.4497708946471157 5712.18115234375 0.2600156223042122 184 41.348314606741575 2.3605994537073487 2.2900332423355882 2.5143040667571994 2.277461052029259 0.0159173 0.007548099383711815 0.023737438023090363 445 90 90 60 3.608185953046017 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 148.7936325824116 18.087749481201172 41.49589157104492 12.573034286499023 333249.0 0.002247191034257412 152.1393280029297 110.05979919433594 2.992553954808117 208.9737091064453 968.686767578125 945.9033813476562 85009.0 577.1919189453125 1409.1905517578116 262.1532897949219 31.95930290222168 +sub-10033_ses-V3_task-cuff_run-01_bold 0.001580656108597285 0.015319263642533937 8 37.341602199841276 1.0414996333333335 0.9666406406349203 0.44940742325462935 5176.16064453125 0.18082111232449583 5 1.1312217194570136 2.4784660917724115 2.458845735627582 2.5787082308646747 2.3978443088249786 0.0117039 -0.0011200919980183244 0.023703964427113533 442 90 90 60 3.0511720506242637 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 149.4872624181901 19.1597843170166 41.7192268371582 13.359728813171387 330634.0 0.004524887073785067 161.7574783325191 99.77534484863281 6.3137094251603845 242.40379333496094 1015.277587890625 976.8212890625 86974.0 575.0542083740235 1555.575744628906 320.1444091796875 29.147361755371094 +sub-10033_ses-V3_task-rest_run-01_bold 0.0015454606741573036 0.010842101528089888 5 34.154782617477466 1.0577832977477482 0.9988827745045049 0.4490936984986422 5597.2470703125 0.13271989233452097 10 2.247191011235955 2.4272549948613817 2.418833237217536 2.5263165662798657 2.336615181086743 0.0181198 -0.0009050058433786035 0.024989459663629532 445 90 90 60 3.1241297539872943 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 158.05273590366667 18.474224090576172 40.6901741027832 12.851685523986816 330311.0 0.0 158.35281372070312 98.53749084472656 6.386169762102064 235.93690490722656 1010.6014404296875 974.4022827148438 87223.0 580.5561950683594 1535.0164550781246 311.893798828125 34.340538024902344 +sub-10033_ses-V3_task-rest_run-02_bold 0.00142238202247191 0.01747287 5 36.52844023914417 1.0378642656306303 1.011061396193694 0.4516353771867043 5286.1259765625 0.18929721805546815 82 18.426966292134832 2.5164938571488435 2.487470734490127 2.6093540629802523 2.452656773976152 0.0119693 0.00010826552897924557 0.024949688464403152 445 90 90 60 3.0955522730733387 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 20 127.85034908189311 18.930665969848633 42.37507629394531 13.370786666870117 330143.0 0.04494382068514824 162.31640014648423 101.02113342285156 6.147045810633864 238.1676025390625 1009.7279663085938 973.2584228515625 87440.0 573.8499999999999 1541.8242370605471 314.40362548828125 26.6521053314209 +sub-10034_ses-V1_task-cuff_run-01_bold 0.001283151927437642 0.01765251755102041 9 79.28141425747731 1.188348846 1.0405954096590906 0.48544452862676085 2346.890380859375 0.5942799632719794 80 18.140589569160998 2.555174351868987 2.4945040675439807 2.5795040641663842 2.5915149238965958 0.00525598 0.024650411680340767 -0.0035870757419615984 441 90 90 60 2.183985106674406 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 5 47.654254418291316 30.53959083557129 54.09663009643555 22.60997772216797 303376.0 0.06802721321582794 205.70294952392578 105.75836944580078 8.43325197534999 326.028076171875 1175.1103515625 1103.9500732421875 110685.0 523.9097412109376 2057.005908203122 505.4728088378906 24.38542366027832 +sub-10034_ses-V1_task-rest_run-01_bold 0.0013699097065462754 0.018851169729119637 7 78.0812208684389 1.1843690202488686 1.0617586629185516 0.4847833797803839 2247.97509765625 0.5883354556145676 345 77.87810383747178 2.5565479664590316 2.48824156779283 2.585783230583539 2.595619101000725 0.00475446 0.0231846421957016 -0.003847102401778102 443 90 90 60 2.2028801963849753 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 6 48.12222669853147 30.79997444152832 53.36099624633789 23.088037490844727 304190.0 0.1196388304233551 198.24820022582983 103.08615112304688 8.57699575906835 324.0372619628906 1175.7957763671875 1104.2889404296875 109903.0 534.6896057128906 2050.7915283203115 501.29095458984375 23.346195220947266 +sub-10034_ses-V1_task-rest_run-02_bold 0.0014529185520361992 0.018966817850678733 8 79.29147105297051 1.1900959910204079 1.028648188548752 0.4874333777575976 2144.57421875 0.6712413020411484 364 82.3529411764706 2.55332435640872 2.4919957343103194 2.5712748978267155 2.5967024370891245 0.00595946 0.024420181289315224 -0.0039516594260931015 442 90 90 60 2.192975987262872 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 6 44.89028857011588 31.506977081298828 55.76809310913086 23.583711624145508 303871.0 0.15837104618549347 210.1549835205078 108.20531463623047 8.498673922624905 322.42413330078125 1168.8909912109375 1097.21728515625 110392.0 529.2040985107423 2041.847912597656 500.3302917480469 23.369396209716797 +sub-10034_ses-V3_task-cuff_run-01_bold 0.001367471783295711 0.011819932799097066 7 61.59343236192306 1.1564319983936648 1.00681246719457 0.4798389385494086 2751.34228515625 0.4477258948256173 21 4.74040632054176 2.5272146818116936 2.4864957345288703 2.600995729979049 2.4941525809271616 0.00354344 0.027626022696495056 0.009573175571858883 443 90 90 60 2.172603103939379 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 59.433371829242994 28.989391326904297 53.24843978881836 21.106094360351562 305655.0 0.06772009283304214 198.53792419433591 109.86471557617188 6.785481082008218 357.5816650390625 1197.140625 1119.4842529296875 108632.0 537.7090270996093 2130.2233398437497 515.2708740234375 27.785261154174805 +sub-10034_ses-V3_task-rest_run-01_bold 0.0011626923076923077 0.01298740330316742 8 63.622915981609985 1.1504836359637194 1.0019851254875285 0.4791556979171454 2833.517578125 0.4919138894982621 316 71.49321266968326 2.5347521778721602 2.4836790679741276 2.6081040630299226 2.51247340261243 0.00526614 0.02707410603761673 0.010820511728525162 442 90 90 60 2.198346412050999 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 66.1412766440704 28.551834106445312 51.69740295410156 20.83710479736328 305469.0 0.10407239943742752 189.38371887207026 107.32449340820312 6.924374161079623 350.06854248046875 1193.078369140625 1117.351806640625 108630.0 540.5923156738281 2105.7104370117177 508.2668762207031 26.38492202758789 +sub-10034_ses-V3_task-rest_run-02_bold 0.0010562302483069976 0.012372953995485327 7 60.99157080490944 1.1510058789592748 1.0104558058597293 0.4810631872263527 2775.002197265625 0.4702152843994796 301 67.94582392776523 2.5256882920057766 2.486329067868826 2.591662397016589 2.4990734111319153 0.00475668 0.029979564249515533 0.010022769682109356 443 90 90 60 2.1937268672988637 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 63.315845413397966 28.761816024780273 53.805747985839844 20.900678634643555 305317.0 0.09255079180002213 201.47359313964853 113.36299133300781 6.58286802570859 350.6437683105469 1187.3839111328125 1112.1241455078125 108785.0 536.1227905273438 2107.8568847656234 506.9541931152344 27.696786880493164 +sub-10035_ses-V1_task-cuff_run-01_bold 0.002636378132118451 0.010124063530751709 11 34.35180131050226 1.0526595928538816 1.039671510319635 0.40591246796065383 16225.34375 0.1874774475860412 2 0.45558086560364464 2.308081025341293 2.3231499076863167 2.3357165738536287 2.265376594483934 0.00407589 0.0006744115962646902 0.015248424373567104 439 90 90 60 2.677261482020453 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 6 74.15369286591067 10.857782363891602 24.092201232910156 7.542141437530518 338974.0 0.0091116176918149 97.12688407897939 57.52106475830078 3.8539653561283522 274.0417175292969 1030.7998046875 966.6150512695312 80509.0 563.7348876953125 1680.5886962890618 361.0439453125 31.573223114013672 +sub-10035_ses-V1_task-rest_run-01_bold 0.0014405694760820044 0.010593040273348519 11 33.45262187358446 1.0072854684931505 1.0100397076484025 0.40620458234981766 16564.6328125 0.18647656326775763 42 9.567198177676538 2.318357428687712 2.331112407369915 2.341316573631105 2.282643305062116 0.0038584 0.0012361560948193073 0.014399506151676178 439 90 90 60 2.679621136583015 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 2 71.68571498498842 10.796992301940918 24.069713592529297 7.501139163970947 338868.0 0.0091116176918149 97.34533500671355 57.01739501953125 3.875928540747447 274.4232177734375 1034.598876953125 970.6242065429688 80495.0 563.4041442871094 1687.37802734375 362.22216796875 31.337520599365234 +sub-10035_ses-V1_task-rest_run-02_bold 0.00204 0.010387278616780045 9 37.02623479609091 1.0408060359545448 1.001303434545455 0.405927793134156 15854.4970703125 0.22169469157091984 98 22.22222222222222 2.311796314016814 2.318258241214027 2.338924907059474 2.2782057937769413 0.0038897 6.473594839917496e-05 0.01467336155474186 441 90 90 60 2.6603671910550815 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 6 76.48515250120757 11.05059814453125 24.11849594116211 7.607709884643555 338826.0 0.0022675737272948027 98.38095092773438 57.788150787353516 3.9746592323479977 274.8495178222656 1030.310791015625 966.047607421875 80599.0 559.103857421875 1682.4392822265609 363.1234130859375 30.491376876831055 +sub-10035_ses-V3_task-cuff_run-01_bold 0.003204932126696833 0.014006564027149322 8 35.381198450340115 1.0118585741269845 1.002764104195012 0.4062406620340313 16790.18359375 0.19351611861139467 5 1.1312217194570136 2.3730036116714115 2.3946165715131533 2.4056124044095513 2.3187818590915303 0.00319703 -0.0015865075401961803 0.015357651747763157 442 90 90 60 2.608520904561053 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 94.30755532718098 10.904842376708984 24.38018798828125 7.631222248077393 337602.0 0.018099548295140266 95.70577354431155 60.395660400390625 5.395789910947004 279.65838623046875 1065.4853515625 996.95703125 81692.0 579.0514984130859 1736.5149414062498 382.19012451171875 26.821935653686523 +sub-10035_ses-V3_task-cuff_run-02_bold 0.001787392290249433 0.02358987006802721 9 38.49819666234093 0.9491996738636357 0.9388648005681814 0.4045612316331192 16418.88671875 0.23778266990387828 10 2.2675736961451247 2.3915549962601035 2.3941665715310347 2.4437832362261123 2.3367151810231648 0.00418722 -0.000902289932128042 0.01655353605747223 441 90 90 60 2.652479118641186 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 18 96.3591116944457 10.953103065490723 23.196407318115234 7.693877696990967 338330.0 0.027210883796215057 87.84478683471677 56.45737075805664 5.063764667586074 273.2896423339844 1054.1922607421875 987.77099609375 81197.0 577.0135986328125 1710.1705566406245 372.3930969238281 21.493484497070312 +sub-10035_ses-V3_task-rest_run-01_bold 0.001837074829931973 0.01919174693877551 9 34.90959889227273 0.9634297669772731 0.9466604294772726 0.4057082125504685 16373.931640625 0.18806555494045926 57 12.92517006802721 2.393082771478747 2.4166749039699673 2.413283237438073 2.3492901730282 0.00554202 -0.0013736541150137782 0.015090392902493477 441 90 90 60 2.596685601992269 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 80.60690218828755 11.090940475463867 24.207460403442383 7.793651103973389 337569.0 0.027210883796215057 93.92925415039046 58.32417297363281 5.8675608380549455 280.26556396484375 1072.2730712890625 1002.6008911132812 81621.0 588.290283203125 1746.666748046875 386.1055603027344 23.68903350830078 +sub-10035_ses-V3_task-rest_run-02_bold 0.004062760180995475 0.021396944298642535 8 42.548764140068016 1.0462871357142864 1.034649122743765 0.4033172982656033 15499.453125 0.296599167144636 119 26.923076923076923 2.3613327818847183 2.3556249063958763 2.4251082369681902 2.303265202290089 0.00578653 -0.0007572566973976791 0.016683628782629967 442 90 90 60 2.689489636513761 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 34 85.77411814275374 11.153060913085938 22.776769638061523 7.834842205047607 339608.0 0.027149323374032974 85.39287605285637 54.600502014160156 4.73003342242784 267.4571533203125 1039.8978271484375 975.001220703125 80288.0 574.7579376220704 1685.3741210937496 362.5205078125 22.31671905517578 +sub-10036_ses-V1_task-cuff_run-01_bold 0.0022463758389261743 0.03297427225950783 3 46.57520426746635 1.077996727174888 1.0190003389237663 0.4665816640048214 27902.541015625 0.4621453244030438 37 8.277404921700224 2.6334673492845186 2.6705802816901407 2.801798309859155 2.42802345630426 0.010728 -0.0061538019217550755 0.033881351351737976 447 96 96 54 4.866548954670334 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 24.346091553945943 174.0465850830078 757.07421875 117.94039916992188 336911.0 0.5828098654747009 3269.749267578125 1351.416015625 2.420297475394677 2913.8388671875 19489.591796875 19404.8046875 92500.0 12732.142626953126 25981.6021484375 3987.363525390625 26.89266586303711 +sub-10036_ses-V1_task-cuff_run-02_bold 0.0041156249999999995 0.04357760691964286 2 45.55277013241609 1.0187864393512311 0.97492125836689 0.468864747247768 31806.9296875 0.45477486775638315 23 5.133928571428571 2.662275808517781 2.6797295774647885 2.863936901408451 2.443160946680103 0.0252028 -0.004965296946465969 0.03643365576863289 448 96 96 54 4.980146889617235 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 55.623809149031196 164.87808227539062 775.2882690429688 111.72393798828125 335918.0 0.5443502426147461 3424.526892089837 1468.083740234375 2.5668679401052428 2848.64501953125 19685.990234375 19682.75 93288.0 12966.295703125 26026.298632812497 3952.2216796875 24.444934844970703 +sub-10036_ses-V1_task-rest_run-01_bold 0.006282321428571428 0.049097248437500005 2 51.318956439239386 1.0242773898434012 0.9792674324832211 0.4669385128335914 27490.8125 0.5231117149530963 231 51.5625 2.6582415098980063 2.6829205633802817 2.835218028169014 2.4565859381447233 0.0274731 -0.00650428794324398 0.03360656276345253 448 96 96 54 4.847901668849438 0.7999997138977051 2.21875 2.21875 2.4000015258789062 11 22.14705671235539 173.91050720214844 757.3767700195312 118.15852355957031 337145.0 0.9106694340705871 3258.0456054687493 1342.417724609375 2.570299203925469 2848.579833984375 19550.09375 19497.65234375 92385.0 12656.7978515625 26014.071875000005 4021.852783203125 22.315505981445312 +sub-10036_ses-V1_task-rest_run-02_bold 0.003632364864864865 0.033498453378378375 6 42.56371204900679 1.0891435720767488 1.0247835691422138 0.4717431237756744 25841.595703125 0.3144969352738904 187 42.11711711711712 2.628918569913887 2.6597949295774646 2.8172664788732398 2.409694301290956 0.00624684 -0.004612836986780167 0.03601511940360069 444 96 96 54 4.802665481254311 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 56.725502517029966 172.44598388671875 771.5489501953125 116.688232421875 334636.0 0.40704845637083054 3391.0256958007812 1451.618408203125 2.4177134551914037 2882.13818359375 19137.013671875 19088.9296875 94131.0 12469.7275390625 25554.07421875 3974.632080078125 27.89789390563965 +sub-10036_ses-V3_task-cuff_run-01_bold 0.0102586129753915 0.025608327516778523 3 35.614441837264586 1.1264813300896859 1.1182998408071754 0.47458060752784564 17113.068359375 0.28280493732502765 8 1.7897091722595078 2.7215225043704447 2.7349814084507043 2.939533521126761 2.49005258353387 0.00625005 -0.007319437339901924 0.03616438806056976 447 96 96 54 4.749658089775422 0.7999997138977051 2.21875 2.21875 2.4000015258789062 18 34.08584616911635 234.9192657470703 883.859130859375 159.1412353515625 333649.0 0.5422308087348938 3870.1226562499955 1587.2335205078125 2.2765646632580943 3271.9599609375 20784.603515625 20735.671875 94686.0 13468.51123046875 27891.17724609375 4365.69580078125 30.698320388793945 +sub-10036_ses-V3_task-cuff_run-02_bold 0.0029033853006681515 0.035958823830734975 1 39.928008943839295 0.9845045392187501 0.9463077965625002 0.46975668464264125 16378.96484375 0.386045529369571 22 4.8997772828507795 2.7786707543575466 2.805007323943662 2.9984315492957747 2.5325733898332023 0.0109623 -0.0061935679987072945 0.03760663419961929 449 96 96 54 4.683935414416706 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 29.009096480721283 243.47372436523438 880.4549560546875 165.19943237304688 336684.0 0.7025948107242586 3897.5145019531246 1571.8035888671875 2.2070533588446315 3382.70458984375 21168.388671875 21237.89453125 92439.0 13457.9771484375 28379.55664062499 4534.17431640625 25.750350952148438 +sub-10036_ses-V3_task-rest_run-01_bold 0.0017491255605381168 0.031188547533632288 4 41.213476755460654 1.0066002485842693 0.9648427937303369 0.4733287609416313 17149.224609375 0.4312707137569797 267 59.865470852017935 2.6942824424380682 2.7398715492957746 2.929906478873239 2.4130692991451905 0.0125857 -0.008689840324223042 0.03443710878491402 446 96 96 54 4.771543514153797 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 30.26704145401215 235.66796875 889.2019653320312 159.9425048828125 334271.0 0.8310156464576721 3873.28173828125 1580.8839111328125 2.353654693226579 3220.165771484375 21044.01171875 20945.787109375 94075.0 13682.9845703125 28250.731640625003 4389.70654296875 27.865747451782227 +sub-10036_ses-V3_task-rest_run-02_bold 0.0019093483146067419 0.038368869887640454 5 39.62570241990989 0.9778985313963968 0.9438230561711713 0.4685382382203499 15243.8828125 0.3378305064010936 169 37.97752808988764 2.8612438884032216 2.8663977464788735 3.0936022535211265 2.6237316652096654 0.00518915 -0.005046504084020853 0.040697481483221054 445 96 96 54 4.302020452381001 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 38.06672568442763 247.38734436035156 876.2924194335938 167.89466857910156 336389.0 0.7059004426002502 3903.564550781246 1584.9639892578125 1.6300960566015927 3780.91943359375 20855.34765625 20956.08203125 92913.0 12367.974609375 28574.56406249999 4871.1923828125 23.39750862121582 +sub-10037_ses-V1_task-cuff_run-01_bold 0.0024359954751131223 0.015251239230769233 8 36.06697521950111 1.079259808185941 1.0537819486394562 0.417104471589353 7605.7392578125 0.1802794423072921 0 0.0 2.536810513781903 2.519120733232469 2.592216563661235 2.4990942444520035 0.0115228 -0.0014255729038268328 0.019542429596185684 442 90 90 60 3.61049144350861 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 196.04864244968894 14.866275787353516 29.168657302856445 10.423077583312988 345471.0 0.004524887073785067 107.29525375366211 70.98043823242188 2.012522182539038 195.83099365234375 911.9639282226562 900.7556762695312 74513.0 512.0321411132813 1330.4028076171867 249.48117065429688 31.22154998779297 +sub-10037_ses-V1_task-rest_run-01_bold 0.001009527027027027 0.01391597445945946 6 36.58240143943568 1.0624176967268624 0.9942892136794584 0.41662016401207974 7033.69384765625 0.1684701636293024 11 2.4774774774774775 2.5226299679308597 2.5188290665773923 2.5959748968452256 2.4530859403699616 0.0133514 -0.0010033334838226438 0.01752294972538948 444 90 90 60 3.609920660360844 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 134.2161647846229 15.236743927001953 28.288297653198242 10.707207679748535 345160.0 0.0045045046135783195 104.2049560546875 66.12831115722656 1.9644329429493848 195.79696655273438 908.0192260742188 898.2026977539062 74745.0 504.9473083496094 1323.6806396484376 248.81341552734375 32.33933639526367 +sub-10037_ses-V1_task-rest_run-02_bold 0.0007672522522522522 0.014253882049549551 6 37.32543927239278 1.0527814139503389 0.9986729486004514 0.41744643959703 6915.3212890625 0.17573309888944058 19 4.2792792792792795 2.5095896908161284 2.508337400327627 2.568074897953872 2.4523567741668866 0.00696599 -0.0016558081842958927 0.020999273285269737 444 90 90 60 3.602364439550722 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 201.70568902924634 15.350275993347168 29.700576782226562 10.792793273925781 345557.0 0.009009009227156639 108.98198699951172 73.70589447021484 1.9657157752365926 194.96051025390625 909.0774536132812 896.163330078125 74354.0 512.0385162353516 1330.9154235839842 248.76919555664062 33.0355110168457 +sub-10037_ses-V3_task-cuff_run-01_bold 0.001392207207207207 0.018747414617117118 6 34.77403948173814 1.0527457900451465 0.9821383165462767 0.4102996398808237 9089.30859375 0.18467803989484813 0 0.0 2.524509132275265 2.564249898105864 2.544879065542258 2.4643984331776725 0.00763508 -0.009768065065145493 0.025879429653286934 444 90 90 60 3.455531202605802 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 20 453.58047980528846 16.836217880249023 33.53181457519531 11.639639854431152 347150.0 0.011261261999607086 123.06700744628893 88.87749481201172 1.765153081000741 265.4007263183594 1110.0172119140625 1093.85693359375 73774.0 618.2401062011719 1636.7277648925779 316.5503234863281 28.42681312561035 +sub-10037_ses-V3_task-cuff_run-02_bold 0.002797072072072072 0.01816922213963964 6 37.82319139541767 1.0830153713544017 0.982383422528216 0.4109535406957537 8427.4599609375 0.22326991131954135 4 0.9009009009009009 2.4869855323922825 2.539291565764285 2.5062749004095832 2.4153901310029786 0.00818704 -0.010074960067868233 0.027089806273579597 444 90 90 60 3.463093390228032 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 33 444.5583939560556 17.280330657958984 34.165313720703125 12.027027130126953 347536.0 0.029279280453920364 125.44707298278809 89.87299346923828 1.9425752097927376 261.9296875 1109.38232421875 1089.4661865234375 73393.0 626.0590454101563 1639.3275390625 314.5912170410156 29.742799758911133 +sub-10037_ses-V3_task-rest_run-01_bold 0.003000226757369615 0.016358906235827662 9 37.12258365386362 1.1204505438863637 1.0067854767272728 0.40992295620961117 8630.9970703125 0.20045705021177362 52 11.791383219954648 2.478356367973372 2.5249748996665122 2.5042915671550605 2.4058026370985433 0.0134549 -0.008832334540784359 0.025429142639040947 441 90 90 60 3.4978395913149964 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 384.2480544244929 17.028074264526367 32.814064025878906 11.775510787963867 347494.0 0.013605441898107529 120.33117828369126 84.16767120361328 1.8468218745261398 259.3714294433594 1101.5762939453125 1085.5169677734375 73653.0 617.109765625 1615.858520507812 310.337158203125 30.3565731048584 +sub-10037_ses-V3_task-rest_run-02_bold 0.001844221218961625 0.016556161422121896 7 39.512702587918554 1.106451603076923 0.9917776045475111 0.41131297351721247 8025.41455078125 0.22810796622943408 73 16.478555304740407 2.4811827568683316 2.5446415655516956 2.493699900909269 2.40520680414403 0.0160293 -0.009285888634622097 0.02718096598982811 443 90 90 60 3.445514720691628 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 17 437.86952473915665 17.476634979248047 33.78879165649414 12.20541763305664 347228.0 0.027088036760687828 124.55293693542455 88.07191467285156 1.8432530583284823 261.24920654296875 1099.5224609375 1080.230224609375 73855.0 614.56884765625 1625.8451416015628 313.51568603515625 29.866453170776367 +sub-10038_ses-V1_task-cuff_run-01_bold 0.0037691383219954646 0.022511137891156465 9 47.87687441229538 1.0782600504772726 1.0305583475227271 0.47485277433298234 3205.619140625 0.4010318699911249 11 2.494331065759637 2.4983632835912633 2.392795738252173 2.5554040651240326 2.5468900473975835 0.00797691 0.014311034232378006 0.010872983373701572 441 90 90 60 2.6014713406441956 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 47.46551363028319 24.999162673950195 49.459022521972656 18.809524536132812 314202.0 0.20408163964748383 190.02018890380867 106.20801544189453 6.221711848784629 280.427001953125 1120.04833984375 1045.392333984375 102249.0 616.6240600585937 1854.259399414062 401.8446044921875 22.70119857788086 +sub-10038_ses-V1_task-rest_run-01_bold 0.0033346606334841633 0.025178245701357464 8 48.63905451247169 1.081770782902494 1.0214381494331068 0.47404142273898187 3450.068603515625 0.41629135533141226 285 64.47963800904978 2.4855396816092044 2.3864415718379983 2.566670731343002 2.5035067416466132 0.00942469 0.015956256538629532 0.011211906559765339 442 90 90 60 2.6284666600845643 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 48.75756897677535 24.536731719970703 48.54426574707031 18.445701599121094 313616.0 0.20361991226673126 183.4960479736328 106.56217193603516 5.957653478218326 278.6050720214844 1120.994384765625 1048.4276123046875 102539.0 615.3427917480469 1849.3733764648427 398.8722839355469 22.0339298248291 +sub-10038_ses-V1_task-rest_run-02_bold 0.0037639277652370203 0.02172046559819413 7 44.907508565497785 1.0687132011764706 1.025956610429864 0.4740383202605766 3095.72998046875 0.35955797908047155 257 58.01354401805869 2.5260493840621794 2.4133707374345965 2.5698707312158455 2.594906683536095 0.0083035 0.013013218529522419 0.011006349697709084 443 90 90 60 2.571977965830604 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 45.90497187122386 26.211605072021484 51.0615119934082 19.595937728881836 315243.0 0.2011286720633515 197.55463562011695 106.68334197998047 6.6583893447956655 287.7017517089844 1136.816162109375 1060.541748046875 101577.0 629.0573608398438 1886.8578369140623 412.3427734375 22.88290786743164 +sub-10038_ses-V3_task-cuff_run-01_bold 0.0012245022624434389 0.018559689366515836 8 54.35227046789118 1.1288668453061226 0.992546064920635 0.4609256952804544 3974.3984375 0.41875307418437785 25 5.656108597285068 2.3832952649609838 2.3651749060163936 2.4006582379397456 2.384052650926812 0.00838833 0.0032248415518552065 0.013468428514897823 442 90 90 60 2.6747725860816867 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 60.86964566660189 25.137149810791016 47.72132110595703 18.30316734313965 319761.0 0.11990951001644135 175.10633850097656 105.49517822265625 4.414734027371482 309.4714050292969 1224.83203125 1148.6380615234375 97041.0 665.0430297851562 2031.513671875 429.43170166015625 26.8096923828125 +sub-10038_ses-V3_task-rest_run-01_bold 0.001918374717832957 0.01844694099322799 7 59.53675400393667 1.1478352292081442 1.0151643520588245 0.46029872718754306 4523.0107421875 0.5279939175629308 336 75.84650112866817 2.3848202630211848 2.35472907309814 2.406220737718712 2.393510978246703 0.00971423 0.0029024467803537846 0.013026473112404346 443 90 90 60 2.6991278811575232 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 50.17162717124056 24.327396392822266 46.7774543762207 17.63431167602539 319667.0 0.10835214704275131 173.3139968872071 101.16846466064453 4.386466381110765 310.6504211425781 1230.601806640625 1154.35888671875 97111.0 674.9774475097656 2037.2596435546875 427.67626953125 26.455196380615234 +sub-10038_ses-V3_task-rest_run-02_bold 0.0025263348416289595 0.018906253665158374 8 49.86647185065761 1.1308671315192744 1.078506135532879 0.46202386565392684 3868.1083984375 0.3479680661497031 259 58.5972850678733 2.3780216542307904 2.355541573065854 2.395333238151342 2.3831901514751745 0.00592694 0.003435105551034212 0.013200190849602222 442 90 90 60 2.698164877318506 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 17 57.74671554690064 25.532960891723633 47.81229019165039 18.461538314819336 319784.0 0.11538462340831757 175.85712890624995 104.03324127197266 4.563277927361454 303.60821533203125 1214.2900390625 1139.069091796875 97046.0 670.0333862304688 2009.4468994140625 422.1622009277344 25.792964935302734 +sub-10040_ses-V1_task-cuff_run-01_bold 0.0006969977426636569 0.016370436117381492 7 39.578587121968354 1.1118997773981893 0.9858318349999998 0.44971141533138065 260690.953125 0.2533708421572438 1 0.22573363431151242 2.7719826979482787 2.8216428169014085 2.939650704225352 2.5546545727180754 0.00390759 -0.014257271774113178 0.020483791828155518 443 96 96 54 4.782364608828054 0.7999997138977051 2.21875 2.21875 2.3999996185302734 4 50.23709571669642 46.94243240356445 428.8771667480469 31.793701171875 334363.0 0.09644358158111573 1872.5950439453106 984.1809692382812 2.544198367701048 2736.525390625 16865.03125 16703.09375 94128.0 11725.542529296876 22794.254101562496 3492.624755859375 37.7296257019043 +sub-10040_ses-V1_task-cuff_run-02_bold 0.0005319955156950673 0.015271813228699551 4 39.09417480289888 1.1272557231910112 1.0034478063370784 0.4486753243064321 266623.5 0.24071491033370238 0 0.0 2.753321120455118 2.800441690140845 2.9201712676056335 2.5393504036188768 0.00691965 -0.012638821266591549 0.02053956314921379 446 96 96 54 4.828409697864583 0.7999997138977051 2.21875 2.21875 2.3999996185302734 4 42.753284729045376 46.80265426635742 417.023681640625 31.721027374267578 334244.0 0.11280298084020618 1819.9125427246079 950.0330810546875 2.8710878759988443 2636.5517578125 16919.951171875 16773.267578125 94227.0 11766.4724609375 22725.8134765625 3473.8515625 38.8635139465332 +sub-10040_ses-V1_task-rest_run-01_bold 0.0006476008968609865 0.013031278923766817 4 40.09476089483147 1.1402178375955057 1.0095790504044946 0.44883092791371326 238360.140625 0.2520744471685594 160 35.874439461883405 2.731628372655671 2.7913104225352114 2.889149295774648 2.514425399657154 0.0065053 -0.014137115329504013 0.019609574228525162 446 96 96 54 4.766906869953495 0.7999997138977051 2.21875 2.21875 2.3999996185302734 2 44.786214461041 49.10103225708008 427.86767578125 33.25449752807617 334793.0 0.09459744691848755 1882.3091064453124 968.4717407226562 2.5114366967496213 2751.382568359375 16889.5234375 16700.734375 93687.0 11812.112109375 22917.906835937498 3503.455322265625 40.3740234375 +sub-10040_ses-V1_task-rest_run-02_bold 0.0006781123595505619 0.016363494382022472 5 38.70763434148649 1.1214808957207214 1.006468965135136 0.449069425134775 275687.28125 0.22001321549705466 115 25.84269662921348 2.743690439141012 2.792950985915493 2.9093949295774646 2.5287254019300778 0.00723808 -0.013157340697944164 0.020086906850337982 445 96 96 54 4.858195485614461 0.7999997138977051 2.21875 2.21875 2.3999996185302734 0 48.46661256801068 46.03960037231445 422.5796813964844 31.182409286499023 334479.0 0.0892741098999977 1839.1275024414028 977.4019165039062 2.6749629414575216 2617.962890625 16891.013671875 16736.79296875 94123.0 11773.791308593749 22665.323046874997 3445.04541015625 38.13616180419922 +sub-10041_ses-V1_task-cuff_run-01_bold 0.0011478733031674208 0.011650096040723984 8 38.336628237142826 1.0694236235147392 0.9789269346712022 0.475635508238244 5314.9453125 0.11430505150131172 0 0.0 2.4031938958888595 2.4317999033689537 2.497449900760257 2.2803318835373667 0.00947991 0.012551560066640377 0.022997094318270683 442 90 90 60 2.478792188970906 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 35.4753932024484 19.840707778930664 58.058616638183594 14.298643112182617 313947.0 0.05429864674806595 276.53938598632817 138.0311737060547 7.160543405181016 295.21221923828125 1112.900390625 1043.3134765625 101490.0 575.1274139404297 1843.7489624023433 420.8938293457031 30.781856536865234 +sub-10041_ses-V1_task-cuff_run-02_bold 0.0009338461538461539 0.013152851380090499 8 38.75764004276645 1.0422145567800463 0.9560298849206362 0.4757818061423574 5268.14697265625 0.1136120231936036 1 0.22624434389140272 2.4126563940277053 2.4415457363150224 2.5086165669832003 2.2878068787848926 0.0081166 0.010960260406136513 0.02290094643831253 442 90 90 60 2.478606478404935 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 35.148522218416225 19.71324348449707 56.93270492553711 14.271493911743164 313909.0 0.0656108632683754 271.89593505859375 132.75616455078125 7.156120193460193 292.99169921875 1106.230712890625 1036.9559326171875 101590.0 573.1528472900391 1834.2574035644525 418.36041259765625 29.487224578857422 +sub-10041_ses-V1_task-rest_run-01_bold 0.0018551590909090911 0.0125401475 10 39.20292220405468 1.0634415387015956 0.9886056769248291 0.4752370537271872 5101.3701171875 0.1328503549335037 14 3.1818181818181817 2.41318417137059 2.4400374030416248 2.5096249002764663 2.2898902107936787 0.0104829 0.012488257139921188 0.02352512627840042 440 90 90 60 2.4788746505437773 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 37.97068321782262 20.048826217651367 58.33491516113281 14.649999618530273 314527.0 0.1090909093618393 276.14476013183594 139.8633575439453 7.097143533596885 297.6171875 1121.268798828125 1051.870361328125 101100.0 579.436114501953 1859.8764282226552 424.33172607421875 30.106313705444336 +sub-10041_ses-V1_task-rest_run-02_bold 0.001978 0.011215399477272727 10 38.94938657933943 1.0871978539863316 1.0294633944874716 0.47673769043724057 5087.810546875 0.13609727657699372 12 2.727272727272727 2.4070508409366895 2.446116569466727 2.4985124007180373 2.2765235526253047 0.00674636 0.011188040487468243 0.024280859157443047 440 90 90 60 2.4720877240726633 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 36.14182734482153 20.42621612548828 58.12469482421875 14.69772720336914 313946.0 0.09999999403953552 277.6045379638672 134.99803161621094 7.497381473311776 293.3159484863281 1110.43798828125 1040.2044677734375 101348.0 577.073617553711 1843.6158508300773 420.7776794433594 31.40875244140625 +sub-10041_ses-V3_task-cuff_run-01_bold 0.0018121218961625282 0.01231139735891648 7 44.09970153169681 1.101890088303167 1.0104793764479645 0.4749935626633759 6093.1162109375 0.12759025115672687 3 0.6772009029345373 2.4384383375354184 2.4654332353658184 2.562516564841407 2.28736521239903 0.00403633 0.011480494402348995 0.03324248641729355 443 90 90 60 2.3772601100557407 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 45.43640303261705 18.550935745239258 57.33205032348633 13.327314376831055 311554.0 0.10158013552427292 264.4331848144524 141.3677215576172 7.519895283038688 305.31219482421875 1126.7332763671875 1053.6298828125 103243.0 566.9911865234376 1899.7050292968747 443.209716796875 28.913394927978516 +sub-10041_ses-V3_task-cuff_run-02_bold 0.0010741628959276017 0.009769760135746607 8 43.743431930453504 1.1141700456235828 1.0020438744217686 0.4748283824337956 6068.845703125 0.11207205299219149 1 0.22624434389140272 2.4072619557224804 2.436479069849687 2.5273207329066305 2.2579860644111225 0.00628223 0.01046503521502018 0.03381785377860069 442 90 90 60 2.3783175684443463 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 46.06337527374366 18.696889877319336 57.06304168701172 13.303168296813965 311717.0 0.04751131311058998 266.8054504394531 139.62399291992188 7.741649986885426 302.6739501953125 1125.172119140625 1051.3348388671875 103014.0 570.7005645751954 1894.3353576660143 442.04766845703125 32.35127258300781 +sub-10041_ses-V3_task-rest_run-01_bold 0.0026360496613995485 0.012643887065462754 7 44.472150906380094 1.1076547806787327 1.0340174733031682 0.4745077038469 6220.3818359375 0.148158076251739 33 7.44920993227991 2.4459800037865085 2.4831540679949895 2.5668373980030457 2.2879485453614903 0.00685156 0.010129110887646675 0.03348536044359207 443 90 90 60 2.3825137211996257 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 45.66557793157802 18.681459426879883 57.30364227294922 13.507901191711426 312052.0 0.1376975178718567 262.0609436035156 139.4163055419922 7.628662891286103 306.89031982421875 1133.187255859375 1058.93115234375 102630.0 572.776889038086 1902.7360412597643 444.45745849609375 28.288040161132812 +sub-10041_ses-V3_task-rest_run-02_bold 0.002216371882086168 0.011141686167800455 9 44.910457801681765 1.1290931691590915 1.042481979431819 0.47580587709550215 6275.4189453125 0.13513813138874808 25 5.668934240362812 2.417375841196963 2.4420499029616556 2.5369290658581627 2.273148554771071 0.00610135 0.010756844654679298 0.03479527682065964 441 90 90 60 2.389307163684623 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 48.191329487058226 18.43671417236328 57.58265686035156 13.117914199829102 311614.0 0.07256235927343369 269.16552734375 140.72218322753906 7.635914992233737 300.78167724609375 1118.9493408203125 1046.276611328125 103164.0 567.6715423583984 1881.0139648437494 437.8974609375 30.407466888427734 +sub-10042_ses-V1_task-cuff_run-01_bold 0.0007593453724604967 0.0064554260496614 7 35.79356089972848 0.9977769217873299 0.9923496641855212 0.5287599962602341 597.9484252929688 0.11210118586003844 0 0.0 2.829705443113164 2.631891562084692 2.9208082172708427 2.936416549983956 0.0194071 -0.029993781819939613 0.10363297909498215 443 90 90 54 2.1407582082877568 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 32.29884819325086 3.3835458755493164 20.97634506225586 9.015801429748535 274559.0 6.557562351226807 75.58758392333968 34.92690658569336 4.33683135775629 88.50099182128906 255.6731414794922 237.25733947753906 97303.0 114.95959930419922 456.7284484863281 110.82807922363281 32.328739166259766 +sub-10042_ses-V1_task-cuff_run-02_bold 0.003183212669683258 0.008891315294117649 8 36.11817623319729 0.9920477446258503 0.9915651041723357 0.5301849645929345 581.6254272460938 0.12591154333125024 0 0.0 2.8557387754120254 2.6511457279862674 2.9459665496044734 2.970104048645336 0.0055184 -0.029930206015706062 0.10520846396684647 442 90 90 54 2.1317022262719747 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 31.87536657772359 3.4448704719543457 21.045120239257812 9.061086654663086 274397.0 6.574660778045654 75.40317077636715 34.77663040161133 4.434274766141444 87.84920501708984 253.61648559570312 235.18099975585938 97821.0 113.6651611328125 453.4117736816406 110.32488250732422 29.88131332397461 +sub-10042_ses-V1_task-rest_run-01_bold 0.0003646741573033708 0.005752533887640449 5 37.08270186326578 1.0029727824549561 0.9908577847297291 0.5240265480597754 613.5365600585938 0.14599785766286646 16 3.595505617977528 2.8765262745860043 2.6883790598400807 2.970337381969397 2.9708623819485354 0.0102816 -0.03272155672311783 0.10747338086366653 445 90 90 54 2.056639101204182 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 33.7366727158401 3.2483978271484375 20.821582794189453 8.937078475952148 274799.0 6.588764190673828 73.9620239257812 34.98977279663086 5.054903391447352 90.77523040771484 259.6277770996094 238.96853637695312 96961.0 117.00898742675781 470.5235900878906 116.193115234375 33.62339782714844 +sub-10042_ses-V1_task-rest_run-02_bold 0.0004733031674208145 0.006719401221719457 8 37.15406285492061 0.9970288558276641 0.990183395555556 0.5312215894077839 567.6405029296875 0.15832158689232315 18 4.072398190045249 2.850769331165049 2.65631656111413 2.948099882853036 2.9478915495279807 0.00897782 -0.03350517898797989 0.10753373056650162 442 90 90 54 2.0852436759605935 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 31.449148527793454 3.558915853500366 21.74977684020996 9.203619956970215 273161.0 6.624434471130371 78.92534637451172 36.33461380004883 4.75727451378919 88.98966217041016 255.8763885498047 236.2579345703125 98129.0 114.48688201904298 460.9923278808592 113.2993392944336 31.986740112304688 +sub-10044_ses-V1_task-cuff_run-01_bold 0.0011559954751131222 0.008912086923076924 8 30.791050454603184 1.0416584758956917 1.0554693423582762 0.4402968884353674 15167.189453125 0.12071794529414236 0 0.0 2.2353203063462854 2.277433242836267 2.223179078325467 2.2053485978771223 0.00722372 0.0047844466753304005 0.01802127994596958 442 90 90 60 2.675113762927135 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 64.02969179765967 12.152642250061035 33.31067657470703 8.43891429901123 323126.0 0.009049774147570133 139.0226287841797 88.98477172851562 5.7382759493613165 275.29608154296875 1098.3841552734375 1034.978515625 93940.0 579.9476593017578 1791.4004638671877 386.88934326171875 35.979034423828125 +sub-10044_ses-V1_task-cuff_run-02_bold 0.0014198866213151928 0.009057130702947846 9 32.47465613113634 1.0524244668863632 1.0011516117954544 0.44027431523041827 14821.7783203125 0.13490998809054383 0 0.0 2.244485582010638 2.289666575683491 2.2296374114021695 2.214152758946254 0.00873663 0.004732966888695955 0.01919214427471161 441 90 90 60 2.6714984333271268 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 62.33298474967309 12.250800132751465 32.72977066040039 8.476190567016602 322905.0 0.0022675737272948027 138.31474609374996 86.15079498291016 5.725318230695166 274.7789306640625 1092.755615234375 1030.392333984375 94271.0 573.7789306640625 1782.5601196289062 385.69622802734375 35.976871490478516 +sub-10044_ses-V1_task-rest_run-01_bold 0.0016877601809954753 0.008554833868778281 8 32.8739634101814 1.0770985828571433 1.0334034990929708 0.4403435058479578 15686.0361328125 0.15067098099229473 33 7.46606334841629 2.2499591902129343 2.291954075592594 2.230224911378824 2.227698583667384 0.00724784 0.004306424874812365 0.01825946569442749 442 90 90 60 2.6663280179336457 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 20 62.8102576129033 12.216373443603516 33.15489196777344 8.441176414489746 322622.0 0.0067873308435082436 138.53835449218752 87.8763427734375 5.633284784910245 279.75579833984375 1112.849853515625 1047.15283203125 94234.0 589.3943542480469 1823.9863830566392 392.7301025390625 35.88074493408203 +sub-10044_ses-V1_task-rest_run-02_bold 0.004054353741496599 0.009073308163265306 9 33.073491382590895 1.090476176409092 1.0522613055909091 0.44040841718493823 15303.619140625 0.15012231326556155 29 6.575963718820861 2.239352250734823 2.286674909135703 2.226558244857858 2.204823598210908 0.006979 0.0035175103694200516 0.01799430139362812 441 90 90 60 2.6530018924800753 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 62.2259646110891 12.2440767288208 33.37496566772461 8.451247215270996 323048.0 0.004535147454589605 143.6717674255367 86.55614471435547 6.334041694214267 275.32025146484375 1103.3533935546875 1036.6734619140625 93837.0 587.3954711914063 1806.5755615234373 390.7528076171875 35.058597564697266 +sub-10044_ses-V3_task-cuff_run-01_bold 0.0023620814479638013 0.012821562533936652 8 30.633287914308394 1.0210311149659854 1.019742795124717 0.44127368771398306 14943.26171875 0.13130470176388395 1 0.22624434389140272 2.3155452810029025 2.3654832393374745 2.2642915766918033 2.316861026979429 0.00629088 0.0015420328127220273 0.02699117548763752 442 90 90 60 2.5672611344172336 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 80.7936129728127 13.175704956054688 38.075714111328125 9.083710670471191 323399.0 0.009049774147570133 167.58190460205066 99.54591369628906 3.8146206786013286 314.2947692871094 1181.9423828125 1105.51806640625 93828.0 609.9667633056641 1999.1775878906246 430.6192932128906 29.929134368896484 +sub-10044_ses-V3_task-rest_run-01_bold 0.001918645598194131 0.012376047065462754 7 30.75865276918552 1.030520683710407 0.9755782031674203 0.4403605694791871 14410.8720703125 0.10540245135785212 7 1.580135440180587 2.313334172902762 2.371908239082168 2.2659457432927392 2.302148536333379 0.010926 0.0011420473456382751 0.025626545771956444 443 90 90 60 2.5326520620968274 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 77.17334888012232 13.490676879882812 38.58903884887695 9.336343765258789 323807.0 0.013544018380343914 169.81151275634778 99.7436294555664 3.786726778009532 318.12017822265625 1196.70263671875 1117.6387939453125 93441.0 608.1016235351562 2034.356689453125 441.2895202636719 30.34844970703125 +sub-10044_ses-V3_task-rest_run-02_bold 0.0009953863636363637 0.009881996613636363 10 31.955678114373587 1.0363716928701594 0.9721384019589971 0.4405342012878715 14863.3212890625 0.13175289184778033 16 3.6363636363636362 2.296380009874295 2.3509207399161363 2.2509915772202977 2.28722771248645 0.00958058 0.00218994845636189 0.026170553639531136 440 90 90 60 2.555406837831988 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 64.51407053298013 13.205268859863281 37.80484390258789 9.125 323730.0 0.013636363670229912 166.9093154907226 97.4934310913086 3.8544921235471 314.87103271484375 1181.7547607421875 1105.5726318359375 93642.0 604.3692993164062 1996.267132568359 432.63824462890625 34.296234130859375 +sub-10045_ses-V1_task-cuff_run-01_bold 0.0007451467268623024 0.008605600699774268 7 29.532344274343913 1.0650019931447963 0.9839091060633479 0.4036060962123338 11205.9443359375 0.07622138617915197 0 0.0 2.565260717468494 2.593537396942083 2.662299894209707 2.4399448612536907 0.0110471 -0.010730347596108913 0.01730465143918991 443 90 90 60 2.6042645324078206 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4005050659179688 4 118.57023925010536 15.033519744873047 33.128082275390625 10.218961715698242 344174.0 0.0 121.20767974853516 85.93500518798828 6.6138191500852965 276.7212219238281 1157.9478759765625 1085.4130859375 75787.0 630.563427734375 1902.9661865234373 416.78021240234375 39.681644439697266 +sub-10045_ses-V1_task-cuff_run-02_bold 0.0007200678733031675 0.007807838574660634 8 29.44273129945582 1.0789002212244885 0.9850044928117923 0.4038191776386722 11325.193359375 0.07459252033108237 0 0.0 2.5596392437089337 2.58722906385942 2.6624123942052367 2.429276273062144 0.0124826 -0.010424700565636158 0.015871526673436165 442 90 90 60 2.6188490302342973 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4005050659179688 1 82.65391200974763 14.913235664367676 32.589332580566406 10.158371925354004 344107.0 0.0 120.55294876098638 81.50286102294922 6.535635971651482 275.75054931640625 1154.22802734375 1083.0 75801.0 630.4140625 1897.57470703125 413.5377197265625 40.24790954589844 +sub-10045_ses-V1_task-rest_run-01_bold 0.00048356659142212194 0.008170427449209932 7 30.08404951821267 1.0549334855882353 0.972354180407239 0.4034675277587303 11354.763671875 0.07253479667887877 0 0.0 2.564722981711219 2.590558230393798 2.660304060955681 2.443306653784178 0.0108547 -0.01046866923570633 0.01560383103787899 443 90 90 60 2.596362866221738 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4005050659179688 2 92.75226029258687 15.043560028076172 33.08754348754883 10.218961715698242 344181.0 0.0 121.45824432373047 84.72396087646484 6.638027789245413 279.06048583984375 1162.800537109375 1089.599365234375 75880.0 631.3558990478516 1913.454412841797 419.6609802246094 39.110679626464844 +sub-10045_ses-V1_task-rest_run-02_bold 0.0006606306306306307 0.007916026914414415 6 29.996633318555283 1.0729687945146722 0.9827173950112874 0.40371083160401716 11148.07421875 0.07099841031405048 0 0.0 2.554922519380658 2.5750540643432114 2.6596123943164987 2.430101099482264 0.0135783 -0.01028100773692131 0.01606874167919159 444 90 90 60 2.6065992964926648 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4005050659179688 3 88.6365708960494 15.039731979370117 32.71467208862305 10.204955101013184 344283.0 0.0 120.08738708496078 82.77877807617188 6.650538954228487 273.2196044921875 1151.6173095703125 1079.1126708984375 75665.0 627.002734375 1895.4960205078128 413.98980712890625 40.09497833251953 +sub-10045_ses-V3_task-cuff_run-01_bold 0.00046795045045045045 0.008398825720720721 6 28.811332469909722 1.0191531748532727 0.9690124517607227 0.4163375175311529 12406.1728515625 0.09574012071404184 0 0.0 2.4747812468326287 2.4621707354954587 2.577612397574886 2.3845606074275407 0.0131571 -0.012856091372668743 0.023681040853261948 444 90 90 60 3.3805469758714795 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 223.8089464177236 13.670661926269531 31.588953018188477 9.344594955444336 342812.0 0.0022522523067891598 121.0157699584961 82.11890411376953 1.3408386708808102 263.0066223144531 1059.48486328125 1037.3603515625 77594.0 583.7117431640626 1580.6697570800782 306.8597106933594 38.91026306152344 +sub-10045_ses-V3_task-cuff_run-02_bold 0.0005775450450450451 0.008158617995495497 6 28.22851372632055 1.0215887018058685 0.9870879255756199 0.4160508859702054 12258.068359375 0.0936310307357686 0 0.0 2.4631298551615797 2.4510790692695354 2.5635498981336795 2.374760598081523 0.0132525 -0.01271919533610344 0.02373017556965351 444 90 90 60 3.3945592635626793 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 250.37333725627212 13.744123458862305 31.351545333862305 9.355855941772461 342957.0 0.0 119.6590133666993 82.0752944946289 1.3385901296553984 260.01824951171875 1056.5830078125 1033.96728515625 77372.0 587.0684967041016 1575.8974731445314 304.5934753417969 39.28044128417969 +sub-10045_ses-V3_task-rest_run-01_bold 0.003508843537414966 0.009745009274376418 9 29.155646098772728 1.0502051461590909 1.0117532305681822 0.4159366024337746 12270.42578125 0.10378787918023678 1 0.22675736961451248 2.482890976459134 2.464304068744021 2.576474897620086 2.407893963013296 0.002684 -0.012828155420720577 0.02348840795457363 441 90 90 60 3.385176734024776 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 206.5202536151465 13.793916702270508 31.303468704223633 9.42630386352539 342921.0 0.0022675737272948027 119.94784545898438 79.97674560546875 1.3174325641274214 263.8292236328125 1064.328125 1041.87646484375 77612.0 588.9581909179688 1587.3092956542966 307.77410888671875 36.481815338134766 +sub-10045_ses-V3_task-rest_run-02_bold 0.0006695495495495495 0.007960693828828828 6 28.18491566318287 1.0260598318284424 0.9826686076749432 0.41632005271737116 12321.423828125 0.09645522831474088 0 0.0 2.4583951323493256 2.446387402789299 2.556387398418291 2.3724105958403867 0.0130476 -0.012689560651779175 0.02381618693470955 444 90 90 60 3.3955745378865148 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 234.47457887285944 13.704054832458496 31.399110794067383 9.306306838989258 342930.0 0.0 119.99572372436518 82.15618133544922 1.3934064035062468 259.47210693359375 1054.6500244140625 1031.5157470703125 77356.0 587.8575744628906 1574.1233825683594 303.7804260253906 40.14684295654297 +sub-10047_ses-V1_task-cuff_run-01_bold 0.000987900677200903 0.00932266381489842 7 36.73394462095022 1.0093963020588232 0.9839921014479638 0.5450941839031982 606.5153198242188 0.19211774478452784 0 0.0 2.9251026615446407 2.7277248916099515 3.213979038954614 2.833604054069358 0.0144437 -0.011327121406793594 0.16005638241767883 443 90 90 54 1.8644371926182015 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 2 22.066821077637464 5.046871662139893 27.066545486450195 10.214447021484375 262158.0 6.566591739654541 107.46952819824219 44.4995002746582 2.856890249092114 120.52923583984375 303.99078369140625 272.96954345703125 109920.0 128.62969360351562 587.072378540039 146.4078826904297 30.431833267211914 +sub-10047_ses-V1_task-cuff_run-02_bold 0.0015560270880361176 0.009736713972911966 7 35.4187951540724 1.0131231264027152 0.990898002330317 0.5456146847218403 604.0188598632812 0.16238211953380385 0 0.0 2.9090818288479183 2.713241558852134 3.19347487310271 2.8205290545889117 0.0177073 -0.012226841412484646 0.16177800297737122 443 90 90 54 1.8588738273737293 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 4 21.840666987167264 4.983283519744873 27.016704559326172 10.17381477355957 262189.0 6.557562351226807 107.08036499023432 44.18730926513672 2.8343834083940163 119.95022583007812 302.2452697753906 271.5056457519531 110041.0 126.95259857177734 583.6839599609375 146.0585479736328 30.486053466796875 +sub-10047_ses-V1_task-rest_run-01_bold 0.0012526018099547512 0.007545524298642534 8 34.388401092040816 1.0277714644671203 1.0062564975963713 0.5426837484204707 662.0693359375 0.1603264143679492 30 6.787330316742081 2.9052373845562385 2.7024832259462985 3.18683737336646 2.826391554355957 0.00991927 -0.010171078145503998 0.16318748891353607 442 90 90 54 1.884445355565843 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 23.106272883719427 4.464578628540039 26.192358016967773 9.77375602722168 263626.0 6.613122463226318 104.55486869812012 43.80976486206055 2.879036022955101 119.63963317871094 302.1129150390625 272.0429992675781 109158.0 128.87522583007814 578.099887084961 144.36170959472656 33.612770080566406 +sub-10047_ses-V1_task-rest_run-02_bold 0.000795339366515837 0.007718304298642535 8 35.059913795260776 1.0065597435374147 0.9901861099999999 0.5464239421374794 604.5131225585938 0.15322465266142563 30 6.787330316742081 2.8953901627253096 2.6962665595266597 3.1756332071450073 2.814270721504262 0.0136212 -0.012307832017540932 0.16401483118534088 442 90 90 54 1.8643483509619403 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 21.87292222223359 4.967723369598389 27.308372497558594 10.178733825683594 262764.0 6.635746955871582 108.93405494689937 44.84247970581055 2.8927892381356815 118.62496948242188 300.7587890625 269.75567626953125 109544.0 127.86109085083008 579.5902709960931 144.69100952148438 32.762054443359375 +sub-10047_ses-V3_task-cuff_run-01_bold 0.0016430405405405408 0.007567828693693694 6 35.737193118216695 1.0199022576975176 1.0020016796613993 0.5541485221582485 445.57696533203125 0.14971237796813078 2 0.45045045045045046 2.8474041442290563 2.6902457264325728 3.112674876313413 2.739291829941183 0.0111058 -0.030774427577853203 0.14702501893043518 444 90 90 54 1.8134803105697583 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 21.185846124986014 6.260989665985107 27.608285903930664 11.265766143798828 254738.0 6.722973346710205 105.75619812011712 42.77219772338867 3.590771126101356 115.57952880859375 295.86328125 263.89752197265625 113750.0 125.42342376708984 577.6464233398438 145.519287109375 32.60626983642578 +sub-10047_ses-V3_task-cuff_run-02_bold 0.005005325842696629 0.010036858764044943 5 38.792526283783815 0.9877523016666666 0.9973704964864866 0.5571511928740689 448.6246032714844 0.2042667905395994 6 1.348314606741573 2.862511089107732 2.6752582270281224 3.1417415418250743 2.7705334984699985 0.0162452 -0.030232449993491173 0.14849892258644104 445 90 90 54 1.8544691260150268 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 20.62204416700451 6.320216655731201 27.470029830932617 11.269662857055664 254898.0 6.741573333740234 104.29988555908199 41.6690559387207 3.274308779545338 113.2591552734375 290.5278625488281 259.878662109375 113824.0 124.2552848815918 559.2658416748043 140.13580322265625 27.93445587158203 +sub-10047_ses-V3_task-rest_run-01_bold 0.001586599099099099 0.0073127695495495484 6 35.92744004038374 1.0319970365688484 1.00572506241535 0.5534825062041119 470.8779296875 0.13870162822279244 23 5.18018018018018 2.8441096999171767 2.6799582268413613 3.1130290429660064 2.739341829944163 0.0191178 -0.031247159466147423 0.1495334655046463 444 90 90 54 1.8434323516935938 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 21.350464786234067 5.907034873962402 27.196006774902344 11.015766143798828 255514.0 6.770270347595215 104.7765785217281 41.99949264526367 3.3871335171520913 115.99358367919922 296.5799255371094 265.2432556152344 113295.0 126.5540542602539 572.507232666015 143.88490295410156 33.000038146972656 +sub-10047_ses-V3_task-rest_run-02_bold 0.0040286261261261265 0.008599493986486486 6 38.43623754595936 0.9779848774040626 0.980832298419864 0.5571496581441243 455.52301025390625 0.19541364402537806 53 11.936936936936936 2.817899978714498 2.6442582282599516 3.070762377978866 2.738679329904675 0.0132175 -0.030538951978087425 0.15409475564956665 444 90 90 54 1.8704761002812957 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 7 21.930082068568055 6.1140642166137695 27.331459045410156 11.020270347595215 255497.0 6.601351737976074 104.12793273925746 42.65516662597656 3.580439807092519 110.77777862548828 288.6264953613281 258.2680358886719 113203.0 126.07004928588867 551.6765686035155 138.0754852294922 29.448699951171875 +sub-10049_ses-V1_task-cuff_run-01_bold 0.002641111111111111 0.028393436752136753 4 42.21591229310347 1.0793117042241374 0.9833119178448279 0.4349973503839278 367451.53125 0.35525279262357035 3 2.5641025641025643 2.567049940792225 2.624978028169014 2.7230422535211267 2.3531295406865342 0.0212611 -0.02734025940299034 0.025856930762529373 117 96 96 54 4.880319929611228 0.7999997138977051 2.21875 2.21875 2.3999996185302734 1 118.63716256268557 42.070220947265625 591.835693359375 28.639936447143555 345456.0 0.23639127612113953 2381.9825439453125 1767.4188232421875 2.2285501302571475 2914.71044921875 18352.318359375 18257.94921875 83914.0 12479.70625 24540.18173828125 3741.115478515625 31.080238342285156 +sub-10049_ses-V1_task-cuff_run-02_bold 0.0017939101123595504 0.03206257415730337 5 45.24015748822077 1.122532720518018 0.998058440563063 0.4374077288803725 342330.8125 0.3955818067990886 6 1.348314606741573 2.587973682085967 2.6467966197183097 2.7437115492957744 2.373412877243817 0.0100672 -0.028218477964401245 0.029042312875390053 445 96 96 54 4.892907370546248 0.7999997138977051 2.21875 2.21875 2.3999996185302734 6 111.15027169889261 42.68045425415039 596.446533203125 29.12348175048828 344801.0 0.2821011543273926 2437.9619140625 1760.9610595703125 2.3135160191364914 2819.25927734375 18088.2734375 18022.439453125 84373.0 12250.067578125 24138.469921874996 3683.358642578125 29.351394653320312 +sub-10049_ses-V1_task-rest_run-01_bold 0.0007018568232662192 0.029133504921700224 3 43.215394340829604 1.1049192410313895 0.9767023503139018 0.4346527166230065 327452.40625 0.35759063006505604 256 57.27069351230425 2.5848567729980494 2.649081690140845 2.7293340845070424 2.37615454434626 0.0158454 -0.027519812807440758 0.026226768270134926 447 96 96 54 4.853140654566317 0.7999997138977051 2.21875 2.21875 2.3999996185302734 7 110.7620185910276 45.202186584472656 602.1842041015625 30.844318389892578 345661.0 0.29003801941871643 2450.490966796875 1771.5218505859375 2.106648748746074 2984.101806640625 18538.595703125 18440.3125 83621.0 12573.9072265625 24888.486328125 3799.64306640625 30.770633697509766 +sub-10049_ses-V1_task-rest_run-02_bold 0.0008666143497757848 0.03782178004484305 4 47.026108988247174 1.0800217492134834 0.9660963064494386 0.43933681259763263 293635.1875 0.4270074524985996 315 70.62780269058295 2.5915152828347554 2.6397971830985916 2.75015661971831 2.384592045687365 0.00951676 -0.028794998303055763 0.0325128473341465 446 96 96 54 4.95687515511698 0.7999997138977051 2.21875 2.21875 2.3999996185302734 5 110.46581587398366 46.241207122802734 608.4866943359375 31.559375762939453 344394.0 0.3076648369431496 2499.876354980468 1774.6959228515625 2.411005786831921 2707.477783203125 17949.009765625 17880.02734375 84755.0 12115.160937499999 23839.112109375 3607.095458984375 27.311267852783203 +sub-10049_ses-V3_task-cuff_run-01_bold 0.000683505617977528 0.03190717528089888 5 45.061992189729715 1.0796540038738744 0.9422301950450453 0.4457678215692279 234165.0 0.3550081272415565 4 0.898876404494382 2.6402537385521754 2.680576901408451 2.783981971830986 2.4562023424170896 0.00856755 -0.02251816727221012 0.053519684821367264 445 96 96 54 4.640859333013391 0.7999997138977051 2.21875 2.21875 2.3999977111816406 8 127.5862009908648 52.41053771972656 572.2014770507812 36.605655670166016 338685.0 0.9024359941482545 2279.2690917968744 1673.9306640625 1.5720056491768233 3462.629150390625 18479.408203125 18366.51171875 90655.0 12537.838671875 25033.960742187497 3957.545166015625 26.634159088134766 +sub-10049_ses-V3_task-cuff_run-02_bold 0.001102629213483146 0.025038261797752807 5 46.17729511783782 1.1439134985360369 0.9845402902027024 0.4457817514954138 301394.125 0.3796539982696032 6 1.348314606741573 2.6184169823786116 2.672689577464789 2.7494715492957744 2.433089820375271 0.00769539 -0.022697271779179573 0.051374487578868866 445 96 96 54 4.610862332122826 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 122.39041116672344 47.21462631225586 564.2601318359375 32.44889450073242 338605.0 0.4461742460727692 2290.0940917968746 1637.673095703125 1.5518963807094162 3494.34814453125 18452.857421875 18341.572265625 90694.0 12520.347265625 25051.880078124996 3977.883056640625 29.25626564025879 +sub-10049_ses-V3_task-rest_run-01_bold 0.0005789414414414415 0.021519149774774773 6 42.44995688977424 1.1204626584650101 0.9672443899774259 0.44403085475061504 227799.40625 0.31013918210940905 237 53.37837837837838 2.643106522892739 2.6890952112676056 2.7756845070422536 2.464539850368357 0.00393638 -0.022349251434206963 0.05249963700771332 444 96 96 54 4.501044965329347 0.7999997138977051 2.21875 2.21875 2.3999977111816406 3 130.0834261052651 52.97034454345703 558.6473388671875 37.10402297973633 339093.0 0.9258464574813843 2256.317773437495 1631.8360595703125 1.3761904684933794 3639.7421875 18645.474609375 18528.1484375 90535.0 12420.12841796875 25514.386914062503 4116.3876953125 30.67380142211914 +sub-10049_ses-V3_task-rest_run-02_bold 0.0010216515837104072 0.0323037278280543 8 48.961592961655306 1.1147474250566893 0.9752038655555548 0.44795497827503067 223341.15625 0.4498284085623842 311 70.36199095022624 2.640068251164773 2.676921690140845 2.794172394366197 2.4491106689872764 0.0101528 -0.023389989510178566 0.05362351983785629 442 96 96 54 4.636994187176758 0.7999997138977051 2.21875 2.21875 2.3999977111816406 3 116.37990992762188 53.02195358276367 586.2449340820312 36.97245788574219 337760.0 0.875498840212822 2384.947644042968 1681.443603515625 1.8777880092258403 3340.852294921875 18210.146484375 18106.0546875 91276.0 12285.418701171875 24576.943359375 3904.675048828125 25.87973403930664 +sub-10050_ses-V1_task-cuff_run-01_bold 0.0014752252252252253 0.005626250540540541 6 33.843681834966134 1.0140389617607226 1.0047489549435666 0.5378582732651818 513.0558471679688 0.11846569071987656 0 0.0 2.718058311130499 2.578133230887523 2.984874881391729 2.5911668211122447 0.0266647 0.003712597768753767 0.1220475435256958 444 90 90 54 2.203459742985034 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 29.249655310815285 5.609846591949463 27.554832458496094 10.448198318481445 282117.0 6.46846866607666 107.20991516113284 47.9654655456543 2.1521940065832927 97.3024673461914 272.9858093261719 253.27816772460938 91280.0 123.0379539489746 489.385807800293 114.9450454711914 36.60673904418945 +sub-10050_ses-V1_task-cuff_run-02_bold 0.0013210657596371886 0.004792431519274377 9 33.05091417479543 1.0228842780681822 1.0157452111818177 0.5388124773978173 498.0400085449219 0.10063960516012978 2 0.45351473922902497 2.705924977847857 2.569466564565239 2.970170715309353 2.578137653668979 0.0185931 0.002312775468453765 0.12432659417390823 441 90 90 54 2.1838765854351228 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 8 29.00999586270909 5.691713809967041 27.66834831237793 10.519274711608887 281770.0 6.517006874084473 108.27177085876447 47.86894989013672 2.365566298641432 96.64312744140625 272.40557861328125 251.9002227783203 91584.0 123.00396766662598 489.3942230224609 115.34481811523438 37.964351654052734 +sub-10050_ses-V1_task-rest_run-01_bold 0.0007268693693693694 0.006698840698198199 6 34.694213561512434 1.0191912974717834 0.9887846007900676 0.5354533514418851 520.0848388671875 0.09571215493033698 4 0.9009009009009009 2.7683069215698715 2.6254623956734977 3.04827904553894 2.6311793234971756 0.0185669 -0.0010830947430804372 0.12288249284029007 444 90 90 54 2.1726451259747837 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 29.848478377196408 5.6432390213012695 27.289297103881836 10.47747802734375 281736.0 6.477477550506592 106.50450897216797 47.06487274169922 2.118230024280681 100.27601623535156 277.25885009765625 256.8333435058594 91640.0 123.09122009277343 499.3867385864259 118.21163940429688 35.48877716064453 +sub-10050_ses-V1_task-rest_run-02_bold 0.0013754772727272728 0.004680856931818181 10 32.214117584624155 1.015243021594533 1.0135121862642371 0.5401887891070868 507.1980895996094 0.10072898424268244 6 1.3636363636363635 2.680537478161692 2.540154065730013 2.9443082163370367 2.5571501524180262 0.0130467 0.0037629748694598675 0.12520582973957062 440 90 90 54 2.2298197540808617 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 27.361279623341467 5.4384541511535645 27.8251953125 10.388635635375977 282578.0 6.593181610107422 111.30261001586906 48.18157958984375 1.9858998400129249 96.9234390258789 271.8109130859375 252.34771728515625 91134.0 123.56692848205567 484.1266845703124 113.16893768310547 39.096893310546875 +sub-10052_ses-V1_task-cuff_run-01_bold 0.0011667045454545454 0.012846565227272727 10 54.502890019772146 1.1373514455808662 0.9891248828929378 0.4390863334562123 7390.79052734375 0.39669830795480304 0 0.0 2.290364733891885 2.294566575488783 2.297133242053459 2.2793943841334126 0.00299511 -0.00010670958727132529 0.011663737706840038 440 90 90 60 2.648614269310124 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 56.59596637782623 17.600849151611328 41.29491424560547 12.182954788208008 331304.0 0.013636363670229912 167.4677177429195 93.31869506835938 4.210141154607677 290.7113037109375 1117.28466796875 1044.5203857421875 86599.0 622.9174682617188 1858.5074218749994 394.3625793457031 29.216938018798828 +sub-10052_ses-V1_task-cuff_run-02_bold 0.0008981363636363635 0.010520587681818181 10 54.194614123690165 1.1370363618451027 0.9929104166742602 0.4394089912103665 7560.84912109375 0.40629345159500224 0 0.0 2.284686960760397 2.2956040754475566 2.301312408554061 2.2571443982795727 0.00284988 -1.0714506061049178e-05 0.011310158297419548 440 90 90 60 2.6321985584417247 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 53.22408877824296 17.366662979125977 41.34074401855469 12.006817817687988 331204.0 0.011363635770976543 169.71555786132808 92.71952056884766 4.4565100158489654 288.7738952636719 1111.33349609375 1036.78857421875 86641.0 616.2908935546875 1848.90673828125 393.8846435546875 31.156511306762695 +sub-10052_ses-V1_task-rest_run-01_bold 0.0009230681818181818 0.011278189568181819 10 53.294832264236895 1.1376652415717534 0.9969244863553524 0.439246993695702 7048.92724609375 0.36222368389378884 280 63.63636363636363 2.2954036252263283 2.3180040745574604 2.302129075188276 2.266077725933249 0.00339376 0.00055270129814744 0.010772916488349438 440 90 90 60 2.6495199576170054 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 52.78793612089588 17.86872673034668 40.79629898071289 12.486363410949707 330814.0 0.03181818127632141 165.38124694824194 91.15526580810547 4.165458102107786 292.0793762207031 1119.119384765625 1047.8431396484375 86952.0 616.5858917236328 1862.1472351074217 395.48187255859375 30.786840438842773 +sub-10052_ses-V1_task-rest_run-02_bold 0.0008772272727272727 0.011091348954545456 10 50.90540099970386 1.1337570911389514 0.9763741776082009 0.43881149666230573 7397.29833984375 0.3479727755844895 253 57.5 2.28366335003517 2.2942915754997104 2.3012915752215557 2.2554068993842447 0.00261181 0.00030072234221734107 0.011522246524691582 440 90 90 60 2.629097555063565 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 62.40864484927428 17.41046714782715 40.687294006347656 11.972726821899414 331012.0 0.0022727272007614374 166.6340789794922 92.37541961669922 4.3727784967332 287.94659423828125 1106.1868896484375 1033.269287109375 86882.0 611.6580505371094 1842.0106689453125 393.0106506347656 31.301694869995117 +sub-10052_ses-V3_task-cuff_run-01_bold 0.0006391836734693878 0.009576189433106575 9 59.67205254818184 1.145770150795454 0.9699922285909086 0.44292797734161066 7302.912109375 0.4070410051808287 0 0.0 2.2817339960729384 2.31462490802507 2.25536241037995 2.275214669813795 0.00603622 -0.004022378008812666 0.014551118016242981 441 90 90 60 2.688581810247293 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 45.16841270427639 17.888721466064453 42.03638458251953 12.294784545898438 329667.0 0.004535147454589605 175.44535675048834 90.7127685546875 3.4071453590925227 299.62347412109375 1128.8846435546875 1059.4761962890625 87936.0 622.5946807861328 1873.2307739257812 394.0628356933594 31.437545776367188 +sub-10052_ses-V3_task-cuff_run-02_bold 0.0007725339366515837 0.009356821538461539 8 58.59933207852602 1.1509085733786846 0.9902711023582766 0.4435013741910231 7191.3720703125 0.40114028395947954 0 0.0 2.272092326457329 2.3087665749245256 2.2423582442300223 2.2651521602174376 0.00631839 -0.003548030275851488 0.015111816115677357 442 90 90 60 2.6948040126000703 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 46.152722545997605 17.952234268188477 42.14371871948242 12.389141082763672 329759.0 0.009049774147570133 176.03440246582022 90.50544738769531 3.5763946387018066 297.322265625 1124.2890625 1054.24560546875 87778.0 626.8725524902344 1862.666491699218 391.21197509765625 31.673086166381836 +sub-10052_ses-V3_task-rest_run-01_bold 0.0010595927601809955 0.01017309366515837 8 56.819417758911605 1.1485337824716555 1.0489900792517002 0.4430678563248854 7167.44189453125 0.4095125823038629 314 71.04072398190046 2.2965145562662364 2.332499907314781 2.2660499099552665 2.290993851528662 0.00543361 -0.0036360525991767645 0.014784393832087517 442 90 90 60 2.6958579137323677 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 45.4841299374704 17.881793975830078 41.782474517822266 12.452488899230957 329297.0 0.03619909659028053 173.00090637207038 89.41188049316406 3.417604026993323 300.1011657714844 1131.50732421875 1062.1131591796875 88190.0 623.6762878417969 1872.3878662109373 393.9774169921875 30.660640716552734 +sub-10052_ses-V3_task-rest_run-02_bold 0.001574263038548753 0.01160452149659864 9 56.66547196140911 1.1322640949772722 0.9811857044318181 0.44405682480759096 6985.498046875 0.4139368564179696 318 72.10884353741497 2.30174233705659 2.3351040738779676 2.2694040764886507 2.3007188608031535 0.00359667 -0.0037049034144729376 0.01476872619241476 441 90 90 60 2.6945463129011373 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 45.76602775585443 18.076990127563477 42.26962661743164 12.460317611694336 329177.0 0.013605441898107529 176.3111083984375 90.63098907470703 3.484796271630965 298.9310302734375 1121.3905029296875 1053.0181884765625 88215.0 621.3213317871093 1855.9897949218753 390.79388427734375 29.46588134765625 +sub-10053_ses-V1_task-cuff_run-01_bold 0.0007725339366515837 0.008282276312217195 8 36.982558373741504 1.0077056113832197 0.9979759364399089 0.4982989036858388 728.0453491210938 0.15326163304677007 1 0.22624434389140272 2.809645817706299 2.4806624014273324 3.0486207121920303 2.8996543394995338 0.009909 -0.005329309497028589 0.11998928338289261 442 90 90 54 2.533796015552391 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 52.635710122412476 2.7438206672668457 19.786876678466797 8.205883026123047 300242.0 6.171946048736572 65.80294303894048 36.92314147949219 1.684071643056667 82.76406860351562 248.39691162109375 236.84841918945312 77341.0 117.82353210449219 416.490966796875 93.4751205444336 30.972867965698242 +sub-10053_ses-V1_task-cuff_run-02_bold 0.00047079006772009023 0.005572353431151242 7 37.91485267751133 1.022460158190045 1.0030298561990962 0.5000079107420027 700.0369262695312 0.15166598193744377 0 0.0 2.763673595216821 2.451441569255131 3.0031623806650485 2.836416835730285 0.0153325 -0.00741075724363327 0.11926144361495972 443 90 90 54 2.529110080730045 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 53.68552353966278 2.9083096981048584 20.11040496826172 8.370203018188477 300017.0 6.288938999176025 67.14311523437505 37.28059768676758 1.7567460334604519 82.65423583984375 248.510009765625 236.5869140625 77395.0 118.90384216308594 417.7000152587892 93.54491424560547 34.697288513183594 +sub-10053_ses-V1_task-rest_run-01_bold 0.0009191836734693876 0.008784546621315193 9 36.81902399059089 0.9936122951590913 0.9927730603636359 0.49730621762088684 726.6865844726562 0.19763976285399473 67 15.192743764172336 2.833286095397374 2.4908415676895155 3.083612377468253 2.925404341034353 0.00799441 -0.006653496529906988 0.11581385135650635 441 90 90 54 2.541649800644983 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 54.39578968291234 2.921499490737915 19.506494522094727 8.276643753051758 300300.0 6.065759658813477 64.49671096801755 35.5644416809082 1.668939715608679 82.4374008178711 248.20924377441406 236.6439971923828 77257.0 118.06712341308594 416.0734802246094 93.10585021972656 30.121238708496094 +sub-10053_ses-V1_task-rest_run-02_bold 0.0005194819819819819 0.010019990112612613 6 39.24671258340859 0.9841879298194133 0.9715378860722349 0.5007653283906218 689.5859985351562 0.215830727476204 93 20.945945945945947 2.7938985954629936 2.4650540687142186 3.036520712672841 2.8801210050019224 0.0134618 -0.005519147031009197 0.11446230858564377 444 90 90 54 2.5276563357513924 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.72953024876106 3.065380096435547 19.93238639831543 8.45945930480957 300135.0 6.21846866607666 66.06982421875 35.57892608642578 1.782241699579167 81.56816101074219 247.03968811035156 235.090087890625 77238.0 117.85969047546386 414.8394226074216 93.00653839111328 28.758028030395508 +sub-10054_ses-V1_task-cuff_run-01_bold 0.0003914253393665159 0.004142491515837104 8 35.350908076190464 1.045069624739228 0.9916327704081632 0.5076536511170957 678.9156494140625 0.23374806353297203 0 0.0 2.8373694222594636 2.6867623932376543 3.0904665438625596 2.734879329678178 0.0073339 -0.015324938111007214 0.09715881198644638 442 90 90 54 2.049203629313724 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 67.75719364332149 4.806717395782471 22.499773025512695 9.91855239868164 282622.0 6.5248870849609375 76.15588645935064 37.28807067871094 2.082402694848417 116.77001953125 303.826171875 280.26470947265625 91569.0 126.84208526611329 567.4846191406248 136.76687622070312 39.687347412109375 +sub-10054_ses-V1_task-cuff_run-02_bold 0.0012620090293453724 0.007212944943566592 7 36.41321239237557 1.0209731947285066 0.9805440104298647 0.5096081581225568 672.1015014648438 0.26562830615476957 0 0.0 2.857543033592437 2.694970726244818 3.1118707096787013 2.765787664853791 0.0100949 -0.015320020727813244 0.09793715924024582 443 90 90 54 2.069601444412821 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 65.74713269520214 4.9297356605529785 22.61457633972168 9.986455917358398 282548.0 6.4762983322143555 76.0880355834961 36.89240646362305 2.0229902536966193 114.57203674316406 302.1744079589844 278.5508117675781 91701.0 127.74943542480469 562.1309204101562 134.59078979492188 32.926570892333984 +sub-10054_ses-V1_task-rest_run-01_bold 0.0006460045146726862 0.005317758848758465 7 36.86960027015839 1.0434988937330318 0.9887950882126699 0.5067625982795907 708.2831420898438 0.29969140436430536 228 51.46726862302483 2.8574291446127336 2.697424892813965 3.111954043008723 2.7629084980155127 0.0106243 -0.014609362930059433 0.09591181576251984 443 90 90 54 2.06039006785004 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 65.80459063884565 4.665343761444092 22.281707763671875 9.790067672729492 282787.0 6.449210166931152 75.07178573608408 36.715972900390625 2.0839550211200537 115.99774169921875 303.6043395996094 280.2505798339844 91413.0 126.78916625976562 564.5584594726562 136.01747131347656 36.36271286010742 +sub-10054_ses-V1_task-rest_run-02_bold 0.000746787330316742 0.0073016662895927596 8 37.76819065222223 1.0297292418140593 0.9868726017687078 0.5100140089301471 676.23193359375 0.3108789880984476 226 51.13122171945702 2.846302755944382 2.683679060026842 3.099012376856312 2.7562168309499917 0.0130088 -0.01434258557856083 0.09665337204933167 442 90 90 54 2.0915216680502184 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 64.09929351491765 4.867095470428467 22.44181251525879 9.947964668273926 282661.0 6.463801383972168 75.38914489746094 36.378746032714844 2.091788464909275 112.9696044921875 300.0047302246094 277.2036437988281 91544.0 128.03269577026367 554.3360198974607 132.53610229492188 32.699588775634766 +sub-10054_ses-V3_task-cuff_run-01_bold 0.0013816930022573365 0.006484578329571106 7 50.11263591909502 1.0775775867194577 1.0080829645475116 0.5329162154759477 474.7198791503906 0.4443112185885834 5 1.1286681715575622 2.7513277605837203 2.5595290649601194 2.9121040509500484 2.7823501658409935 0.0179467 -0.028215419501066208 0.08855278044939041 443 90 90 54 2.2305291807458585 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 57.501305357564256 5.580676078796387 21.7569580078125 10.60270881652832 274676.0 6.498871326446533 72.78160095214844 32.74938201904297 1.0854696574574447 98.29519653320312 265.3580627441406 247.47743225097656 97854.0 114.1820556640625 473.54482727050777 110.94953155517578 30.88629150390625 +sub-10054_ses-V3_task-cuff_run-02_bold 0.0007522747747747749 0.00699156240990991 6 46.53081994656884 1.04094708462754 0.9848680983747181 0.5341436583805842 463.0171813964844 0.37706233681779266 3 0.6756756756756757 2.7501597050465705 2.5551165651354566 2.913858217547011 2.7815043324572444 0.0108192 -0.027477921918034554 0.08959303051233292 444 90 90 54 2.2339982904128814 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 56.114113469378765 5.603168487548828 21.742212295532227 10.594594955444336 274742.0 6.481982231140137 72.18671035766593 32.56652069091797 1.057762727850334 97.14051055908203 262.9456481933594 245.31532287597656 97785.0 113.03829345703124 469.25180664062515 109.8094253540039 30.39026641845703 +sub-10054_ses-V3_task-rest_run-01_bold 0.0009419187358916478 0.006855215959367947 7 49.4870802418778 1.0735181520588237 1.0033017613800905 0.5323973062291001 477.716064453125 0.4317734257514235 293 66.13995485327314 2.768833315819922 2.5737873977268775 2.9389998832146373 2.793712666518251 0.0104839 -0.02732720412313938 0.08870388567447662 443 90 90 54 2.239097485377415 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 55.39842897620972 5.669363498687744 21.61082649230957 10.591422080993652 274568.0 6.3544020652771 72.19255180358884 32.56198501586914 1.0089122122366296 99.02645874023438 266.2939147949219 248.8284454345703 97801.0 114.02031707763672 474.5214538574219 111.12833404541016 30.451297760009766 +sub-10054_ses-V3_task-rest_run-02_bold 0.0008851809954751131 0.008060837285067873 8 48.86608122034013 1.0396516230839001 0.9873171480045354 0.5351117887664215 457.0758056640625 0.42306310088231386 303 68.55203619909503 2.758691649558043 2.557641565035122 2.9246665504508593 2.7937668331881467 0.0115819 -0.02739998884499073 0.08927514404058456 442 90 90 54 2.2344495694696103 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 57.46397339015369 5.813009262084961 21.871652603149414 10.730770111083984 274554.0 6.470588684082031 72.1011318206786 32.63740158081055 1.1240603413435082 96.1242904663086 261.8753662109375 244.173095703125 97984.0 113.05351486206055 467.0493484497068 109.27606201171875 28.735315322875977 +sub-10055_ses-V1_task-cuff_run-01_bold 0.0012167410714285715 0.017561500446428572 2 37.57663213912749 1.13761143246085 1.0005103119239385 0.48913505873775165 75724.5546875 0.19739639461077738 0 0.0 2.6328766808470405 2.6977442253521127 2.726985915492958 2.47389990169605 0.00680755 -0.021600786596536636 0.018055424094200134 448 96 96 54 4.487776580663226 0.7999997138977051 2.21875 2.21875 2.4000000953674316 0 18.016243672099222 103.421630859375 904.8449096679688 69.90043640136719 332441.0 0.18391910195350647 4354.0546875 1693.1541748046875 2.364431688088496 3259.20849609375 19250.693359375 19207.01953125 97659.0 11940.103222656251 25903.011328124998 4279.830078125 36.596675872802734 +sub-10055_ses-V1_task-cuff_run-02_bold 0.0005769419642857142 0.016886887276785716 2 37.29216915706935 1.1295319597539155 0.9881060663534672 0.4911590136947173 72494.078125 0.17766759533375986 0 0.0 2.6677218445742166 2.721383661971831 2.7631819718309862 2.518599899919832 0.00790062 -0.023132653906941414 0.017204463481903076 448 96 96 54 4.458534510049681 0.7999997138977051 2.21875 2.21875 2.4000000953674316 1 19.05516484163608 104.22502136230469 923.2869873046875 70.45170593261719 332270.0 0.1940283365547657 4477.520483398437 1739.78173828125 2.44061752723181 3229.236572265625 19073.548828125 19043.19921875 97832.0 11642.316357421874 25670.779492187496 4271.1572265625 37.423133850097656 +sub-10055_ses-V1_task-rest_run-01_bold 0.000622388392857143 0.015543936830357142 2 37.75753382223714 1.1449905559731532 1.0033873490156597 0.4882498752464837 90051.5703125 0.2021275583597328 74 16.517857142857142 2.646216989840883 2.7011921126760563 2.7573047887323945 2.4801540681141985 0.00770364 -0.021120168268680573 0.016465550288558006 448 96 96 54 4.443473662013241 0.7999997138977051 2.21875 2.21875 2.4000000953674316 1 19.286457734223827 93.4962158203125 878.2619018554688 63.13433837890625 331701.0 0.09669718891382217 4275.72216796875 1666.0902099609375 2.6312459654864995 3155.72607421875 19118.25 19107.61328125 98256.0 11512.94091796875 25651.77392578125 4300.13037109375 41.39287185668945 +sub-10055_ses-V1_task-rest_run-02_bold 0.0012244719101123596 0.018765129662921348 5 38.60656484828831 1.16442988295045 1.0705082651576585 0.49148225130007656 78819.4765625 0.1926833040184626 62 13.932584269662922 2.6692934723731105 2.7273509859154927 2.7812461971830986 2.4992832340207407 0.01457 -0.020762745290994644 0.019915718585252762 445 96 96 54 4.479179948440716 0.7999997138977051 2.21875 2.21875 2.4000000953674316 2 18.297967231455072 98.78401947021484 900.5554809570312 66.77334594726562 330227.0 0.18045649975538253 4358.583789062501 1682.2236328125 2.416910766543512 3270.90283203125 19105.958984375 19069.71484375 99194.0 11936.42646484375 25742.73623046875 4257.390625 34.67662811279297 +sub-10056_ses-V1_task-cuff_run-01_bold 0.0025631674208144795 0.009747581402714933 8 37.709640256258524 1.121911583129252 1.0311469618367346 0.43233068672860886 5764.0986328125 0.1664888360519561 0 0.0 2.457586925416352 2.4818040680486337 2.4904999010364253 2.4004568071639967 0.0192296 0.017272818833589554 -0.0001250128261744976 442 90 90 60 2.0509347509531297 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 58.39589306365542 22.762306213378906 48.06004333496094 16.09954833984375 326655.0 0.0429864265024662 196.1929992675781 108.3803482055664 7.641239076058204 369.98309326171875 1361.938232421875 1225.5950927734375 91021.0 696.5498046875 2465.368896484375 597.5755004882812 31.146020889282227 +sub-10056_ses-V1_task-cuff_run-02_bold 0.009451995464852607 0.013731990748299321 9 39.5768498204318 1.147068695022728 1.0885130686818183 0.4319064495521836 5841.5400390625 0.1922480435722535 9 2.0408163265306123 2.4748508043722435 2.481229068071482 2.496324900804961 2.4469984442402875 0.00731646 0.01766192726790905 0.00014883119729347527 441 90 90 60 2.021760482374807 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 59.584540986789335 22.854263305664062 48.90760040283203 16.074831008911133 326774.0 0.027210883796215057 200.44920654296845 110.81603240966797 8.04485458780533 372.88623046875 1359.68115234375 1222.1224365234375 90861.0 696.0204467773438 2470.916015625 604.48095703125 26.87716293334961 +sub-10056_ses-V1_task-rest_run-01_bold 0.0015557787810383744 0.009906630812641084 7 37.26295052604068 1.0829455666515833 0.9625127461312213 0.43267359082890816 5722.51806640625 0.1691565575137484 59 13.318284424379232 2.448353593318324 2.4797707347960976 2.4692040685493124 2.396085976609563 0.0105377 0.016961289569735527 -0.0005978911067359149 443 90 90 60 2.0751983941652794 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 62.40445590415 22.674108505249023 47.51771545410156 16.133182525634766 326394.0 0.06320542097091675 192.24841918945296 107.46245574951172 6.952202131637604 374.0441589355469 1365.78759765625 1230.46728515625 91229.0 695.5530395507812 2471.7792480468747 592.9363403320312 31.987138748168945 +sub-10056_ses-V1_task-rest_run-02_bold 0.004473431151241535 0.008616030699774267 7 39.43542353599551 1.1479241686651576 1.0232317353167426 0.4333770243163095 5759.07177734375 0.18264061113405794 65 14.672686230248306 2.451020260014793 2.472554068416195 2.485104067917503 2.395402643710681 0.0172577 0.01808862015604973 -0.0013159463414922357 443 90 90 60 2.0428468731577585 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 56.07259859242482 22.610523223876953 49.161781311035156 15.97742748260498 326464.0 0.05191873759031296 203.595947265625 111.11621856689453 7.66522701853939 371.97589111328125 1355.9090576171875 1219.9661865234375 91225.0 691.2618896484375 2454.1215820312514 597.1859741210938 32.375667572021484 +sub-10056_ses-V3_task-cuff_run-01_bold 0.004566261261261262 0.015447695968468468 6 52.01481891049667 1.1346144960270865 1.0268598781038365 0.437037761616073 8007.6201171875 0.33935192368708367 32 7.207207207207207 2.4029950195814993 2.3530582398311997 2.463804068763889 2.3921227501494093 0.016552 0.010139350779354572 0.007458379492163658 444 90 90 60 2.5200418147204893 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 12 203.109146597621 18.328838348388672 36.09990692138672 12.722972869873047 325597.0 0.022522523999214172 139.05765686035164 80.6883544921875 3.1664007685327666 340.332275390625 1215.3060302734375 1131.0517578125 92548.0 639.0595886230469 2053.001232910156 448.8201904296875 24.999614715576172 +sub-10056_ses-V3_task-rest_run-01_bold 0.0029704063205417608 0.016301278893905192 7 46.739395987171896 1.1062007648868784 0.988086337624434 0.43654516293271656 7904.9794921875 0.2632587948271092 135 30.474040632054177 2.4129103166309984 2.357237406331801 2.4665290686556074 2.414964474905586 0.019183 0.010537862777709961 0.006857323460280895 443 90 90 60 2.5066264082217984 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 5 127.6151494342217 18.594444274902344 36.19996643066406 12.893905639648438 325371.0 0.015801355242729187 138.01242065429688 80.14324951171875 3.3080608578109993 344.365234375 1227.7874755859375 1141.2166748046875 92693.0 648.1869262695313 2076.685839843749 455.2774658203125 24.698097229003906 +sub-10056_ses-V3_task-rest_run-02_bold 0.0028156561085972854 0.01480042859728507 8 47.1790194047165 1.1122185579365083 1.0064112304761903 0.438147165101013 7797.32568359375 0.28228194055875316 151 34.16289592760181 2.404318635977955 2.3509624065811474 2.463670735435854 2.398322765916865 0.00841701 0.011582521721720695 0.006405232939869165 442 90 90 60 2.518828648102289 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 8 137.92227726996373 18.462087631225586 36.782196044921875 12.89819049835205 325341.0 0.04072398319840431 140.87330627441406 82.0499496459961 3.2600378761672273 340.4617919921875 1215.094482421875 1130.4954833984375 92804.0 640.2732421875 2050.497521972654 448.8155212402344 25.73802947998047 +sub-10057_ses-V1_task-cuff_run-01_bold 0.0020203628117913836 0.008561239931972789 9 33.07560757297729 1.0598483968636363 1.050446128681817 0.454890893363027 6593.4111328125 0.10340147058919956 0 0.0 2.4078994434856544 2.4407374030138094 2.463512402108812 2.319448525334342 0.00473031 0.009150498546659946 0.02601928636431694 441 90 90 60 2.4643026251330786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 162.09866412881408 19.250295639038086 44.83676528930664 13.306122779846191 320547.0 0.0022675737272948027 183.6727951049805 107.6703109741211 4.085562994781627 298.4384460449219 1161.8375244140625 1074.0771484375 96418.0 620.0834625244141 2038.2696289062499 435.8521423339844 34.54348373413086 +sub-10057_ses-V1_task-cuff_run-02_bold 0.0012758956916099774 0.009983725510204081 9 33.75508597965908 1.0290115083863645 0.9818673692500004 0.4557911470106423 6244.86376953125 0.11060483577299948 0 0.0 2.4113619421708763 2.4464582361198173 2.4622540688254806 2.325373521567331 0.00536703 0.009597082622349262 0.026362638920545578 441 90 90 60 2.462272613674198 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 156.95720338315363 19.552867889404297 45.15589904785156 13.630385398864746 320293.0 0.01814058981835842 184.71519775390618 107.92192077636719 4.159127659021106 296.8802490234375 1156.7176513671875 1068.6961669921875 96617.0 616.268505859375 2030.4517578125 434.026123046875 33.66026306152344 +sub-10057_ses-V1_task-rest_run-01_bold 0.0010973303167420814 0.007372907239819004 8 32.98907848718822 1.0562232957823137 0.9911963574149661 0.4542273374213356 6327.80224609375 0.09854246229210663 9 2.0361990950226243 2.389886950351443 2.4318374033674637 2.4493290693390737 2.2884943783477922 0.00644862 0.008779339492321014 0.025692515075206757 442 90 90 60 2.4471609885650047 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 143.8894422877673 19.527080535888672 44.88786315917969 13.587104797363281 320720.0 0.0067873308435082436 184.0026130676269 106.81441497802734 4.445914633576495 298.80126953125 1168.71630859375 1079.276123046875 96168.0 621.7603057861328 2053.1672241210936 441.0296325683594 36.19645309448242 +sub-10057_ses-V1_task-rest_run-02_bold 0.001771131221719457 0.009696601855203619 8 33.565845186870746 1.0450317678004537 1.0053998060317464 0.45602688187844026 6131.24658203125 0.11193416844451279 10 2.262443438914027 2.41078555328999 2.4462957361262743 2.460612402224048 2.325448521519647 0.00459075 0.010370401665568352 0.025465384125709534 442 90 90 60 2.456388645614694 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 156.05539286619586 19.676345825195312 45.515560150146484 13.694570541381836 320223.0 0.013574661687016487 187.4185592651359 108.90303039550781 4.220327330753145 297.7061462402344 1158.943603515625 1070.599609375 96592.0 615.3606506347655 2040.9764221191404 435.8406677246094 32.71281814575195 +sub-10057_ses-V3_task-cuff_run-01_bold 0.002227760180995475 0.010142296515837106 8 38.17688468362813 1.1204863568480727 1.0143446740589563 0.446723298014957 7334.79541015625 0.23290086435886617 1 0.22624434389140272 2.466939430303986 2.4978874007428726 2.547024898790324 2.355905991378762 0.00614003 0.008331498131155968 0.016712361946702003 442 90 90 60 2.2559892311733956 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 3 124.35134305487905 18.844478607177734 42.732269287109375 13.063348770141602 320976.0 0.011312217451632023 168.9270477294922 101.20861053466797 11.576795016107582 308.3981018066406 1212.3992919921875 1108.0611572265625 96179.0 653.4610961914062 2120.694702148437 491.1616516113281 32.93381118774414 +sub-10057_ses-V3_task-rest_run-01_bold 0.0037499546485260772 0.009880729977324263 9 38.912744847454526 1.1822854805227265 1.0277279570454545 0.4460783034526906 6817.98486328125 0.214705843717895 74 16.780045351473923 2.450172751618784 2.4867790678509447 2.5225665664288774 2.3411726205765295 0.00550745 0.008413461968302727 0.01547306589782238 441 90 90 60 2.2540985985133632 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 13 119.89492853510092 19.357877731323242 42.51554489135742 13.360544204711914 321117.0 0.004535147454589605 168.29750976562502 101.34031677246094 11.139062142107816 309.0166931152344 1219.9415283203125 1114.6871337890625 96139.0 655.7256347656249 2138.601489257812 494.51312255859375 34.199668884277344 +sub-10057_ses-V3_task-rest_run-02_bold 0.003534830699774266 0.009815196794582393 7 38.46118876072397 1.1605087291855196 1.0522430350452496 0.4465212357360583 7522.3017578125 0.225218133538933 111 25.056433408577877 2.4560574778509743 2.4886790677754456 2.5333915659987305 2.346101799778747 0.00794899 0.007431988604366779 0.01715364120900631 443 90 90 60 2.2453807442209093 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 5 152.1770565271874 18.704885482788086 42.88285446166992 12.936795234680176 320947.0 0.009029345586895943 170.2611785888672 102.14386749267578 12.01154302741556 308.78955078125 1218.3096923828125 1112.2437744140625 96149.0 658.8663696289062 2130.939941406248 495.3449401855469 33.29792785644531 +sub-10058_ses-V1_task-cuff_run-01_bold 0.006514151785714286 0.09939091941964286 2 56.0324597069351 1.0407810491051457 0.9544156099552582 0.45797201985423786 145062.953125 1.1605960539644433 138 30.803571428571427 3.2416158891317153 3.24920338028169 3.489825352112676 2.9858189350007787 0.0224666 -0.020559007301926613 0.024286696687340736 448 96 96 54 4.449431467975088 0.7999997138977051 2.21875 2.21875 2.4000015258789062 28 50.0102925339594 71.79110717773438 628.9273681640625 50.918251037597656 336450.0 2.1729393362998963 2711.906176757811 1275.3106689453125 2.6584128892954126 2937.301513671875 19153.693359375 19576.369140625 93485.0 10161.144921874999 25270.368359375 4399.72265625 15.23503303527832 +sub-10058_ses-V1_task-cuff_run-02_bold 0.005353310961968679 0.07381658545861298 3 55.15055061973088 1.0943426516143486 0.9816786067713015 0.45961495967109584 158499.0 0.9900639985501043 122 27.293064876957494 3.0831327508485344 3.113992112676056 3.2761329577464786 2.8592731821230686 0.0145163 -0.02240920439362526 0.02532883547246456 447 96 96 54 4.502014377361384 0.7999997138977051 2.21875 2.21875 2.4000015258789062 15 77.03213228578613 66.59640502929688 639.34521484375 46.88755416870117 336498.0 1.7978475868701942 2840.5295776367066 1349.0650634765625 2.587365173806057 2882.439453125 18684.833984375 19049.388671875 93519.0 10178.01689453125 24676.258984374996 4231.28076171875 18.194488525390625 +sub-10058_ses-V1_task-rest_run-01_bold 0.016605615212527965 0.04668140357941834 3 52.29232376677129 1.2856686172197311 1.151473753923767 0.45626201588517423 195705.59375 0.6928379971915695 344 76.95749440715883 2.9285044945268908 2.971650704225352 3.077985352112676 2.7358774272426434 0.0219261 -0.022468645125627518 0.024726731702685356 447 96 96 54 4.642223159034479 0.7999997138977051 2.21875 2.21875 2.4000015258789062 39 101.59279609038433 59.1058235168457 609.9850463867188 40.98664855957031 338099.0 1.0436542630195618 2653.982958984374 1309.262451171875 2.3868160512482675 2959.970458984375 18550.595703125 18862.076171875 92102.0 10867.546435546876 24419.5265625 4063.1337890625 22.381237030029297 +sub-10058_ses-V1_task-rest_run-02_bold 0.004027209821428572 0.06958182455357144 2 53.43812474000001 1.1091243749217006 0.978655828232662 0.46295687559878695 133895.859375 0.8765388857293032 363 81.02678571428571 3.033356658101662 3.060047323943662 3.212020281690141 2.828002368671183 0.0111198 -0.024340124800801277 0.02804795652627945 448 96 96 54 4.647049705927126 0.7999997138977051 2.21875 2.21875 2.4000015258789062 14 55.22418085193817 71.75593566894531 664.5914916992188 50.2090950012207 336913.0 1.7160511016845703 3009.665576171874 1374.096923828125 2.7611454095881696 2716.519775390625 18253.109375 18579.1640625 93486.0 10298.567138671875 23873.56005859375 3998.034423828125 19.284543991088867 +sub-10058_ses-V3_task-cuff_run-01_bold 0.009099933035714287 0.04682014933035713 2 49.00021065313201 1.1548700283221482 1.0421710807158842 0.4469916500084547 381376.84375 0.6589552385810024 58 12.946428571428571 2.7298629099272786 2.7659898591549297 2.8865352112676055 2.5370636593592995 0.0238179 -0.012224411591887474 0.022946162149310112 448 96 96 54 4.994634121223759 0.7999997138977051 2.21875 2.21875 2.399998903274536 23 165.2211807687955 44.53614044189453 535.2844848632812 31.203750610351562 337063.0 0.7824146687984468 2415.6830566406243 1320.444580078125 2.8647242527762167 2762.452880859375 19610.8515625 19791.607421875 92014.0 12333.963818359374 25508.722949218733 3962.552490234375 23.924591064453125 +sub-10058_ses-V3_task-cuff_run-02_bold 0.013857762863534677 0.09511314653243848 3 47.88686051405824 1.0736270360538125 1.018906879573991 0.4496342203237671 325756.75 0.7517259592764334 68 15.212527964205817 2.9153890217907565 2.910084507042254 3.165656338028169 2.670426220301848 0.0143651 -0.012261217460036278 0.025263400748372078 447 96 96 54 5.000062863535456 0.7999997138977051 2.21875 2.21875 2.399998903274536 24 160.78139246287975 48.195274353027344 551.7904663085938 34.1568603515625 336794.0 1.1267483294010163 2426.338354492187 1319.7667236328125 2.911525835065965 2688.508056640625 19615.3671875 19844.88671875 92569.0 12123.205664062501 25380.583203124996 3968.906005859375 17.619277954101562 +sub-10058_ses-V3_task-rest_run-01_bold 0.010828165548098434 0.03660791633109619 3 49.13386735802686 1.2357875088116579 1.1351818997757848 0.44129610420406484 494949.03125 0.6195067291812534 375 83.89261744966443 2.6921156198508327 2.747227042253521 2.8265645070422534 2.502555310256722 0.0295532 -0.012417257763445377 0.025604981929063797 447 96 96 54 4.929161478622564 0.7999997138977051 2.21875 2.21875 2.399998903274536 26 142.707045107787 40.75079345703125 538.7509155273438 28.19797706604004 340187.0 0.5156796038150787 2452.697778320313 1303.9749755859375 2.551559383835272 2950.26708984375 20139.5078125 20288.11328125 89732.0 12714.067822265624 26411.72255859375 4115.9130859375 27.132747650146484 +sub-10058_ses-V3_task-rest_run-02_bold 0.00877608501118568 0.03222729552572707 3 41.202141163161436 1.2263081392376687 1.122388900089687 0.4452239740343865 529893.6875 0.39167820656178676 281 62.86353467561521 2.639689469643146 2.6883785915492955 2.7793261971830985 2.4513636201970432 0.011172 -0.014540701173245907 0.024959281086921692 447 96 96 54 4.816884739472805 0.7999997138977051 2.21875 2.21875 2.399998903274536 10 165.9699726348754 39.743614196777344 589.2843627929688 27.181337356567383 339926.0 0.28947629034519196 2684.616943359375 1419.2406005859375 2.766685033733266 2926.29052734375 20105.826171875 20243.91015625 90072.0 12547.301025390625 26462.424414062498 4202.67431640625 29.6897029876709 +sub-10059_ses-V1_task-cuff_run-01_bold 0.0012143990929705214 0.006679260408163265 9 32.77392624084091 0.9894592029545448 0.9712487096363632 0.5589591615907391 475.03948974609375 0.1309500924238429 0 0.0 2.945044425821614 2.7450082242565066 3.1184623760834387 2.971662677124898 0.0047175 -0.020198039710521698 0.12229626625776291 441 90 90 54 1.843791541160335 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.981648596649023 6.737267971038818 28.115915298461914 11.575963973999023 249655.0 6.725623607635498 104.0263076782226 46.75925827026367 3.2032047258556027 124.88990783691406 307.51129150390625 278.8548889160156 119332.0 115.66564865112304 587.0731353759766 151.23928833007812 34.02588653564453 +sub-10059_ses-V1_task-cuff_run-02_bold 0.0005797052154195012 0.006454807823129252 9 33.023794984749976 0.9873865645227279 0.9628493078409095 0.560550676543361 452.7980651855469 0.11990963702326637 0 0.0 2.9303152588620294 2.7311748914728606 3.114629042902428 2.9451418422108 0.010016 -0.02164480648934841 0.12268826365470886 441 90 90 54 1.8448591076282286 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.17871564990459 7.073458194732666 28.32122802734375 11.82993221282959 249593.0 6.716553211212158 104.76734771728513 46.41522979736328 3.2116356970043265 123.50984191894531 305.77142333984375 277.2244873046875 119405.0 115.31338195800782 584.5437866210937 150.2680206298828 34.85082244873047 +sub-10059_ses-V1_task-rest_run-01_bold 0.0008865158371040724 0.006025383936651584 8 33.24196460841268 1.02121832643991 0.9892862165986398 0.5575270880268133 470.0838623046875 0.1430452262675733 11 2.48868778280543 2.959394425508304 2.7613832236058227 3.1373790419984244 2.9794210109206647 0.00334414 -0.019539466127753258 0.12135632336139679 442 90 90 54 1.84025535672156 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.667510644289457 7.131250381469727 27.793052673339844 11.730770111083984 249912.0 6.368778705596924 102.75791931152344 46.04021072387695 3.1294111919597842 126.18891906738281 308.07122802734375 279.6572570800781 119132.0 114.97760887145996 589.0874938964843 151.96591186523438 34.542015075683594 +sub-10059_ses-V1_task-rest_run-02_bold 0.0006561173814898418 0.006456470022573363 7 34.60020536981901 0.9964142361538461 0.9687207377149311 0.5603710562979849 453.6311950683594 0.1573902167323157 34 7.6749435665914225 2.9389263702537787 2.7385332245138 3.1142957095823403 2.9639501766651972 0.00319457 -0.02096511609852314 0.12237349152565002 443 90 90 54 1.8412682844558899 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 28.36997148759314 7.128539085388184 28.140483856201172 11.80135440826416 249409.0 6.523702144622803 104.71061096191391 45.97922134399414 3.231945323778235 123.3973617553711 304.7224426269531 276.1941223144531 119629.0 114.53634796142579 582.2966186523435 150.00148010253906 33.590328216552734 +sub-10059_ses-V3_task-cuff_run-01_bold 0.0018127500000000001 0.004909194659090909 10 34.604710819954434 1.0696599836218683 1.0264502651025051 0.5546317915652699 506.1688537597656 0.13718736080050703 0 0.0 2.8526458163073833 2.6531998945713084 2.9957290476270897 2.9090085067237523 0.0169823 -0.023356366902589798 0.12735748291015625 440 90 90 54 1.8690590656844026 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 36.43683508441767 6.169646263122559 26.410503387451172 11.06363582611084 251946.0 6.631817817687988 95.18579483032227 43.74972152709961 2.8714950091560585 120.82534790039062 302.880859375 273.8761291503906 117358.0 117.60738105773926 575.7120422363281 146.5309295654297 36.548011779785156 +sub-10059_ses-V3_task-cuff_run-02_bold 0.0006231828442437924 0.006608765417607225 7 34.14244000169684 0.9870579480316743 0.9645078111538462 0.5563884320915683 490.8630676269531 0.14171521184644953 0 0.0 2.862463871742405 2.662695727527311 3.007545713824204 2.9171501738756995 0.00917588 -0.024030806496739388 0.1293739527463913 443 90 90 54 1.8797792907194817 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 35.46747421285344 6.308589935302734 26.577280044555664 11.128668785095215 251912.0 6.604966163635254 95.89164733886719 43.848968505859375 2.789293992492543 119.38630676269531 299.7943115234375 271.4367980957031 117550.0 116.95846672058107 568.1923461914062 144.39761352539062 33.91853713989258 +sub-10059_ses-V3_task-rest_run-01_bold 0.0025764027149321263 0.005839147488687782 8 34.32446986253967 1.0665963297959176 1.023249296938775 0.5533443236672418 523.5744018554688 0.117999293863301 1 0.22624434389140272 2.8904569269090126 2.6877373931989115 3.0446373790169803 2.9389960085111464 0.0164598 -0.02471695840358734 0.1286199539899826 442 90 90 54 1.8755958842298746 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.42219052384344 6.2390055656433105 26.33265495300293 11.036199569702148 251887.0 6.298642635345459 94.45950546264638 44.041107177734375 2.768052650059764 122.2174072265625 304.8908386230469 276.52716064453125 117580.0 117.10633850097656 578.8040130615233 147.4336700439453 35.07735824584961 +sub-10059_ses-V3_task-rest_run-02_bold 0.0013065306122448978 0.006146929501133786 9 34.618814927704534 1.028392990704546 0.9975705033409088 0.5573268341899589 474.562744140625 0.15547952902138718 9 2.0408163265306123 2.853606927575674 2.6572332277443715 2.9886790479072314 2.9149085070754195 0.00905845 -0.023493630811572075 0.12917974591255188 441 90 90 54 1.88020118468239 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.57595980269138 6.528829097747803 26.528305053710938 11.258503913879395 251931.0 6.442176818847656 95.54535293579102 43.247989654541016 2.8548344487215047 117.36092376708984 296.84735107421875 268.64398193359375 117510.0 115.4611125946045 562.913818359375 142.8798370361328 33.606197357177734 +sub-10060_ses-V1_task-cuff_run-01_bold 0.02556666666666666 0.01624285349593496 7 42.838749932622946 1.1935346798360658 1.2112570000819671 0.5289029535124875 665.307373046875 0.2645371772579754 3 2.4390243902439024 2.85199025693117 2.618687395942712 3.144441541717786 2.792841833133012 0.00729261 -0.024836663156747818 0.11825311183929443 123 90 90 54 2.4427535749418663 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 15 54.1586005456266 4.0741424560546875 21.64079475402832 9.300812721252441 277812.0 6.414633750915527 69.8979663848878 38.02336502075195 3.7801965895479093 89.55880737304688 270.1155090332031 256.7154235839844 94878.0 128.06503295898438 447.4056655883786 105.09208679199219 26.446557998657227 +sub-10060_ses-V1_task-cuff_run-02_bold 0.0023789819004524887 0.014803883031674207 8 41.68455232895694 0.9894791246938781 0.9542245188208622 0.528440147171395 651.9848022460938 0.225305526757 6 1.3574660633484164 2.860897201850493 2.6369665618830296 3.127854042376914 2.8178710012915333 0.0181753 -0.02447321265935898 0.11749095469713211 442 90 90 54 2.4268352203154673 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 63.04367346183791 4.266673564910889 21.64418601989746 9.414027214050293 277504.0 6.343891620635986 69.42953071594233 38.313472747802734 4.118917755349853 88.77836608886719 268.5170593261719 255.27151489257812 95232.0 126.03937225341797 445.1547698974608 105.18644714355469 25.115203857421875 +sub-10060_ses-V1_task-rest_run-01_bold 0.0006904988662131518 0.007783568276643992 9 41.374855015318154 1.0704476970909098 0.9922729055227276 0.5277706638644204 686.974609375 0.21634276990386864 118 26.75736961451247 2.8111402579033054 2.6076123963827933 3.052629045366087 2.773179331961036 0.00329642 -0.026845667511224747 0.12050245702266693 441 90 90 54 2.3992229320225618 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 63.68347015428705 3.8628342151641846 21.533557891845703 9.131519317626953 277441.0 6.365079402923584 70.5464859008789 38.46843338012695 4.356934388877958 90.50597381591797 270.7080383300781 256.684814453125 95185.0 127.15147247314454 449.9111267089844 106.986083984375 33.989112854003906 +sub-10060_ses-V1_task-rest_run-02_bold 0.0006047619047619048 0.010380774421768707 9 41.62792411265914 1.0257950714318194 0.9625923723409087 0.5281378053722952 675.8196411132812 0.2314042481516102 138 31.292517006802722 2.8199888691875183 2.591366563695011 3.079574877628689 2.7890251662388543 0.0052207 -0.024923760443925858 0.12160074710845947 441 90 90 54 2.4523960971003755 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 67.97735803722385 3.899815320968628 21.532764434814453 9.172335624694824 278093.0 6.374149799346924 69.66893768310547 39.052696228027344 3.9689813773750844 87.25668334960938 266.7338562011719 253.07257080078125 94728.0 126.98186492919922 441.7209762573242 103.1934585571289 29.806425094604492 +sub-10060_ses-V3_task-cuff_run-01_bold 0.001739301801801802 0.022370443243243242 6 48.16186340871335 1.0128239295033854 0.9661476522799093 0.5323016982377321 567.2655639648438 0.3592368095499035 6 1.3513513513513513 2.8494985942582347 2.5663582313554194 3.0716790446091076 2.910458506810179 0.014359 -0.017806345596909523 0.12035445123910904 444 90 90 54 2.4935331233701934 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 72.21402508499844 3.6998276710510254 20.787412643432617 9.313063621520996 278530.0 6.445946216583252 65.22421455383298 36.89999008178711 1.2889239855092596 85.49673461914062 248.76246643066406 234.2229766845703 94190.0 125.03581619262695 421.001481628418 93.93167114257812 22.207307815551758 +sub-10060_ses-V3_task-cuff_run-02_bold 0.0015267945823927767 0.01316767223476298 7 49.27565010223987 1.081774439298643 1.0056198059954757 0.5289655932309699 618.184814453125 0.371665848467514 1 0.22573363431151242 2.81145276276067 2.5222290664422884 2.991887381113077 2.920241840726644 0.00332341 -0.014402905479073524 0.12123248726129532 443 90 90 54 2.489881382613935 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 64.7100917552157 2.9886317253112793 19.788745880126953 8.810383796691895 279620.0 6.451467514038086 62.49221267700193 35.48250961303711 1.4846551263075067 84.81957244873047 247.5098419189453 233.01806640625 93451.0 124.64559936523438 418.5880432128906 93.58551025390625 26.363332748413086 +sub-10060_ses-V3_task-rest_run-01_bold 0.0009431011235955056 0.011827533842696629 5 46.183754413851354 1.0671327681531537 0.990523952837838 0.5342566599779918 589.75 0.2808630563184542 185 41.57303370786517 2.7862610952867466 2.5205915665073566 2.9725582152144825 2.8656335041384002 0.00303259 -0.021941108629107475 0.11702525615692139 445 90 90 54 2.476040977202479 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 62.81257596885061 3.3849973678588867 20.96523666381836 9.173033714294434 278143.0 6.667415618896484 67.68516921997063 36.55058288574219 1.7856338263063414 86.32909393310547 251.46945190429688 236.99887084960938 94404.0 125.78854408264161 425.210903930664 95.71635437011719 28.55930519104004 +sub-10060_ses-V3_task-rest_run-02_bold 0.0009436179775280899 0.01256038008988764 5 49.76813198648649 1.0721059163513509 0.993315899481983 0.5347113947764122 590.0511474609375 0.3589894184311366 252 56.62921348314607 2.8037513732217865 2.515387400047485 3.0044957139454 2.891371005672475 0.00580367 -0.01833583414554596 0.12036758661270142 445 90 90 54 2.490055970097323 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 58.67518820543778 3.1684370040893555 20.65383529663086 8.995505332946777 277949.0 6.640449523925781 66.43056488037104 36.06642532348633 1.5370304637309244 84.34506225585938 246.33551025390625 232.0022430419922 94681.0 123.9932632446289 416.285400390625 93.17100524902344 26.682018280029297 +sub-10061_ses-V1_task-cuff_run-01_bold 0.0006923024830699775 0.005894202279909706 7 37.18460068339369 1.0053224368325782 0.9870461414027153 0.5299181489499613 501.20660400390625 0.12625783356781936 0 0.0 2.636084702241923 2.4474790694125863 2.9008582180635845 2.559916819249599 0.0088306 -0.03231948986649513 0.11054350435733795 443 90 90 54 2.361508672279041 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 53.783314800490544 4.906309604644775 21.969064712524414 9.896162986755371 281925.0 6.3047404289245605 73.56613922119138 35.45695877075195 1.5540917052033345 86.0561752319336 252.71771240234375 236.29458618164062 91198.0 117.78973083496093 438.9470687866206 100.06031036376953 33.486942291259766 +sub-10061_ses-V1_task-cuff_run-02_bold 0.0005346396396396396 0.00542571518018018 6 36.570893315778775 1.0140042418284425 0.9927426369977433 0.5313032711459501 479.35693359375 0.09852637484715672 0 0.0 2.625936090937483 2.440508236356249 2.8953998849471456 2.5419001515090556 0.00743743 -0.03485121577978134 0.11079466342926025 444 90 90 54 2.336815964425493 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 56.207247664290186 5.115645408630371 22.45609474182129 10.119369506835938 281670.0 6.466216564178467 75.5090103149414 35.986026763916016 1.6612469852250173 87.07283782958984 254.2977752685547 237.21621704101562 91311.0 119.06756973266602 444.0326690673828 101.51202392578125 34.60243225097656 +sub-10061_ses-V1_task-rest_run-01_bold 0.0006008108108108108 0.006439291126126127 6 36.753618150158054 1.0076368559367943 0.9868667300677206 0.5273883455826484 521.878662109375 0.11253864732699118 15 3.3783783783783785 2.653901368640066 2.4666540686506404 2.9218623838956206 2.573187653373936 0.012752 -0.0331265814602375 0.10850183665752411 444 90 90 54 2.357044803315117 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 55.70293581280446 4.7416558265686035 21.65366554260254 9.79955005645752 282152.0 6.403153419494629 72.42669067382815 34.91080856323242 1.4817037361149819 87.53361511230469 254.75222778320312 238.53829956054688 91147.0 116.57275009155273 442.3829040527344 101.20172119140625 32.44451141357422 +sub-10061_ses-V1_task-rest_run-02_bold 0.0005555981941309256 0.005331746568848758 7 38.550775597104106 1.0193825197963808 0.9991332354524878 0.5359602670584244 407.5249938964844 0.110416116237102 16 3.6117381489841986 2.662783227523834 2.4786707348398074 2.9319748834937855 2.57770406423791 0.00867146 -0.0381183959543705 0.10621815174818039 443 90 90 54 2.281716498466469 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 59.00464302702357 5.8233137130737305 22.63045310974121 10.835214614868164 279295.0 6.575621128082275 74.48826446533201 35.79732131958008 1.7093746333729056 87.50532531738281 248.13633728027344 231.12867736816406 93652.0 114.37415657043456 437.92766876220696 101.29542541503906 33.23002243041992 +sub-10061_ses-V3_task-cuff_run-01_bold 0.0009404751131221721 0.007337564615384616 8 38.88471368108843 1.0054263490249444 0.9839039044217694 0.5121408035823598 709.2893676757812 0.12252067981208989 0 0.0 2.6159277628102298 2.3757457389296794 2.784929056003529 2.6871084934974805 0.00795356 -0.02397013083100319 0.1161077693104744 442 90 90 54 2.332081830321031 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 65.87861175692993 3.911118268966675 19.333961486816406 8.176470756530762 285994.0 5.285068035125732 64.89592742919922 33.98933029174805 1.4575922857596586 88.39764404296875 248.697021484375 232.19119262695312 87922.0 118.62523460388184 434.958950805664 99.56334686279297 30.333757400512695 +sub-10061_ses-V3_task-cuff_run-02_bold 0.0005651693002257336 0.005377993927765237 7 38.7939165210407 1.036126338257919 1.004884535384616 0.5122696640558622 702.9268798828125 0.1080335653419666 0 0.0 2.588298596118341 2.3607665728582314 2.7509373906875694 2.6531918248092228 0.00405202 -0.023862941190600395 0.11687622219324112 443 90 90 54 2.328919978823723 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 63.769395793838214 3.8320086002349854 19.272977828979492 8.128668785095215 286082.0 5.370203495025635 64.41072235107424 34.07577133178711 1.4990740706433066 88.04749298095703 247.7859344482422 230.96726989746094 87840.0 119.09424629211426 432.8406539916993 99.17298889160156 33.812740325927734 +sub-10061_ses-V3_task-rest_run-01_bold 0.0008247058823529412 0.008774356674208146 8 38.92999149056691 1.009602569637188 0.9824827385034016 0.5114107268634956 718.068115234375 0.11951112558456337 15 3.3936651583710407 2.6349666518343047 2.389849905035897 2.801012388697768 2.7140376617692508 0.0127015 -0.024124808609485626 0.11665826290845871 442 90 90 54 2.333924677802512 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 62.06843077886093 3.964787006378174 19.455930709838867 8.221719741821289 286385.0 5.3235297203063965 65.16063690185547 34.395164489746094 1.3872468612983235 89.45928955078125 251.65208435058594 234.87330627441406 87793.0 119.95023193359376 439.7054504394531 100.6339111328125 28.927202224731445 +sub-10061_ses-V3_task-rest_run-02_bold 0.0012357466063348417 0.00788317536199095 8 38.96234612668936 1.007665339138322 0.9887123990249436 0.5135143300409889 692.3047485351562 0.11242609842832745 15 3.3936651583710407 2.6185110963192035 2.379662405440712 2.7803582228518238 2.6955126606650746 0.00336687 -0.0232863649725914 0.11632397770881653 442 90 90 54 2.3242383464217853 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 61.24370481435183 3.9127957820892334 19.3773250579834 8.173077583312988 285742.0 5.348416328430176 64.52488708496094 33.96769714355469 1.4371851659954977 87.9766845703125 246.58140563964844 230.07240295410156 88297.0 117.2642578125 431.37919921875 98.98773956298828 30.043041229248047 +sub-10062_ses-V1_task-cuff_run-01_bold 0.0019854504504504505 0.021053011936936934 6 52.22464842584647 1.1119580223927772 1.0043337853498888 0.4699844508049516 5263.2900390625 0.40254394090656187 6 1.3513513513513513 2.3996382128397875 2.3305999073902806 2.427654070200361 2.4406606609287205 0.0177403 -0.006640214938670397 0.02996234782040119 444 90 90 60 2.948366894921233 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 158.82748238745916 19.290525436401367 39.41490936279297 13.641892433166504 315501.0 0.11486487090587616 148.42117309570312 92.21858215332031 2.5326351761460613 255.35479736328125 1033.318115234375 986.5856323242188 100347.0 552.0662536621094 1640.547131347656 334.619384765625 24.582048416137695 +sub-10062_ses-V1_task-cuff_run-02_bold 0.0015015909090909092 0.014928657272727271 10 53.79584905471527 1.1278318189293843 0.9966560852164015 0.4658799253657086 5886.36328125 0.48334282128372974 9 2.0454545454545454 2.38726042937539 2.3278665741655598 2.411912404159212 2.4220023098013974 0.00210003 -0.0034612936433404684 0.024902157485485077 440 90 90 60 2.9200164068797507 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 69.85321648971475 18.428070068359375 36.71762466430664 12.870453834533691 316109.0 0.040909089148044586 140.8718170166015 78.73690032958984 2.446464432384671 257.8717041015625 1029.437255859375 980.0613403320312 99961.0 555.970458984375 1646.654541015625 335.6338806152344 28.947481155395508 +sub-10062_ses-V1_task-rest_run-01_bold 0.0023227891156462586 0.016836734467120182 9 52.8624227520455 1.119370838840909 1.0122816279545461 0.46986500538634646 6131.5537109375 0.4746084243634973 319 72.33560090702947 2.3981979328343943 2.331008240707388 2.4298249034474333 2.4337606543483616 0.00652992 -0.006175020709633827 0.02700408734381199 441 90 90 60 2.948233737839711 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 86.86788151482092 18.470333099365234 38.799110412597656 12.86621379852295 314808.0 0.03401360660791397 149.98866271972656 86.78279113769531 2.610490889546255 255.360595703125 1037.718017578125 991.6417236328125 101035.0 547.6160888671875 1645.0072631835938 336.3494567871094 27.694290161132812 +sub-10062_ses-V1_task-rest_run-02_bold 0.0013979232505643342 0.013512758239277651 7 52.3868896949774 1.1414528019457013 0.9939864334162897 0.4660946917587671 5827.69091796875 0.41843561825094483 289 65.23702031602708 2.3724645883308635 2.3188874078556934 2.401566571236985 2.396939785899912 0.00366927 -0.0041377004235982895 0.02442905865609646 443 90 90 60 2.9071776850692737 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 58.70337151390925 18.69484519958496 36.93273162841797 12.821670532226562 316117.0 0.004514672793447971 143.26050109863286 78.46064758300781 2.4772313491995517 257.88580322265625 1028.8466796875 978.748291015625 100122.0 553.6887023925781 1648.610009765625 336.6644592285156 29.753128051757812 +sub-10062_ses-V3_task-cuff_run-01_bold 0.0010999544419134396 0.012108373781321185 11 42.45838891621007 1.07476980954338 0.9810671762557076 0.4506159990665259 8015.41845703125 0.26938859961577344 0 0.0 2.3810659820892357 2.3341874072477258 2.396333238111606 2.4126773009083755 0.00183526 -0.0012144445208832622 0.02392474189400673 439 90 90 60 2.8097789814726624 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 59.5518950395765 15.845945358276367 29.668689727783203 11.01138973236084 319468.0 0.015945330262184143 110.09100646972632 63.49760437011719 2.4630064595885264 260.4112548828125 1028.627197265625 973.6458740234375 97768.0 537.1950042724609 1673.7430053710934 346.5186767578125 30.773117065429688 +sub-10062_ses-V3_task-cuff_run-02_bold 0.000905340909090909 0.009607955750000001 10 42.56274546993165 1.0927867867653749 0.9852194130751722 0.4498070010768329 7872.25830078125 0.2689197017892472 0 0.0 2.3550131945502493 2.3150374080086786 2.369929072494146 2.380073103147923 0.00230026 -0.0013938547344878316 0.024524657055735588 440 90 90 60 2.804246244162733 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 62.630384988424765 15.890798568725586 29.611867904663086 11.049999237060547 320141.0 0.0181818176060915 110.88636016845703 63.53007125854492 2.496776472369538 260.0854797363281 1029.2298583984375 974.5476684570312 97361.0 536.661376953125 1679.18408203125 347.52392578125 33.88395690917969 +sub-10062_ses-V3_task-rest_run-01_bold 0.0007071201814058957 0.012602655714285713 9 42.57841435322732 1.0639699618409084 0.9692341741590914 0.4511546535068994 7802.5888671875 0.29067302930193656 196 44.44444444444444 2.3860201505500043 2.339749907026692 2.399620737980972 2.418689806642348 0.00337066 -0.0017002607928588986 0.02385667711496353 441 90 90 60 2.815653228470609 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 60.408015662256815 16.009414672851562 29.67941665649414 11.156462669372559 319230.0 0.024943310767412186 110.04308319091797 63.01594543457031 2.3643805816077297 263.44427490234375 1035.5606689453125 980.697265625 97626.0 540.2806091308594 1686.4455871582031 348.3000793457031 30.25908088684082 +sub-10062_ses-V3_task-rest_run-02_bold 0.0012956787330316742 0.010956361764705881 8 41.05589001634919 1.099617221882086 0.9927383828571419 0.4500121390886335 7546.96142578125 0.24522704144273058 131 29.638009049773757 2.3499756899668687 2.314420741366516 2.369879072496133 2.3656272560379565 0.00320895 -0.0005783517844974995 0.026139745488762856 442 90 90 60 2.82173148135457 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 58.38059701174273 15.983258247375488 29.34828758239746 11.153846740722656 320428.0 0.018099548295140266 109.51108818054152 62.38005447387695 2.5568128964492667 255.35134887695312 1017.8255004882812 963.612060546875 96978.0 536.391079711914 1657.266369628906 341.4949645996094 31.886844635009766 +sub-10063_ses-V1_task-cuff_run-01_bold 0.002129705215419501 0.014695156439909297 9 43.459391957840914 1.064087706363637 0.976106407022727 0.43279560381584875 8767.8291015625 0.2974661845307647 3 0.6802721088435374 2.3963258306696313 2.415270737359097 2.4433624029095014 2.3303443517402957 0.00414657 0.0030063283629715443 0.015817983075976372 441 90 90 60 2.437915912585963 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 105.69507194386605 15.421080589294434 39.431678771972656 10.74376392364502 330798.0 0.022675737738609314 163.2825485229489 100.66519927978516 8.909161936327735 276.30029296875 1094.1212158203125 1015.723388671875 86966.0 594.2715454101562 1821.7965087890625 416.633544921875 29.57788848876953 +sub-10063_ses-V1_task-rest_run-01_bold 0.0011248868778280542 0.01156535694570136 8 42.02759436106575 1.0661349331972791 1.0065231424943306 0.43253071634924206 9105.7216796875 0.2980001548885766 228 51.58371040723982 2.3927980522861496 2.4229207370551133 2.421374903783206 2.334098516020129 0.00397229 0.0025218012742698193 0.01660975255072117 442 90 90 60 2.4387274583634295 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 176.6548794003345 15.292272567749023 40.11473846435547 10.685521125793457 331010.0 0.029411766678094864 163.80894393920897 106.62979125976562 8.591123999912378 276.8909912109375 1101.7105712890625 1023.4344482421875 86899.0 597.0421203613281 1835.4265502929686 419.65679931640625 32.31207275390625 +sub-10063_ses-V1_task-rest_run-02_bold 0.005929136363636364 0.015415334340909092 10 44.01991172927104 1.1252072059453309 1.0354687537585416 0.43268011673176077 8734.6845703125 0.30737409776607044 217 49.31818181818182 2.389539722258719 2.4028040711878114 2.4477040694036454 2.318111026184701 0.00364718 0.0024921263102442026 0.014144452288746834 440 90 90 60 2.4557134886413894 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 81.44238308694126 15.658300399780273 39.604793548583984 10.82272720336914 331394.0 0.00909090880304575 165.40624618530248 98.4105453491211 8.765662820196312 278.0081787109375 1100.947021484375 1021.4431762695312 86449.0 603.7886108398437 1826.2590087890617 415.94317626953125 28.445709228515625 +sub-10063_ses-V3_task-cuff_run-01_bold 0.00085125 0.007643313977272727 10 35.57103950810934 1.0576638403189074 0.9773447643507979 0.43539890414396154 10234.2568359375 0.19917624886991625 0 0.0 2.403538324793445 2.413070737446517 2.439066569746869 2.358477667186949 0.00478611 -0.007731129880994558 0.025094732642173767 440 90 90 60 2.5766257825692582 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 187.90824775868037 15.702103614807129 42.62602615356445 10.75 331190.0 0.004545454401522875 177.54203720092747 107.48318481445312 4.2058995123808645 317.0072326660156 1173.684814453125 1100.088623046875 87131.0 621.2965698242188 1957.5908203125 426.9468688964844 36.62930679321289 +sub-10063_ses-V3_task-rest_run-01_bold 0.0010551818181818182 0.0070364409545454545 10 35.99628468466968 1.073604564214122 1.0355627843507975 0.43515803413949267 10657.6845703125 0.21707070924535196 110 25.0 2.394310549307906 2.4039707378081188 2.4301749034335254 2.3487860066820736 0.0108994 -0.007047122344374657 0.022729283198714256 440 90 90 60 2.561331126582756 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 115.51084097352795 15.648192405700684 42.762855529785156 10.686363220214844 331627.0 0.0022727272007614374 180.29022674560548 103.04947662353516 4.373605953746262 320.92938232421875 1182.2442626953125 1107.076171875 86852.0 624.2195190429687 1974.6022949218748 432.2243957519531 37.59774398803711 +sub-10064_ses-V1_task-cuff_run-01_bold 0.0016209843400447426 0.018334048545861296 3 34.622348430650234 1.1161114573094175 1.0083017385650215 0.45736258558360454 143933.453125 0.2553028495099826 0 0.0 2.7800996899143886 2.8608000000000002 2.914023661971831 2.565475407771334 0.00363506 -0.02124658226966858 0.022711817175149918 447 96 96 54 4.7986758981711075 0.7999997138977051 2.21875 2.21875 2.3999996185302734 1 36.67229814676426 71.16044616699219 607.7034301757812 48.4732666015625 335319.0 0.4024566888809205 2607.9583496093733 1240.4881591796875 2.028166220425323 3097.002685546875 19317.779296875 19301.5078125 92819.0 12406.1380859375 25686.115624999995 4022.2353515625 36.574893951416016 +sub-10064_ses-V1_task-cuff_run-02_bold 0.00175875 0.02996584107142857 2 37.53707093387027 1.1009316115659953 0.9848618249664424 0.45890405855176747 166103.84375 0.2982944135354466 6 1.3392857142857142 2.8354446808548723 2.8979335211267605 2.9923876056338026 2.616012915804055 0.00722332 -0.0203388724476099 0.023760713636875153 448 96 96 54 4.849144892960535 0.7999997138977051 2.21875 2.21875 2.3999996185302734 5 30.535926307584766 65.3453369140625 596.6322021484375 44.44997787475586 334210.0 0.35095517486333855 2570.268310546874 1206.5966796875 2.181013021000223 2958.558837890625 18959.361328125 18959.58984375 93844.0 12218.266308593751 25142.218554687497 3909.8623046875 30.365985870361328 +sub-10064_ses-V1_task-rest_run-01_bold 0.001677427293064877 0.021228321476510072 3 34.50119242645741 1.1128507611210758 0.998031785627804 0.4552119421691678 195366.671875 0.23895543657952353 130 29.082774049217 2.7541754087714985 2.8247887323943663 2.8914704225352112 2.5462670713849183 0.012339 -0.02115347795188427 0.02040470950305462 447 96 96 54 4.84835083047539 0.7999997138977051 2.21875 2.21875 2.3999996185302734 3 38.419243389543155 60.52606201171875 589.2250366210938 41.0952033996582 336119.0 0.2591179579496384 2513.941723632812 1230.13671875 2.418228095568021 2852.293701171875 18952.662109375 18939.953125 92294.0 12124.73271484375 25120.39443359375 3906.4521484375 35.70414352416992 +sub-10064_ses-V1_task-rest_run-02_bold 0.002631505617977528 0.030060124719101126 5 34.59898447324323 1.1046587604729727 0.99960069518018 0.4589848415706713 224551.4375 0.2602961898283555 159 35.73033707865169 2.76369478689187 2.8123042253521127 2.9290005633802814 2.549779571943215 0.00853994 -0.01875307969748974 0.023194724693894386 445 96 96 54 5.092795616126966 0.7999997138977051 2.21875 2.21875 2.3999996185302734 21 35.465344066588685 53.700889587402344 563.7945556640625 36.68796920776367 333981.0 0.43538418412208557 2442.79150390625 1188.376708984375 2.4768850398163407 2592.379150390625 18279.515625 18265.642578125 93815.0 12138.140234375 24010.5189453125 3586.5458984375 31.67807388305664 +sub-10064_ses-V3_task-cuff_run-01_bold 0.001734260089686098 0.020889461434977576 4 37.41049358932584 1.0807173848314608 1.004564914516854 0.44902958765647816 301672.5 0.3031194177207048 11 2.4663677130044843 2.819651737805875 2.918918309859155 2.903517746478873 2.6365191570795967 0.00334243 -0.017847612500190735 0.01418759673833847 446 96 96 54 4.482260949426945 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 41.87833870113605 43.7970085144043 480.1695556640625 29.909923553466797 335068.0 0.29013280272483827 2050.2730957031217 1026.5565185546875 1.883170340715452 3031.73046875 17862.96875 17666.419921875 92931.0 11511.07861328125 24477.05859375 3941.386962890625 31.84896469116211 +sub-10064_ses-V3_task-cuff_run-02_bold 0.0010810738255033557 0.024197242953020136 3 36.93050263508971 1.044143175650223 0.9726582993049333 0.4495462085174107 308669.71875 0.30248264607794206 7 1.5659955257270695 2.819683065049397 2.892678309859155 2.915885070422535 2.6504858148665016 0.00273366 -0.01816294528543949 0.014614877291023731 447 96 96 54 4.617848392447445 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 42.837705269581434 43.14762496948242 482.9917297363281 29.489620208740234 335351.0 0.3266957402229309 2075.550048828125 1043.5357666015625 1.9487999732865724 2929.273193359375 17780.8828125 17564.34375 92733.0 11709.84296875 24138.176171875 3803.556884765625 30.796695709228516 +sub-10064_ses-V3_task-rest_run-01_bold 0.0011513033707865167 0.014741485528089886 5 36.57858495862611 1.0956346704054052 0.9994705019594597 0.44727626372757123 317756.1875 0.2569092973018135 151 33.93258426966292 2.782292078827654 2.894021408450704 2.8563064788732397 2.596548349159019 0.00259169 -0.018812930211424828 0.014833692461252213 445 96 96 54 4.3990839092950145 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 44.27501237840393 43.239768981933594 492.1025085449219 29.39107322692871 336314.0 0.19327014833688735 2110.5324707031223 1056.96630859375 1.8828208834601252 3122.839599609375 18023.818359375 17788.14453125 92192.0 11494.711669921875 24778.09912109375 4043.580078125 37.408424377441406 +sub-10064_ses-V3_task-rest_run-02_bold 0.002209101123595506 0.024258942921348312 5 36.77606722666666 1.0717371856081082 1.007404420923423 0.4495510101207551 235614.625 0.3063221379919345 190 42.69662921348315 2.8156510348202985 2.904779718309859 2.911504225352113 2.630669160798924 0.00434269 -0.01725451648235321 0.015413204208016396 445 96 96 54 4.621894532285541 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 41.52897000567632 49.69811248779297 476.2696838378906 34.187156677246094 335151.0 0.4851093590259552 2035.7363891601562 1020.9788208007812 2.0015869624597 2867.804443359375 17716.75390625 17508.951171875 92945.0 11595.004687499999 24048.820312500004 3788.242431640625 31.24007797241211 +sub-10066_ses-V1_task-cuff_run-01_bold 0.011142102908277406 0.03147090067114094 3 50.67601176558288 1.240246328766816 1.0342958336322867 0.5102894984215649 43801.5078125 0.4133204660475174 39 8.724832214765101 2.5376124824359145 2.56768 2.699330704225352 2.3458267430823914 0.0425736 -0.012677818536758423 0.0454753041267395 447 96 96 54 4.461990815465846 0.7999997138977051 2.21875 2.21875 2.4000024795532227 29 48.53571543425057 175.59371948242188 1167.46630859375 119.31326293945312 311667.0 0.9204608738422394 5196.441259765626 2193.66064453125 2.0818095267101606 4873.6552734375 27232.873046875 26814.98046875 114362.0 18336.10498046875 37529.89550781249 6009.61865234375 26.57145118713379 +sub-10066_ses-V1_task-cuff_run-02_bold 0.009771073825503357 0.04097441163310962 3 58.286158702847565 1.1854034467937211 1.0212875167264572 0.5144730140563211 42940.93359375 0.6482419107368996 83 18.568232662192393 2.5772579322767126 2.5986974647887324 2.7529329577464785 2.3801433742949274 0.0273159 -0.011618141084909439 0.04545501992106438 447 96 96 54 4.5273258506403575 0.7999997138977051 2.21875 2.21875 2.4000024795532227 18 33.96866094729603 176.73764038085938 1196.6611328125 120.70333862304688 309924.0 1.549184250831604 5313.124755859369 2223.072021484375 2.2961821915095637 4661.1103515625 27112.51171875 26704.564453125 115867.0 18364.0501953125 37207.51601562499 5898.50390625 23.10177993774414 +sub-10066_ses-V1_task-rest_run-01_bold 0.008274183445190156 0.024292874720357942 3 47.432765062578454 1.2841918750224213 1.459409165627802 0.5078040618948192 51143.34375 0.3301398179894823 160 35.79418344519016 2.5355912607454916 2.5775504225352113 2.6803966197183096 2.3488267399829534 0.0141441 -0.011660969816148281 0.0430755577981472 447 96 96 54 4.404576990986787 0.7999997138977051 2.21875 2.21875 2.4000024795532227 25 45.53713282981034 163.605712890625 1139.891357421875 111.28994750976562 311988.0 0.9857902675867081 5134.787036132808 2173.8544921875 2.1513959418420896 4862.22607421875 27265.5859375 26833.52734375 114295.0 18216.0302734375 37731.985156249975 6092.1650390625 30.548255920410156 +sub-10067_ses-V1_task-rest_run-01_bold 0.0008313422818791948 0.020966501565995527 3 44.270865880941706 1.0914963837668157 1.009892404327355 0.47448420610685454 55181.37890625 0.3684108810989818 257 57.49440715883669 2.7001784323236944 2.774652394366197 2.8392428169014083 2.486640085703477 0.0067407 -0.015108682215213776 0.033578965812921524 447 96 96 54 4.41500440055818 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 74.1957882182284 109.51380157470703 712.6092529296875 74.42949676513672 331813.0 0.5053915739059449 3062.0803710937444 1477.7000732421875 2.098451947453758 3082.680419921875 18261.58984375 18254.09375 96872.0 11154.8900390625 24894.037109374996 4134.537109375 31.584980010986328 +sub-10067_ses-V3_task-cuff_run-01_bold 0.0011292841163310964 0.018902351677852352 3 53.44528678930497 1.1069735752690586 1.006882889663677 0.4625223041136843 137119.484375 0.6775362583970574 91 20.3579418344519 2.795181573641319 2.8693047887323946 2.93583323943662 2.580406692754941 0.00641468 -0.005887417588382959 0.036138005554676056 447 96 96 54 4.359811214896628 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 86.06791609779025 71.51541900634766 659.082763671875 48.74202346801758 333669.0 0.45922991037368777 2796.0880371093726 1494.6123046875 2.269786897185708 3438.991455078125 18879.05859375 18696.458984375 95075.0 12139.8072265625 26032.4634765625 4288.341796875 30.67777442932129 +sub-10067_ses-V3_task-cuff_run-02_bold 0.0015613870246085012 0.02624932438478747 3 61.26277429210763 1.1065439646188346 1.0003222870179371 0.4627177451992623 144881.953125 0.8836373284860435 173 38.702460850111855 2.8218693379941855 2.88352 2.975256338028169 2.606831675954389 0.00790545 -0.005752936936914921 0.03618869185447693 447 96 96 54 4.394523457600123 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 86.72353282211095 69.14735412597656 654.6005249023438 47.20518493652344 333618.0 0.533707004785538 2766.856982421875 1479.3681640625 2.322079101044322 3359.24072265625 18700.73046875 18540.80859375 95175.0 12012.2451171875 25661.883007812503 4219.04931640625 26.976518630981445 +sub-10067_ses-V3_task-rest_run-01_bold 0.0007534675615212528 0.016968360850111854 3 49.44749072625559 1.1004936899775792 1.0203641687668168 0.46322513220760947 157351.59375 0.5697786708865196 365 81.65548098434004 2.7753094753685708 2.8514253521126762 2.925138028169014 2.549365045824022 0.00489153 -0.007194229401648045 0.03527003899216652 447 96 96 54 4.295658943299492 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 81.96910426090506 67.05818176269531 658.4385986328125 45.43085861206055 333008.0 0.18544062227010727 2803.662768554666 1496.5704345703125 2.3484984728574707 3414.030517578125 18817.087890625 18623.62890625 95603.0 12023.021484375 26023.453124999993 4335.4306640625 33.1456298828125 +sub-10067_ses-V3_task-rest_run-02_bold 0.0017670693512304252 0.02277056644295302 3 61.74996736984302 1.1213238898430484 1.0047066395515691 0.46392854071512574 180278.65625 0.831213895220136 394 88.14317673378076 2.8131862023753222 2.8735414084507043 2.969077183098592 2.5969400155766706 0.00916031 -0.006075507029891014 0.03697847202420235 447 96 96 54 4.397259711214717 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 84.16362004652973 62.00654220581055 658.5178833007812 42.14680099487305 332987.0 0.3132657349109649 2813.6149169921882 1494.9913330078125 2.2430232069922127 3394.95068359375 18866.16796875 18703.2578125 95775.0 12125.035937499999 25905.005078125007 4253.3671875 28.381813049316406 +sub-10068_ses-V3_task-cuff_run-01_bold 0.001204170403587444 0.023933032735426008 4 66.08176657013486 1.1979745651235967 0.9997375918651685 0.4490773398655624 263045.875 0.684893420465857 127 28.475336322869953 2.498854644421862 2.6016315492957744 2.6078963380281692 2.2870360459416412 0.010418 -0.019231688231229782 0.03945251554250717 446 96 96 54 4.464959530755058 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 167.2310593492397 49.270713806152344 544.0906982421875 33.45838165283203 337070.0 0.20709079578518869 2211.671362304687 1319.7218017578125 1.8276350137171988 3239.772705078125 17853.439453125 17596.66015625 92135.0 11904.321875000001 24549.279687500002 3941.03564453125 30.22125816345215 +sub-10068_ses-V3_task-cuff_run-02_bold 0.001707152466367713 0.03691568385650224 4 78.25890189170791 1.1729175200674156 0.9904213451685393 0.4504581437987402 237414.921875 1.000308614863965 217 48.65470852017937 2.517745914690021 2.610861971830986 2.630981408450704 2.311394363788373 0.015015 -0.018897956237196922 0.0402258075773716 446 96 96 54 4.6089980479748585 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 154.32494798109482 51.11610412597656 542.3037109375 34.965965270996094 336837.0 0.44045591354370117 2192.2152832031256 1297.15625 1.917968415074708 3093.44970703125 17740.123046875 17476.50390625 92219.0 12023.6634765625 24186.924414062498 3791.80224609375 24.686199188232422 +sub-10068_ses-V3_task-rest_run-01_bold 0.0014445190156599551 0.03226039977628636 3 72.07029887495521 1.1638073876008965 0.9878316323991034 0.4479221057598268 250278.375 0.8185421314274505 395 88.3668903803132 2.532248480871358 2.626375211267606 2.63896338028169 2.3314068510647767 0.0124599 -0.01887085661292076 0.03957708552479744 447 96 96 54 4.471719795202915 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 172.6836731537084 50.16673278808594 536.0777587890625 34.185447692871094 337576.0 0.3216991201043129 2168.706787109375 1306.0975341796875 1.7495801169570528 3276.633544921875 17870.51953125 17593.603515625 91833.0 11966.208203125 24554.63906249999 3934.39404296875 25.565004348754883 +sub-10068_ses-V3_task-rest_run-02_bold 0.0015466067415730337 0.03944664471910112 5 78.96335235792792 1.1608586090090092 1.210334542207207 0.45086084530120546 213526.21875 0.9899334326489598 421 94.6067415730337 2.536826348155766 2.6275560563380282 2.649261971830986 2.333661016298284 0.0205998 -0.018899433314800262 0.040147099643945694 445 96 96 54 4.552895122924266 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 160.04258780052942 52.92512893676758 537.4790649414062 36.33061981201172 336825.0 0.5594550848007203 2173.1669921874995 1282.694091796875 1.9193225957251938 3096.52783203125 17441.994140625 17193.755859375 92322.0 11739.635205078124 23870.151464843748 3776.424072265625 23.38617706298828 +sub-10070_ses-V1_task-cuff_run-01_bold 0.0009072171945701357 0.0053237468099547516 8 36.837331551065745 1.0660061608163263 1.008728898390023 0.5457513325287656 447.8965148925781 0.10098693411652322 0 0.0 2.776929148951455 2.5342415659649546 2.9992123808220077 2.7973335000674027 0.00828116 -0.029760485514998436 0.12601827085018158 442 90 90 54 2.2872822984492953 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.326102311811866 6.71196174621582 27.74520492553711 11.414027214050293 276994.0 6.628959655761719 104.59208335876454 45.21029281616211 1.257000191680394 106.11676788330078 278.710205078125 263.0237731933594 96084.0 120.65419311523436 488.1088378906249 114.99341583251953 36.76321792602539 +sub-10070_ses-V1_task-cuff_run-02_bold 0.0014757239819004526 0.0056233898416289604 8 37.669631940907045 1.0662127482766444 1.0130276404535152 0.5469869606597738 435.6367492675781 0.11855660624779463 0 0.0 2.7637860934042053 2.52659989960194 2.98294571480172 2.781812665808956 0.014807 -0.029890386387705803 0.12650832533836365 442 90 90 54 2.292153074013767 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.68322458507449 6.836071014404297 27.985210418701172 11.518099784851074 276939.0 6.647058963775635 105.96878280639638 45.53260040283203 1.2914100432309272 104.976318359375 277.0187072753906 261.5022888183594 96111.0 120.13688278198242 485.2568054199219 114.08528137207031 36.255348205566406 +sub-10070_ses-V1_task-rest_run-01_bold 0.0007033710407239819 0.00576270665158371 8 37.01534766884355 1.0478730156235827 0.9938658716099776 0.5449075152684466 437.5176696777344 0.1147989032927715 16 3.6199095022624435 2.7860930374978654 2.5454873988514186 3.014804046869117 2.7979876667730608 0.016855 -0.031115254387259483 0.1251770704984665 442 90 90 54 2.2777339308986155 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 51.84096863698282 6.762277126312256 27.785358428955078 11.509050369262695 276785.0 6.669683456420898 105.45656433105466 45.49260330200195 1.2206524818266118 108.0672836303711 280.17974853515625 264.67535400390625 96256.0 120.3750057220459 491.5662078857422 116.20056915283203 35.72911071777344 +sub-10070_ses-V1_task-rest_run-02_bold 0.001599011235955056 0.005516465707865169 5 38.26001153569818 1.065229309572072 1.0156221406981982 0.5480064760778326 420.97088623046875 0.12450637069080071 31 6.966292134831461 2.7524430379428586 2.5184207332602844 2.9678623820677448 2.771045998500546 0.0179834 -0.030508043244481087 0.12711288034915924 445 90 90 54 2.2879434900079474 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.71922960684196 6.9665656089782715 28.124292373657227 11.638202667236328 276764.0 6.678651809692383 106.0389862060541 45.6395149230957 1.3983459086423693 103.6089096069336 275.8451232910156 259.9281005859375 96253.0 120.71685791015625 484.66337280273433 113.6071548461914 35.90026092529297 +sub-10070_ses-V3_task-cuff_run-01_bold 0.0011783936651583711 0.009134936832579184 8 41.60527589557821 1.0345127820634912 0.988864329863946 0.5548860451594367 439.7486267089844 0.12192008118733592 0 0.0 2.776905544294865 2.413283237438073 2.925208217096002 2.9922251783505187 0.00474937 -0.022634901106357574 0.14889894425868988 442 90 90 54 2.4671952547308855 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 52.601309589394425 4.880512237548828 27.08344078063965 10.380090713500977 279484.0 6.898190498352051 103.67511825561502 46.753414154052734 0.8525727757544064 85.13558959960938 247.0653076171875 232.18099975585938 94087.0 118.62964477539063 422.6502380371093 94.10676574707031 29.69477653503418 +sub-10070_ses-V3_task-cuff_run-02_bold 0.0011655555555555555 0.00655136902494331 9 42.548783380386354 1.0720762649090914 1.0169425246363641 0.5565566271251341 422.8325500488281 0.12871828482839806 0 0.0 2.7428972104872327 2.403258237836431 2.888341551894285 2.9370918417309824 0.0100098 -0.023872751742601395 0.14981548488140106 441 90 90 54 2.4476290816971584 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 51.86163377733089 4.978988170623779 27.33725929260254 10.473922729492188 279020.0 6.956916332244873 104.94342689514158 46.806182861328125 0.8734545907660287 84.91173553466797 245.37022399902344 230.28118896484375 94449.0 117.50249633789062 421.3138427734373 94.08287048339844 33.954872131347656 +sub-10070_ses-V3_task-rest_run-01_bold 0.00041628117913832197 0.007541279433106577 9 41.235644678545434 1.0365754073181814 0.9837611253181823 0.5533244858616607 452.2080993652344 0.10287424958804173 6 1.3605442176870748 2.7505860993658566 2.3976249047269462 2.9081248844414995 2.946008508929124 0.00875796 -0.022039437666535378 0.14691470563411713 441 90 90 54 2.4805701559988247 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 54.72219173784767 4.696588516235352 26.85395622253418 10.290249824523926 279691.0 6.965986251831055 102.58163452148438 46.700233459472656 0.7992889140166093 85.89007568359375 248.3616943359375 233.70748901367188 93992.0 119.24863891601564 423.80350799560546 94.21472930908203 32.29765319824219 +sub-10070_ses-V3_task-rest_run-02_bold 0.0009854524886877827 0.00761644423076923 8 43.10843533018136 1.0659409437641734 1.0103173721315193 0.5577368912944345 416.8615417480469 0.14286477015770008 33 7.46606334841629 2.7471763769289477 2.4092957375965223 2.896799884891515 2.935433508298805 0.0169557 -0.024659357964992523 0.1525699645280838 442 90 90 54 2.4490794019149935 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 50.90219914599302 5.048227787017822 27.5701847076416 10.509050369262695 278852.0 6.934389591217041 105.83314781188977 47.19784927368164 0.8704723204901685 84.31377410888672 244.30426025390625 229.30996704101562 94605.0 117.02127532958984 418.96563720703125 93.6305923461914 32.10166549682617 +sub-10071_ses-V1_task-cuff_run-01_bold 0.00043425675675675676 0.005030566081081081 6 38.89903142176068 1.0449136995936792 0.9918787817155754 0.5287530047127084 435.7978210449219 0.18329921598492246 0 0.0 2.7776083134602683 2.5687957312585623 3.031045712890398 2.732983496231844 0.00798771 -0.03260708227753639 0.08390477299690247 444 90 90 54 2.4773659467669575 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 36.77034835081541 6.80360746383667 22.5765438079834 11.631756782531738 284886.0 6.754504680633545 71.40484619140625 31.006999969482422 0.9853403947527215 101.18425750732422 275.4172668457031 265.22747802734375 88495.0 120.367569732666 465.76780090332034 107.0596694946289 36.193145751953125 +sub-10071_ses-V1_task-cuff_run-02_bold 0.0005305869074492101 0.005032266659142211 7 39.90202938276016 1.0649176096380093 0.9989049647511321 0.5294666541369795 425.6355285644531 0.18094487742400742 0 0.0 2.785908313523405 2.5750248976777037 3.0378498792866915 2.744850163605819 0.0090164 -0.03279195353388786 0.08428522199392319 443 90 90 54 2.4710078113833864 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 36.17329186618052 6.914349555969238 22.708158493041992 11.751693725585938 284613.0 6.772009372711182 71.69751739501953 31.239009857177734 0.9829703492087978 101.02110290527344 274.93524169921875 265.0 88783.0 119.30564422607422 465.45418701171866 107.24308776855469 36.14885711669922 +sub-10071_ses-V1_task-rest_run-01_bold 0.0005959049773755656 0.006233053325791856 8 39.38515107378686 1.0438903737868486 0.9916506305668938 0.5279379494283893 442.15936279296875 0.1933121423249143 98 22.171945701357465 2.8091083133552703 2.5925790636468307 3.0671332114564094 2.7676126649625696 0.00766267 -0.03369440883398056 0.086330845952034 442 90 90 54 2.451166068846028 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 35.012691464436124 6.805882453918457 22.747190475463867 11.613122940063477 285130.0 6.746606826782227 71.82952842712395 31.64221954345703 0.9918919723924322 102.59141540527344 276.41351318359375 266.05206298828125 88420.0 119.57907981872559 469.76959533691405 108.5404052734375 33.57756042480469 +sub-10071_ses-V1_task-rest_run-02_bold 0.002732799097065463 0.011112513115124154 7 45.06967194153845 1.0631312138235294 1.0108900566063346 0.5310770974255857 405.3456726074219 0.29982037200568795 155 34.988713318284425 2.83097220235291 2.602741563243009 3.0930415437602385 2.797133500055482 0.01062 -0.0324423648416996 0.08387400209903717 443 90 90 54 2.483816629595274 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 35.4171003177303 7.349423885345459 22.833776473999023 12.074492454528809 284355.0 6.781038761138916 71.39322814941396 30.966596603393555 0.9722915210052903 100.40196228027344 274.4403381347656 264.8397216796875 89175.0 119.49391021728516 463.6404052734376 106.62551879882812 27.507770538330078 +sub-10071_ses-V3_task-cuff_run-01_bold 0.0005348314606741574 0.007261327033707865 5 47.36625784795042 1.0910283934909908 0.998591898716216 0.5289438796443453 524.4606323242188 0.2423321954472225 0 0.0 2.7300777648872585 2.4183499039034086 2.885070718690923 2.886812672067444 0.00997545 -0.019536269828677177 0.09438589960336685 445 90 90 54 2.6816064313786963 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 42.25069322739922 3.988032579421997 20.192331314086914 9.52808952331543 288597.0 6.680899143218994 66.40719451904299 29.908287048339844 0.5288409745014007 81.1433334350586 243.119384765625 232.4921417236328 85928.0 120.62033882141114 402.36247406005856 86.69832611083984 32.993289947509766 +sub-10071_ses-V3_task-cuff_run-02_bold 0.0013860898876404493 0.010120047078651684 5 45.62497992986486 1.0895136488063066 1.0074338773648641 0.5323712726618904 498.12603759765625 0.17949671506565643 1 0.2247191011235955 2.7356013766287997 2.4118457374951943 2.8824790521272403 2.9124793402639635 0.0177305 -0.021772675216197968 0.09636785089969635 445 90 90 54 2.6757847181594006 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 38.12962021301423 4.277890205383301 20.653352737426758 9.750561714172363 288533.0 6.728089809417725 68.46966552734375 29.689287185668945 0.5413177589495071 80.77850341796875 242.77513122558594 231.9415740966797 85980.0 121.40652122497559 403.1913467407227 86.68119812011719 30.102405548095703 +sub-10071_ses-V3_task-rest_run-01_bold 0.0004054954954954955 0.009526604594594595 6 49.9596237543341 1.078157083792325 0.9811334740180583 0.5291688028440141 517.0816650390625 0.25591850680974604 162 36.486486486486484 2.760962487422019 2.4320499033590197 2.9175248840679773 2.93331267483906 0.00704779 -0.021515607833862305 0.09502595663070679 444 90 90 54 2.672577245192002 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 42.06391592979058 4.107209205627441 20.448673248291016 9.653153419494629 288645.0 6.747747898101807 67.08063354492185 30.198083877563477 0.467177994292133 82.0790786743164 243.97299194335938 233.4200439453125 85974.0 119.33479881286621 404.6704956054687 87.33842468261719 30.33104705810547 +sub-10071_ses-V3_task-rest_run-02_bold 0.002410900900900901 0.014801430518018018 6 45.937167191015796 1.0894592642889382 1.0199469816930016 0.5345284777037476 485.0873107910156 0.21037153805854727 109 24.54954954954955 2.763843043371269 2.433199903313323 2.9096707177134067 2.9486585090870765 0.00975631 -0.02244580164551735 0.09759115427732468 444 90 90 54 2.6753259179212234 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 36.875475030515304 4.4945549964904785 20.896636962890625 9.882883071899414 287852.0 6.7094597816467285 69.49301872253423 29.876028060913086 0.5224319693913815 80.54306030273438 242.22933959960938 231.27139282226562 86668.0 120.96104049682617 401.48188171386715 86.44556427001953 26.225116729736328 +sub-10072_ses-V1_task-cuff_run-01_bold 0.0010553181818181818 0.006993101795454545 10 31.22362271514806 1.082768321548974 1.0088677678132123 0.439545125823152 10222.0234375 0.13060255214739866 0 0.0 2.4613175004443453 2.6140790627924972 2.46817073525704 2.3017027032834987 0.00586701 0.02258111536502838 0.014106133952736855 440 90 90 60 2.1097894489972298 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 51.25876398850583 16.335580825805664 53.000038146972656 11.393181800842285 325465.0 0.00909090880304575 260.7486328124999 139.0631866455078 18.462594534552345 322.9039611816406 1274.97509765625 1162.3363037109375 91207.0 675.5522583007812 2202.8548828125 550.9222412109375 41.20844268798828 +sub-10072_ses-V1_task-cuff_run-02_bold 0.0011021818181818181 0.009063300272727271 10 32.98299990179956 1.0758059578132126 0.9748968037813216 0.44052508107118 9554.6669921875 0.1494791663373432 0 0.0 2.48126610861866 2.634166561994292 2.497137400772675 2.3124943630890127 0.00603351 0.022207502275705338 0.015085973776876926 440 90 90 60 2.1085998628491938 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 58.33608833913976 16.712970733642578 53.25221252441406 11.706817626953125 325248.0 0.022727271541953087 261.7700958251946 139.27877807617188 18.28160392394597 321.229248046875 1265.656005859375 1153.8885498046875 91447.0 668.0990661621094 2181.244262695312 547.2267456054688 36.85811233520508 +sub-10072_ses-V1_task-rest_run-01_bold 0.001524524886877828 0.00681263649321267 8 31.378602951201817 1.103853927165533 1.058089226099772 0.43899368703210834 10077.4833984375 0.13186441440904584 3 0.6787330316742082 2.4583119463658805 2.6125165628545854 2.4675499019483764 2.294869374294679 0.0157407 0.02058686874806881 0.014018948189914227 442 90 90 60 2.1031593181539434 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 48.47073364699132 16.483049392700195 52.36317825317383 11.529412269592285 325351.0 0.020361991599202156 256.2386932373047 136.2744598388672 19.37706530100435 326.8400573730469 1282.80517578125 1169.16748046875 91313.0 679.0036499023438 2205.7367187499995 555.9070434570312 41.917877197265625 +sub-10072_ses-V1_task-rest_run-02_bold 0.0011423476297968398 0.008914742799097064 7 33.47175955425341 1.0867264210180994 0.9910734773755641 0.4407579274246006 9473.146484375 0.15294747832906755 7 1.580135440180587 2.494218882447853 2.6458415615303688 2.5070374003792844 2.3297776854339056 0.00921477 0.022611510008573532 0.014836683869361877 443 90 90 60 2.088464221836483 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 57.70107659569014 16.726966857910156 53.888038635253906 11.7223482131958 325207.0 0.03837471827864647 265.3532714843751 140.2487335205078 18.020226887657515 322.9998779296875 1264.1378173828125 1151.02490234375 91477.0 663.7209960937499 2187.1142578125 551.131591796875 36.94562530517578 +sub-10072_ses-V3_task-cuff_run-01_bold 0.000988344671201814 0.010080266780045352 9 44.83136275899997 1.1743523844772732 0.9956927950681823 0.44994554278493293 9287.455078125 0.2915978148938217 0 0.0 2.4807577642588057 2.563337398142123 2.5108415668947868 2.3680943277395072 0.00765685 0.013741173781454563 0.023313302546739578 441 90 90 60 2.351650948472673 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 88.97384063414519 17.663475036621094 58.586631774902344 12.27437686920166 325880.0 0.027210883796215057 296.73016357421875 147.9241180419922 9.260662199006354 351.89453125 1272.3424072265625 1187.850341796875 90949.0 656.3941040039062 2158.8844726562497 505.110595703125 34.58696746826172 +sub-10072_ses-V3_task-cuff_run-02_bold 0.001186621315192744 0.00997914058956916 9 50.81460342854545 1.2400280518636357 1.0112240903863634 0.45124660454791243 9261.5966796875 0.3952817191616797 12 2.7210884353741496 2.492406373852372 2.578808230860701 2.5250082329985206 2.3734026576978953 0.00944702 0.013310098089277744 0.022985370829701424 441 90 90 60 2.3574052575336686 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 94.93575489773633 17.552532196044922 58.660804748535156 12.285714149475098 325475.0 0.04988662153482437 297.9605529785156 145.8974151611328 8.851087824895005 352.1029357910156 1268.1131591796875 1184.818603515625 91269.0 652.1369506835938 2148.710253906249 502.59161376953125 33.219017028808594 +sub-10072_ses-V3_task-rest_run-01_bold 0.0009726018099547511 0.011245990429864253 8 43.16433993895689 1.1565145804761896 0.9618198310430838 0.4489210295280836 9186.0966796875 0.2631862310377256 143 32.35294117647059 2.4830702633804655 2.560112398270273 2.517045733314922 2.3720526585562016 0.00832763 0.013546004891395569 0.0225529745221138 442 90 90 60 2.351756828572479 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 84.44824711799235 17.7576847076416 57.686859130859375 12.298643112182617 325752.0 0.013574661687016487 289.89775543212903 146.49868774414062 9.112124898121705 353.7498779296875 1277.8941650390625 1193.24560546875 91098.0 659.6598541259765 2167.4257812499995 507.3819885253906 33.00019836425781 +sub-10072_ses-V3_task-rest_run-02_bold 0.0011379138321995464 0.009418388843537415 9 45.2028055276591 1.220693764545455 1.1091254997499993 0.4510935132859116 9418.99609375 0.30229393537488236 203 46.03174603174603 2.492198040138232 2.5726415644390754 2.528591566189465 2.3753609897861545 0.00793389 0.013236066326498985 0.023025404661893845 441 90 90 60 2.3350328096936686 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 83.31612736224665 17.468482971191406 59.6587028503418 12.17913818359375 325739.0 0.03401360660791397 307.02584228515605 147.89634704589844 8.999445458573526 355.42437744140625 1271.8505859375 1187.1859130859375 91247.0 651.5347045898437 2164.1514648437496 508.4208679199219 34.38336944580078 +sub-10073_ses-V1_task-cuff_run-01_bold 0.0004609213483146068 0.005440394876404494 5 40.35629107506756 1.0659198424999998 1.0017218891216215 0.5573237078882197 482.3466491699219 0.10756292973455059 0 0.0 2.8267693321187237 2.5589332316504625 3.0520748787214407 2.8692998859842667 0.0126847 -0.0036047082394361496 0.14168617129325867 445 90 90 54 2.3481804504814963 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 20.92165425832262 4.9875407218933105 26.16551399230957 10.031460762023926 272668.0 6.523595809936523 104.96089706420892 43.30412292480469 2.325883330569175 90.52201080322266 251.01954650878906 237.70787048339844 99269.0 110.23550872802736 429.4683166503904 101.23015594482422 35.82225036621094 +sub-10073_ses-V1_task-cuff_run-02_bold 0.0008352252252252253 0.005373081396396397 6 39.821451656388255 1.05864868241535 1.0078980492099325 0.559339206198519 469.15936279296875 0.11715610986442426 0 0.0 2.830158220872949 2.5607832315769503 3.058241545143066 2.8714498858988327 0.0089105 -0.0012780468678101897 0.14634346961975098 444 90 90 54 2.3447174171113896 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 20.399464370155837 5.088932514190674 26.703954696655273 10.11486530303955 272733.0 6.549549579620361 108.03468627929686 44.3678092956543 2.3084552139804577 89.94454193115234 249.458984375 236.2364959716797 99305.0 109.49414825439453 427.0986511230467 100.75214385986328 36.0224723815918 +sub-10073_ses-V1_task-rest_run-01_bold 0.0007910112359550562 0.008607539685393259 5 41.50410154695948 1.066891655292793 0.9973453553153155 0.5570448417730883 487.25921630859375 0.1235720011606316 6 1.348314606741573 2.8703540526090445 2.6054457298022218 3.1083207098197656 2.8972957182051453 0.0204499 -0.008748343214392662 0.14207777380943298 445 90 90 54 2.322295412896739 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 20.47925074988837 5.000866889953613 26.134435653686523 10.056180000305176 271859.0 6.528090000152588 104.6471939086914 42.81201934814453 2.4386470696119984 92.28614807128906 253.15090942382812 239.77752685546875 100012.0 109.90573120117188 433.3098937988281 103.24971008300781 31.859899520874023 +sub-10073_ses-V1_task-rest_run-02_bold 0.0006241123595505618 0.006093355235955057 5 38.26504408351352 1.0366364792117126 1.0024267976801795 0.5613810791271266 457.45867919921875 0.11235546455787647 8 1.797752808988764 2.8362596095193915 2.567141564657626 3.0555957119148687 2.886041551985679 0.0070698 -0.0007874295115470886 0.14797790348529816 445 90 90 54 2.3615399189762414 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 19.723327130686222 5.314046859741211 27.10759925842285 10.240449905395508 272521.0 6.42247200012207 111.3505630493164 44.96010208129883 2.2494618100365056 89.45756530761719 248.93153381347656 235.75393676757812 99380.0 110.43034133911134 425.1237091064453 99.83009338378906 35.17556381225586 +sub-10073_ses-V3_task-rest_run-01_bold 0.0007186907449209932 0.011976431557562077 7 48.4215408082806 1.0682988071266974 0.9833080387782802 0.5661824533380994 379.8214416503906 0.12563316278274542 1 0.22573363431151242 3.0396638745626436 2.7289832248932826 3.1750498738348534 3.2149585249597945 0.0121047 -0.018997803330421448 0.158829465508461 443 90 90 54 2.0676730740442273 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 16.93865256864093 7.041524410247803 28.824922561645508 10.83295726776123 266038.0 5.774266719818115 121.72720642089843 46.13128662109375 2.785060110701049 99.16366577148438 249.40122985839844 229.6952667236328 104334.0 108.09018363952637 449.8873718261717 111.08824157714844 27.757362365722656 +sub-10073_ses-V3_task-rest_run-02_bold 0.0007187387387387389 0.008880876463963964 6 47.03782342950333 1.0601727951467281 0.9931316057787813 0.5697727550971787 375.5145263671875 0.13858082172680103 1 0.22522522522522523 3.0000152638514908 2.6921123930250648 3.1284748756855776 3.179458522843829 0.0107134 -0.014156834222376347 0.16205894947052002 444 90 90 54 2.089991041855178 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 15.726925332398455 7.059056282043457 29.509628295898438 10.795044898986816 266220.0 5.777027130126953 126.95281791687009 47.48927688598633 2.7340746855720717 97.57460021972656 247.2030487060547 227.7680206298828 104210.0 108.8443717956543 444.2415725708004 108.9798583984375 29.172719955444336 +sub-10074_ses-V1_task-rest_run-01_bold 0.00044694570135746605 0.005539345746606335 8 34.72709768646255 1.0190007851927438 1.0032041365759639 0.5279347662848004 664.0908203125 0.11767696604658086 4 0.9049773755656109 2.655690266084539 2.3669790726113686 2.7663873900736418 2.833704335568607 0.0205769 -0.009426901116967201 0.08885970711708069 442 90 90 54 2.6637786140929944 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 60.13642341060709 2.525789976119995 16.809471130371094 8.341629028320312 277310.0 6.527149677276611 48.43563518524167 27.819725036621094 0.5746542294206796 79.46346282958984 241.81126403808594 228.02037048339844 95857.0 129.67375793457032 401.1018371582031 85.59989929199219 36.334625244140625 +sub-10074_ses-V1_task-rest_run-02_bold 0.0004514864864864864 0.00785323463963964 6 35.77440707880362 1.000565274401805 0.9843605459142211 0.529519176006197 648.613525390625 0.13028992200861061 10 2.2522522522522523 2.6574444327961575 2.370262405814234 2.7649040567992507 2.8371668357749877 0.017546 -0.00955322664231062 0.08951032161712646 444 90 90 54 2.673182317509762 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 63.4180284391972 2.5578231811523438 16.749141693115234 8.344594955444336 276716.0 6.493243217468262 47.628379821777344 27.7879638671875 0.5961650543493722 78.42095947265625 238.9883270263672 225.81082153320312 96251.0 128.5619354248047 396.4189147949219 84.47222137451172 32.827850341796875 +sub-10075_ses-V1_task-cuff_run-01_bold 0.0018871106094808126 0.008983711106094808 7 42.72685852735292 1.0415433600226247 1.0018033638235297 0.559516836979152 360.69140625 0.24309184236867026 0 0.0 2.7102333163352257 2.4187540705540154 2.9729915485305964 2.7389543299210666 0.0133438 -0.013190091587603092 0.12985436618328094 443 90 90 54 2.3276012938278106 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 32.32886920480847 6.690117359161377 25.980764389038086 11.277652740478516 274840.0 6.562077045440674 93.14684143066404 40.139076232910156 2.9710799554811524 86.39253234863281 244.5855712890625 231.11512756347656 97743.0 107.38375091552734 420.9776733398435 99.29275512695312 29.230918884277344 +sub-10075_ses-V1_task-cuff_run-02_bold 0.0010585520361990949 0.009289705248868777 8 44.3666097162812 1.0549042391836732 1.0110781085941052 0.5603499679717082 353.14508056640625 0.27680203134138687 3 0.6787330316742082 2.7070235938957503 2.4270082368926906 2.9655207154941277 2.728541829300433 0.00674445 -0.011568720452487469 0.1300860345363617 442 90 90 54 2.3318924457550896 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.26786259953248 6.738796234130859 25.77123260498047 11.298643112182617 274711.0 6.447964191436768 92.3472900390625 39.31202697753906 2.953851164253008 85.53642272949219 242.69723510742188 229.5294189453125 97786.0 106.80543327331543 417.8693618774414 98.4300308227539 30.449771881103516 +sub-10075_ses-V1_task-rest_run-01_bold 0.0007303393665158372 0.006997717126696832 8 42.20136280002268 1.0466550490022675 1.0046568697278904 0.5572786323013262 374.7796630859375 0.2438815492249683 151 34.16289592760181 2.708770815687329 2.4279790701874466 2.980699881557628 2.717633495316912 0.0109093 -0.013621239922940731 0.12746836245059967 442 90 90 54 2.317928101084236 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 34.50083160700518 6.524120807647705 25.683298110961914 11.142534255981445 274962.0 6.5158371925354 92.21923332214347 39.921226501464844 2.8962184986645143 87.46683502197266 246.16526794433594 232.90272521972656 97661.0 106.89141082763672 423.8348693847656 100.47832489013672 32.169185638427734 +sub-10075_ses-V1_task-rest_run-02_bold 0.0008015158371040723 0.009443257398190045 8 44.242559143015875 1.041490486938776 1.0010209265986387 0.5616191327940998 345.09259033203125 0.2722398647775739 178 40.27149321266968 2.7144291496622954 2.4268665702316534 2.972620715211999 2.743800163543234 0.0120475 -0.01268752571195364 0.12944038212299347 442 90 90 54 2.3249921207491018 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 31.600552686243738 6.899803638458252 26.048006057739258 11.4343900680542 274233.0 6.5248870849609375 93.00136108398432 39.51126480102539 3.0123933610350457 85.79972076416016 242.6426239013672 229.2217254638672 98061.0 106.81222534179688 417.8642578125 98.5898208618164 29.53055763244629 +sub-10075_ses-V3_task-cuff_run-01_bold 0.0007824324324324324 0.009748136981981981 6 43.715681304040636 1.0201574053950335 0.9865383552370204 0.5625339455248223 368.2479553222656 0.22750468232717788 0 0.0 2.7522165573034063 2.4059707377286457 2.9463373829230712 2.9043415512585025 0.010621 -0.02345830388367176 0.14806628227233887 444 90 90 54 2.338238648677255 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 33.44151445527728 5.706683158874512 26.984294891357422 11.207207679748535 276757.0 7.157657623291016 97.50765991210943 41.3327522277832 2.1378635942330515 88.4151840209961 245.43214416503906 230.1531524658203 96243.0 112.41351470947266 423.74642028808586 98.42962646484375 28.75496482849121 +sub-10075_ses-V3_task-cuff_run-02_bold 0.0008571331828442438 0.00748694013544018 7 43.96305689242084 1.0456009768099552 1.0078283898868787 0.5623037928749717 373.29815673828125 0.22632143422609746 0 0.0 2.7395207244745605 2.3911999049822525 2.9258415504041695 2.901520718037259 0.0112013 -0.02236367017030716 0.1489173173904419 443 90 90 54 2.339881257928869 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 4 32.613143372092495 5.476927280426025 26.867937088012695 11.028217315673828 277280.0 7.1851019859313965 97.56896057128904 41.08147430419922 2.079719170244627 87.39319610595703 243.55262756347656 228.2505645751953 95702.0 112.47630310058594 421.119546508789 97.54741668701172 30.06643295288086 +sub-10075_ses-V3_task-rest_run-01_bold 0.0004039819004524888 0.006996993122171945 8 42.92737000673467 1.0292987600680275 0.992757931564626 0.5605196977352186 385.7890319824219 0.20963180419136446 99 22.398190045248867 2.7487485018856592 2.407658237661591 2.9399040498453757 2.898683218150011 0.00562812 -0.024501409381628036 0.14498835802078247 442 90 90 54 2.3333516389349493 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 34.71637359516483 5.376948356628418 26.781694412231445 10.986425399780273 276559.0 7.228507041931152 97.21063766479487 41.6068229675293 2.34844984470156 89.0333023071289 247.23614501953125 232.0701446533203 96239.0 112.9341682434082 426.33055114746094 99.45733642578125 30.61591911315918 +sub-10075_ses-V3_task-rest_run-02_bold 0.0006501348314606741 0.008068238674157305 5 43.5776683532883 1.0385743690090092 1.00115537322072 0.5629653751648237 378.5887451171875 0.22337766654284963 125 28.089887640449437 2.747726279704056 2.398845738011768 2.9412582164582326 2.9030748846421686 0.0102838 -0.02190694585442543 0.14814968407154083 445 90 90 54 2.3264789786218296 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 32.313389426617746 5.284060955047607 26.767454147338867 10.896629333496094 276899.0 7.175281047821045 97.50359649658198 40.84849166870117 2.1161351773250745 87.61347961425781 241.947021484375 227.1595458984375 96143.0 109.4676399230957 417.65370788574216 97.64041137695312 29.544361114501953 +sub-10076_ses-V1_task-cuff_run-01_bold 0.001000762331838565 0.012096511905829594 4 50.84592537208989 1.0243930172134819 0.9972068640449442 0.5619084578095949 366.55670166015625 0.3538581712977168 2 0.4484304932735426 2.744713873409679 2.479441568142511 2.92849988363187 2.826200168454657 0.00797103 -0.0030458157416433096 0.11708128452301025 446 90 90 54 2.3145380150239325 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.11674736845343 5.787467956542969 24.175451278686523 10.567265510559082 271181.0 6.412556171417236 88.3340835571289 36.13746643066406 1.8418720907504662 84.39862823486328 233.25611877441406 218.2152557373047 99981.0 106.12107849121094 405.560546875 94.27979278564453 25.531002044677734 +sub-10076_ses-V1_task-cuff_run-02_bold 0.0033356853932584273 0.013677023348314605 5 56.83629955272522 1.0627582676126122 1.030625008783783 0.562266561463351 355.5542297363281 0.4268242625517826 15 3.3707865168539324 2.7664819282723037 2.5025915672226122 2.9654582154966107 2.8313960020976863 0.0221518 -0.0042791604064404964 0.11959163844585419 445 90 90 54 2.305164166564287 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 9 32.86206490908458 6.1369733810424805 24.132076263427734 10.815730094909668 270756.0 6.395505905151367 87.39494323730469 35.52614212036133 1.7868415084340041 83.09234619140625 230.13729858398438 215.21348571777344 100435.0 103.71955032348633 400.6795562744138 93.36099243164062 23.3330078125 +sub-10076_ses-V1_task-rest_run-01_bold 0.0009883108108108107 0.013712009301801801 6 50.94868150636575 1.0137742770203162 0.9864628466365689 0.5612718290918062 372.2470703125 0.3498171417629308 227 51.126126126126124 2.752523595248307 2.4851582345820176 2.9484248828401216 2.823987668322782 0.0103053 -0.0038599707186222076 0.12197114527225494 444 90 90 54 2.313050697025506 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.38837031093354 5.64657735824585 24.146461486816406 10.466216087341309 271417.0 6.475225448608398 88.60405731201168 36.43333053588867 1.8662271131827026 84.50665283203125 233.84698486328125 219.08221435546875 99888.0 105.28176002502443 406.52603302001944 94.71522521972656 24.89491844177246 +sub-10076_ses-V1_task-rest_run-02_bold 0.0018598876404494382 0.010655755235955057 5 49.95654260779281 1.058087041306307 1.0288172052927933 0.5598697111827263 375.0055847167969 0.32727909082325063 215 48.31460674157304 2.7057069292500127 2.4431040695864334 2.8860248853196744 2.7879918328439297 0.0117401 0.0021435306407511234 0.12235844135284424 445 90 90 54 2.3336786745195837 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 32.71572187349124 5.463972568511963 23.43894386291504 10.235955238342285 272873.0 6.260673999786377 85.64853820800776 35.408935546875 1.765391970231554 81.32991027832031 228.45274353027344 213.32696533203125 98722.0 106.3866325378418 395.66741943359375 91.41184997558594 26.613494873046875 +sub-10076_ses-V3_task-cuff_run-01_bold 0.000508963963963964 0.011220022477477479 6 46.48364386977425 1.0118451531376986 0.9864852883521443 0.5681314466841297 350.3115539550781 0.2806515723979261 0 0.0 2.725873598815369 2.4324874033416353 2.845404053600468 2.899729339504004 0.00571293 -0.008015472441911697 0.14059239625930786 444 90 90 54 2.2890481340506845 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 28.991704557030975 5.479617595672607 26.49638557434082 10.867116928100586 273074.0 7.015766143798828 100.63750267028793 40.033546447753906 1.44946431335564 85.51510620117188 236.39027404785156 218.69369506835938 98696.0 113.11036491394043 414.42398834228516 95.53865814208984 28.06942367553711 +sub-10076_ses-V3_task-cuff_run-02_bold 0.0007350900900900901 0.008731860472972973 6 47.41529357941311 1.0272921214672686 0.9983231880135437 0.5676610235351637 354.6617126464844 0.29287327781521294 0 0.0 2.7190805431191354 2.4328832366592392 2.8370290539332608 2.887329338764906 0.0081321 -0.008252155035734177 0.1427379995584488 444 90 90 54 2.2869666987856943 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.493666828482688 5.3594069480896 26.34507179260254 10.75 273130.0 6.930180549621582 100.18818092346189 40.08332443237305 1.4493996137707983 84.98417663574219 234.9722137451172 217.13514709472656 98598.0 112.54144172668458 412.77940521240225 94.94412231445312 28.952157974243164 +sub-10076_ses-V3_task-rest_run-01_bold 0.0005599549549549549 0.00970799918918919 6 47.13041538907451 1.0238361700677192 0.9919399650112867 0.5662711834656412 366.4084777832031 0.2890996487877061 189 42.567567567567565 2.7173305429308012 2.4303915700915826 2.8420582204000864 2.879541838300735 0.0108353 -0.008377790451049805 0.14263121783733368 444 90 90 54 2.3027347959393745 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.3881171823571 5.295961856842041 26.507394790649414 10.743243217468262 273048.0 7.015766143798828 101.08772964477535 41.13096618652344 1.446387544269843 86.13451385498047 238.55935668945312 221.13514709472656 98671.0 114.04505157470703 417.7961730957031 96.03104400634766 28.61610221862793 +sub-10076_ses-V3_task-rest_run-02_bold 0.0007410657596371882 0.00872339081632653 9 46.23496310500002 1.0359402554545454 1.0057259381363637 0.5698747862175743 339.3555908203125 0.25688331740258097 165 37.414965986394556 2.7068902654166638 2.42252907040401 2.8231665544841067 2.8749751713618736 0.00721144 -0.007736610248684883 0.14160169661045074 441 90 90 54 2.2773361344031473 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 28.058991388640617 5.550512790679932 26.668968200683594 10.907029151916504 273006.0 6.99546480178833 101.59354019165039 40.13942337036133 1.433621867187287 84.4343490600586 233.79031372070312 215.93878173828125 98823.0 112.2984115600586 412.15827026367185 94.82029724121094 29.751331329345703 +sub-10077_ses-V1_task-cuff_run-01_bold 0.0019194104308390021 0.006304797188208617 9 35.20082025943181 1.0614146036136365 1.0197772344772729 0.5077632990453648 682.236083984375 0.10987985245402282 0 0.0 2.538881927013541 2.3583874062861043 2.7379957245351583 2.52026265021936 0.00752239 -0.029514847323298454 0.08760145306587219 441 90 90 54 2.7072460117041763 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 109.93512456116298 3.622457265853882 18.241621017456055 9.023809432983398 287784.0 6.421768665313721 54.338096427917165 32.63121032714844 1.5970392706346814 81.97008514404297 264.0762634277344 251.3174591064453 86527.0 136.03854370117188 431.20295410156245 92.83087158203125 37.3575439453125 +sub-10077_ses-V1_task-cuff_run-02_bold 0.000479527027027027 0.005118275878378378 6 35.538115852325056 1.0550436276072233 1.0032655391873584 0.5078694227789462 681.9590454101562 0.11242245279662694 0 0.0 2.5315833159046375 2.3536165731423466 2.729562391536936 2.5115709830346296 0.00659561 -0.029866598546504974 0.08797283470630646 444 90 90 54 2.6964762428770372 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 115.91521890678729 3.562920570373535 18.240234375 8.997748374938965 287548.0 6.439189434051514 54.46847152709961 32.754390716552734 1.588453476012571 81.77018737792969 262.9396057128906 250.06982421875 86731.0 135.24549865722656 430.56419372558594 92.73895263671875 40.63523483276367 +sub-10077_ses-V1_task-rest_run-01_bold 0.0004957272727272727 0.0056746538409090915 10 35.259311758838244 1.0457070327334854 0.9953312239863322 0.505808962565453 691.1876220703125 0.10337007374746048 7 1.5909090909090908 2.5458847046005286 2.3684915725512674 2.7462582242068363 2.522904317043482 0.00972109 -0.028831500560045242 0.08584116399288177 440 90 90 54 2.69190044994901 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 119.41276755859376 3.5919406414031982 17.949901580810547 8.9909086227417 287896.0 6.418181419372559 52.62158966064453 32.17124557495117 1.5338128810800207 82.81680297851562 264.7084045410156 251.9318084716797 86537.0 135.389990234375 433.74225463867185 93.58828735351562 38.05190658569336 +sub-10077_ses-V1_task-rest_run-02_bold 0.00039155405405405405 0.0062851635810810816 6 35.386937548442425 1.030846057426636 0.9878053796613994 0.5085952932009249 667.495361328125 0.11823263774156126 8 1.8018018018018018 2.53341942712988 2.3528915731711555 2.7301457248470893 2.517220983371396 0.00925553 -0.030360691249370575 0.08792288601398468 444 90 90 54 2.6958701657873774 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 112.45107025645547 3.6464006900787354 18.343372344970703 9.067567825317383 287437.0 6.448198318481445 54.313514709472685 32.98240661621094 1.6189860860713212 81.58985900878906 262.3793640136719 249.79730224609375 86809.0 134.58558959960936 429.8401000976561 92.6587142944336 38.437767028808594 +sub-10077_ses-V3_task-cuff_run-01_bold 0.0010733634311512416 0.009324299841986457 7 43.73800378687785 1.085024457624435 1.0121479728280551 0.5077841031623925 738.2091064453125 0.14914658193015234 0 0.0 2.671599986386857 2.434016569947538 2.785966555962302 2.794816833250731 0.0103152 -0.03537522256374359 0.1147511750459671 443 90 90 54 2.5498258815506896 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 104.99184474843693 3.6077773571014404 18.370426177978516 8.054176330566406 288359.0 5.424379348754883 58.75666160583486 35.622650146484375 2.8217150941104325 80.94239807128906 246.29734802246094 232.08465576171875 86520.0 129.5481994628906 408.7609664916994 91.01927947998047 30.739925384521484 +sub-10077_ses-V3_task-cuff_run-02_bold 0.0008445022624434388 0.008886611085972851 8 43.80844558224487 1.0872275168027214 1.0087415065079375 0.5079934516952154 747.5360717773438 0.13186389829414066 0 0.0 2.654658319847016 2.4171832372831012 2.7684748899906917 2.7783168322672545 0.00952354 -0.03427618369460106 0.1143176406621933 442 90 90 54 2.5679934081228195 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 93.1136380847028 3.4784128665924072 18.1541690826416 7.932126998901367 288649.0 5.432126998901367 57.7714958190918 34.8051872253418 2.6989868479497066 80.37918090820312 244.494384765625 230.69570922851562 86310.0 129.4294105529785 405.71009674072275 89.83448791503906 31.89814567565918 +sub-10077_ses-V3_task-rest_run-01_bold 0.00041968325791855203 0.008603564977375565 8 41.90782311734694 1.0456391553061217 0.9865247623809521 0.50644610285989 758.9186401367188 0.14287674143386392 17 3.8461538461538463 2.6769249861864366 2.4375040698089574 2.7981165554795044 2.795154333270848 0.00671919 -0.03397240862250328 0.11294571310281754 442 90 90 54 2.5575996664816505 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 104.56458068100237 3.5354361534118652 18.296525955200195 7.988687992095947 288401.0 5.398190498352051 58.72172164916992 35.691104888916016 2.787999969925891 81.667236328125 248.49024963378906 233.94796752929688 86204.0 131.90894012451173 412.5286239624022 91.47116088867188 31.794334411621094 +sub-10077_ses-V3_task-rest_run-02_bold 0.0005861936936936937 0.013781248671171172 6 43.799235195372496 1.0325546974266369 0.9664811658013535 0.5072283603968729 750.4869384765625 0.14307280478472423 36 8.108108108108109 2.6822735980190955 2.424470736993522 2.798987388778234 2.8233626682855286 0.00780884 -0.03229730203747749 0.11349467933177948 444 90 90 54 2.594651897108442 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 88.722840055334 3.5061538219451904 17.9122314453125 7.918919086456299 289121.0 5.353603839874268 56.31306457519531 34.17822265625 2.5183686483310366 79.2156982421875 243.080810546875 229.375 85924.0 129.8993263244629 402.571743774414 88.40248107910156 27.116857528686523 +sub-10080_ses-V1_task-cuff_run-01_bold 0.0004926410835214447 0.006947123792325056 7 34.1243955861991 0.9983085582352944 0.9996934753167425 0.530644871999687 455.16033935546875 0.12848601321731837 0 0.0 2.715023596407976 2.419420737194191 2.9116415509684264 2.8140085010613105 0.00599142 -0.04000045731663704 0.1346891224384308 443 90 90 54 2.7006969568825894 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 56.692223429143304 5.374850749969482 23.4668025970459 10.367945671081543 292907.0 6.431151390075684 78.44469451904297 39.55704879760742 0.260280919585159 83.914306640625 246.21188354492188 237.93905639648438 82848.0 115.36219177246093 404.11728820800784 88.10230255126953 34.73725128173828 +sub-10080_ses-V1_task-cuff_run-02_bold 0.0004370045045045046 0.007194208558558558 6 34.91105597155757 1.0013460239503387 0.9968518123702037 0.5325646486349188 443.2760925292969 0.11690909437854077 0 0.0 2.6968402629549915 2.4030790711768835 2.8988665514760594 2.7885751662120324 0.00390421 -0.038348183035850525 0.12794382870197296 444 90 90 54 2.703622436427861 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 49.74682974972579 5.406155109405518 23.29796028137207 10.448198318481445 293005.0 6.617117404937744 78.83108520507812 37.334800720214844 0.29189515396219345 83.14261627197266 245.84609985351562 237.24549865722656 82751.0 115.83108520507812 403.16668701171875 87.75044250488281 35.55292892456055 +sub-10080_ses-V1_task-rest_run-01_bold 0.0004990045248868778 0.007397858167420815 8 34.648740080861664 1.003032336167801 0.9990869543990925 0.5294345953336909 478.0489807128906 0.11313313109810266 8 1.8099547511312217 2.722965262833989 2.421629070439773 2.9309957168660277 2.8162710011961662 0.00187545 -0.03719056397676468 0.126682311296463 442 90 90 54 2.6905590246999234 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 48.54938450887907 4.9979119300842285 22.796527862548828 10.124434471130371 293179.0 6.583710670471191 77.10679092407217 36.530128479003906 0.2277713435228499 85.115478515625 246.57382202148438 238.52490234375 82706.0 113.97624778747559 404.51019287109375 88.65200805664062 35.20634460449219 +sub-10080_ses-V1_task-rest_run-02_bold 0.0004133333333333333 0.006650658526077098 9 35.68743336438635 1.0081052054545445 1.0002374806363639 0.5335314716582106 432.2926940917969 0.11982620805526721 9 2.0408163265306123 2.69138054088501 2.3970707380823004 2.8904498851438407 2.786620999428888 0.00309034 -0.037802938371896744 0.1278306245803833 441 90 90 54 2.699202043923961 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 48.32481210098407 5.513531684875488 23.367563247680664 10.544218063354492 292861.0 6.61904764175415 79.0 37.26066970825195 0.30676079909332676 82.83074188232422 245.18942260742188 236.61451721191406 82936.0 114.88719177246094 402.4053268432617 87.66038513183594 36.33757400512695 +sub-10080_ses-V3_task-cuff_run-01_bold 0.0007842663656884877 0.010282459999999998 7 42.418818780361995 1.0337484559276022 1.0017167342307687 0.519588109059792 515.7346801757812 0.2086689042860963 1 0.22573363431151242 2.7744861028266237 2.434145736609072 2.8101123883361665 3.0792001835346334 0.00677527 -0.024346496909856796 0.12044768780469894 443 90 90 54 2.616054754742381 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 47.88794922949286 3.437093734741211 20.18008041381836 9.264108657836914 296792.0 6.78329610824585 64.63533172607424 31.741872787475586 0.8657420045793676 73.23988342285156 235.22799682617188 221.90293884277344 79743.0 118.10226211547851 394.35869140625 84.8229751586914 30.868255615234375 +sub-10080_ses-V3_task-cuff_run-02_bold 0.0006199774266365687 0.010664576072234764 7 40.84792592825789 1.006427342307692 0.9871036663574664 0.5204443746852179 498.6442565917969 0.18981586620435995 0 0.0 2.7833541585741006 2.4464582361198173 2.8079665550881003 3.0956376845143843 0.00316989 -0.025197168812155724 0.12212307751178741 443 90 90 54 2.6172904153958116 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 48.503589036647085 3.6044297218322754 20.322385787963867 9.354401588439941 296643.0 6.772009372711182 65.25259704589836 32.00381851196289 0.8751197819722702 72.90853881835938 234.1276397705078 220.80926513671875 79708.0 117.7419906616211 391.94718627929683 84.36506652832031 29.240001678466797 +sub-10080_ses-V3_task-rest_run-01_bold 0.00044938914027149317 0.00930632149321267 8 39.87001793621317 1.0071054500000005 0.9871809229251706 0.5204680777365855 506.62591552734375 0.1575566377959184 36 8.144796380090497 2.7854583256603456 2.437149903156364 2.808391555071213 3.11083351875346 0.00592063 -0.02664794959127903 0.12005072832107544 442 90 90 54 2.6121073510803443 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 46.08456500645432 3.5924601554870605 20.310606002807617 9.375566482543945 296409.0 6.807692527770996 65.29910125732411 31.61860466003418 0.8722014580004922 73.41734313964844 236.38458251953125 222.8031768798828 79994.0 118.33405342102051 396.7202728271484 85.2957992553711 31.13897132873535 +sub-10080_ses-V3_task-rest_run-02_bold 0.00144823927765237 0.009863833950338602 7 39.56883002441177 1.0119287742533942 1.0017865937330321 0.5205115049098347 504.1446838378906 0.1654526494434528 49 11.060948081264108 2.789158325555816 2.4468457361044194 2.8085123883997443 3.112116852163286 0.00377168 -0.025558320805430412 0.12363273650407791 443 90 90 54 2.6118813230021196 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 48.887012422474605 3.4538276195526123 20.241044998168945 9.243792533874512 296805.0 6.769752025604248 65.16388397216792 32.035316467285156 0.8893950322317115 72.60568237304688 232.99490356445312 219.6952667236328 79696.0 117.65632629394531 391.31829833984375 84.11327362060547 30.18343734741211 +sub-10082_ses-V1_task-cuff_run-01_bold 0.0016332505643340857 0.017162330541760723 7 56.43378240509045 1.2363206830090494 0.9944045394796394 0.47234185297393855 3812.75927734375 0.2409090697181497 5 1.1286681715575622 2.393057779268903 2.4683415685835848 2.400745737936269 2.3100860312868554 0.0139513 0.022664709016680717 0.01674262061715126 443 90 90 60 2.076861245020143 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 70.18112134858711 24.892995834350586 58.41307830810547 17.882619857788086 309296.0 0.022573363035917282 221.10665893554688 148.81484985351562 12.878147137575269 337.74554443359375 1229.6353759765625 1121.14453125 105913.0 634.812646484375 2138.7305664062496 539.8238525390625 26.130661010742188 +sub-10082_ses-V1_task-cuff_run-02_bold 0.0033402708803611735 0.01782783250564334 7 56.41924932316739 1.2720519744796384 1.2053558764027152 0.47162475253425173 3606.909912109375 0.2521569844714287 0 0.0 2.4212466618396484 2.5054207337768584 2.422070737088889 2.336248514653197 0.020689 0.0225629024207592 0.014657476916909218 443 90 90 60 2.0322777134262924 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 44 50.90238843123905 25.756450653076172 58.69832992553711 18.68397331237793 309309.0 0.14446952939033508 226.86005249023384 141.87918090820312 14.217160531008965 341.69140625 1232.781982421875 1121.171630859375 105831.0 633.8961791992188 2154.914306640625 551.6796875 24.811092376708984 +sub-10082_ses-V1_task-rest_run-01_bold 0.0012644144144144144 0.02032993490990991 6 66.80397973160267 1.2302157348758478 0.9929206401354396 0.47390427179706357 3823.16796875 0.4320998487823381 239 53.828828828828826 2.4440966561517126 2.5013165672732764 2.4706665684911977 2.360306832690663 0.0172219 0.0236183013767004 0.014463353902101517 444 90 90 60 2.1278643966531243 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 49.73153899644763 25.013904571533203 58.057159423828125 18.16216278076172 309280.0 0.0878378376364708 222.3608169555663 143.3256072998047 12.295635808497899 337.27862548828125 1232.7353515625 1127.137451171875 106003.0 639.3831481933594 2130.587280273436 529.7011108398438 23.170101165771484 +sub-10082_ses-V1_task-rest_run-02_bold 0.0026802252252252252 0.013852511936936936 6 55.88701739884875 1.307801275485328 1.0327358619187352 0.47141897263036725 3712.524658203125 0.23940361141521393 94 21.17117117117117 2.3766438977965385 2.4542957358083832 2.3995957379819655 2.2760402195992664 0.0187211 0.023553717881441116 0.01492096297442913 444 90 90 60 2.0554815413596925 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 55.267392946695395 24.883676528930664 56.843589782714844 17.9797306060791 309790.0 0.06756757199764252 219.81114883422816 138.513427734375 13.602806599368765 337.011474609375 1219.198974609375 1110.8896484375 105767.0 624.9953002929688 2120.095532226562 540.44970703125 28.944908142089844 +sub-10082_ses-V3_task-rest_run-01_bold 0.0018163370786516855 0.013928694943820225 5 49.772011576486506 1.1723715336936944 1.0033553694144155 0.4760915190728203 3029.078125 0.19026903432466233 38 8.539325842696629 2.3773022238451955 2.43053323675262 2.3887999050776205 2.3125735297053467 0.0169575 0.019569819793105125 0.010433864779770374 445 90 90 60 2.2354640469445224 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 69.2934677992359 25.190914154052734 53.13350296020508 18.1370792388916 311158.0 0.03820224851369858 200.08415679931616 127.40634155273438 9.673307128335923 301.0148620605469 1101.5638427734375 1014.0089721679688 104439.0 567.5518981933594 1877.6040283203122 453.59893798828125 28.523038864135742 +sub-10082_ses-V3_task-rest_run-02_bold 0.002064431818181818 0.013868195136363635 10 48.94958898441912 1.153757855922552 1.1048156294305238 0.4767295598041783 3151.497802734375 0.20587392902654025 51 11.590909090909092 2.4119272147248623 2.456595735716989 2.4276332368678557 2.3515526715897423 0.00970694 0.018436849117279053 0.011957943439483643 440 90 90 60 2.226282651360795 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 98.04936540553335 25.382822036743164 54.652626037597656 18.204544067382812 311107.0 0.07045454531908035 206.3590850830081 132.24185180664062 10.274573990684035 305.1733703613281 1106.40625 1019.0147705078125 104302.0 570.8276092529296 1885.810186767578 457.7181091308594 27.768875122070312 +sub-10085_ses-V1_task-cuff_run-01_bold 0.0006262528216704287 0.005391483137697517 7 39.11613173518102 1.0781360483031677 0.9945224761312214 0.5519669319628262 467.80596923828125 0.16711745512707496 0 0.0 2.798022203705963 2.643541561621763 2.9520707160285826 2.798454333467543 0.00883359 -0.030267028138041496 0.11844116449356079 443 90 90 54 2.023042599899102 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.327168864147055 6.509393692016602 24.79500389099121 11.408577919006348 256288.0 6.724605083465576 86.69446868896483 35.67692184448242 7.368960913026026 104.27915954589844 294.42083740234375 271.907470703125 112894.0 131.0803649902344 531.5021759033201 134.4046173095703 36.19191360473633 +sub-10085_ses-V1_task-cuff_run-02_bold 0.0027745168539325847 0.006490125123595505 5 40.63353659635137 1.1020842078828827 1.033104134527027 0.5525889523252157 473.3238830566406 0.20574609708648034 3 0.6741573033707865 2.799012481715785 2.6443998949209893 2.9459873829369787 2.806650167289386 0.016439 -0.028357667848467827 0.11801993101835251 445 90 90 54 2.0530783405422297 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 25.369033565958397 6.543440818786621 24.482769012451172 11.305618286132812 256750.0 6.557303428649902 85.36651573181146 35.03649139404297 7.407805462660342 101.67320251464844 290.2859191894531 268.60675048828125 112701.0 130.05393981933594 519.438232421875 130.8306427001953 33.430206298828125 +sub-10085_ses-V1_task-rest_run-01_bold 0.0007437471783295711 0.005951808284424379 7 38.67451682468325 1.078972889773755 0.9967316271719461 0.5497270220295063 491.4129333496094 0.15730520510478704 48 10.835214446952596 2.8166124814543525 2.6579082277175496 2.9720540485678493 2.8198751680776577 0.0145443 -0.02893074043095112 0.11655722558498383 443 90 90 54 2.020569421774228 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 26.72934083007559 6.161333084106445 24.532102584838867 11.185101509094238 257023.0 6.794582366943359 85.7331832885742 35.43025207519531 7.346795972854613 105.11083221435547 295.6905822753906 273.0857849121094 112365.0 130.49254760742187 532.7919067382807 135.15228271484375 34.71556091308594 +sub-10085_ses-V1_task-rest_run-02_bold 0.001389123595505618 0.008559519235955056 5 41.10986426081083 1.0716554375900897 1.0054030645720715 0.5532227389505142 467.3776550292969 0.23690737149332422 124 27.865168539325843 2.803370815025911 2.641154061716634 2.957779049135087 2.8111793342260123 0.0084211 -0.03035377711057663 0.12016560137271881 445 90 90 54 2.045299302936104 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 24.869254784909582 6.37019157409668 24.7243709564209 11.310111999511719 256750.0 6.7842698097229 86.6698909759521 35.30553436279297 7.627036651136876 102.07301330566406 291.2439270019531 269.2921447753906 112549.0 130.43551025390624 520.264733886718 131.66334533691406 30.656679153442383 +sub-10085_ses-V3_task-cuff_run-01_bold 0.0034534537246049663 0.006747807471783295 7 37.52179691257919 1.0800776666742091 1.041004136108597 0.5595768051306937 487.40740966796875 0.17455474322977613 2 0.45146726862302483 2.7211416506591277 2.5144665667507424 2.8669998860756603 2.7819584991509814 0.00946539 -0.028991417959332466 0.11793695390224457 443 90 90 54 2.2844631450189574 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 31.274464726813854 5.003364562988281 23.691585540771484 10.92099380493164 257377.0 7.365688800811768 78.93905487060528 34.92085266113281 5.74184379458335 94.90660858154297 278.80548095703125 261.3589172363281 112011.0 131.2110595703125 475.8634338378906 114.4066390991211 34.612403869628906 +sub-10085_ses-V3_task-cuff_run-02_bold 0.003100927601809955 0.007824421357466062 8 38.864868242040814 1.0791459419274374 1.034483976462585 0.5609714767574494 472.7285461425781 0.1822800941894393 4 0.9049773755656109 2.7116735953713516 2.501654067259865 2.854683219898414 2.7786834989557763 0.0163651 -0.02942470833659172 0.11966170370578766 442 90 90 54 2.295219003246352 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 30.95463209097897 5.0884785652160645 23.83055305480957 10.990950584411621 257548.0 7.384615898132324 78.94559097290036 35.10061264038086 5.6983778965568845 93.88026428222656 277.252197265625 259.6221923828125 111769.0 131.29095458984375 472.34392089843743 113.11383819580078 32.92854309082031 +sub-10085_ses-V3_task-rest_run-01_bold 0.0022163513513513513 0.006604147927927928 6 37.63048456609482 1.0700756433860046 1.0187874383069981 0.5583630611118596 500.4088134765625 0.15627344131935322 36 8.108108108108109 2.7283110948206164 2.527045732917558 2.8758707190564983 2.782016832487792 0.02031 -0.029331892728805542 0.11721889674663544 444 90 90 54 2.277432469173975 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 31.40605461819448 4.9119553565979 23.73171043395996 10.885135650634766 257358.0 7.394144535064697 79.37680435180661 35.18637466430664 5.653924450015449 96.25897216796875 282.0193176269531 264.3648681640625 111961.0 132.3896484375 481.41668701171875 116.07970428466797 35.09219741821289 +sub-10085_ses-V3_task-rest_run-02_bold 0.002751846846846847 0.007116489977477478 6 38.69899088426638 1.0836346772460501 1.0331493649209942 0.5619987795089312 461.97271728515625 0.17154942887680485 50 11.26126126126126 2.7030027617305024 2.4998457339983884 2.8501707200777244 2.7589918311153947 0.0156211 -0.02987714111804962 0.11880949139595032 444 90 90 54 2.296979145893313 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.543063061456202 5.1456990242004395 23.842374801635742 11.038288116455078 257110.0 7.385135173797607 79.39437141418452 34.844879150390625 5.796891048636606 93.49744415283203 275.8152160644531 258.4211730957031 112079.0 130.6927947998047 469.1997894287108 112.5042953491211 33.85499572753906 +sub-10086_ses-V1_task-rest_run-01_bold 0.0009934240362811791 0.0076661390702947845 9 34.634698599227306 0.9873079966363639 0.9856780464772723 0.5554568510151541 329.31256103515625 0.11228670528170873 17 3.854875283446712 2.7218791476215816 2.5485832320617345 2.9259415504001955 2.691112660402814 0.0134371 -0.020247885957360268 0.13913048803806305 441 90 90 54 1.8342167916199466 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 22.179662339569518 8.102202415466309 31.071090698242188 12.571428298950195 265145.0 6.684807300567627 124.34013977050769 49.97983169555664 3.6336386265422096 107.19618225097656 279.25872802734375 250.56689453125 104522.0 115.3019302368164 537.6542022705078 136.6063690185547 32.85834503173828 +sub-10086_ses-V1_task-rest_run-02_bold 0.001787941176470588 0.006842138552036199 8 34.71099198714287 1.0084771183900236 1.0134715555102038 0.5565841385804385 330.2491455078125 0.12399005944651223 18 4.072398190045249 2.720606925722135 2.5431582322773045 2.9193290506629523 2.6993334942261473 0.00882527 -0.02037864550948143 0.14063583314418793 442 90 90 54 1.834259171996008 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 22.433822792565046 8.100643157958984 30.9991455078125 12.450226783752441 264564.0 6.4095025062561035 124.14310226440404 49.996158599853516 3.61795861467274 106.1368637084961 276.0820617675781 247.87330627441406 105125.0 113.21267700195312 531.441662597656 135.13473510742188 33.16481018066406 +sub-10087_ses-V1_task-cuff_run-01_bold 0.0012650226244343892 0.02037090520361991 8 55.89234227963716 1.0586513921768714 0.979901641814059 0.46086369920335485 2690.112060546875 0.3967984026610814 12 2.7149321266968327 2.6607952405965443 2.5524748985737604 2.7063165591273086 2.7235942640885646 0.0189959 0.00977286882698536 0.024350382387638092 442 90 90 60 2.69199632913156 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 195.29779489644454 20.930856704711914 36.51788330078125 15.959277153015137 322018.0 0.18099547922611237 114.4550964355468 91.55121612548828 5.2417283304417275 225.37232971191406 846.1809692382812 811.6414794921875 95316.0 427.9151840209961 1369.151123046875 301.5001220703125 21.932567596435547 +sub-10087_ses-V1_task-rest_run-01_bold 0.001891764705882353 0.023531796832579187 8 55.37328320460313 1.0576549660997727 0.9929666956009066 0.45952080747291035 2967.592529296875 0.4160092476571349 269 60.85972850678733 2.669789691687134 2.540983232363731 2.723641558438875 2.7447442842587955 0.0061821 0.009348448365926743 0.023767683655023575 442 90 90 60 2.6979340196568344 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 189.84855850711722 20.571945190429688 36.256038665771484 15.174208641052246 322384.0 0.11312218010425568 114.35486946105952 91.86431884765625 5.079816144998134 226.95550537109375 859.8372192382812 821.5430297851562 94723.0 442.97083740234376 1394.1743041992183 304.506591796875 21.47995948791504 +sub-10087_ses-V1_task-rest_run-02_bold 0.001102635135135135 0.017681442792792795 6 54.7823208621896 1.065801738081265 1.0055203633182834 0.4596967393948953 2918.231201171875 0.3565782492327989 250 56.306306306306304 2.6448119037591167 2.532979066015122 2.6903623930946035 2.7110942521676242 0.00580992 0.010538899339735508 0.02312765084207058 444 90 90 60 2.669087278313951 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 192.21145245506816 20.332355499267578 36.085086822509766 14.943694114685059 322108.0 0.10585585981607437 114.39561271667472 92.1210708618164 5.387760714709481 226.2104034423828 848.069091796875 811.3851318359375 95099.0 430.2936950683594 1380.8232666015624 303.99188232421875 23.86109161376953 +sub-10087_ses-V3_task-cuff_run-01_bold 0.0017723755656108599 0.031189911085972844 8 63.01075061274376 1.0517060548526083 0.9670232300680272 0.46579733525091843 2925.415283203125 0.631628797446192 85 19.23076923076923 2.6346369031037953 2.5426040656326583 2.6534123945628645 2.7078942491158635 0.00875451 -0.004046705551445484 0.022965706884860992 442 90 90 60 2.945051527322325 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 19 149.13897294059973 23.634428024291992 40.44874572753906 17.59276008605957 322526.0 0.2601810097694397 139.9598503112793 87.65518951416016 2.7851903373407287 251.50567626953125 968.8374633789062 931.9151611328125 95318.0 523.9653869628906 1535.1352478027343 316.4325866699219 18.131027221679688 +sub-10087_ses-V3_task-cuff_run-02_bold 0.004493977528089888 0.029309192808988763 5 63.34807525680178 1.0853737963288295 1.0183042408558556 0.4647622842656924 3236.87841796875 0.6875824233800373 93 20.89887640449438 2.6246355069037275 2.5339873993083875 2.655304061154363 2.6846150602484324 0.0106498 -0.0017218039138242602 0.02287907712161541 445 90 90 60 2.942442855204352 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 12 150.07772743544567 22.94535255432129 39.8961296081543 16.916854858398438 322244.0 0.24494382739067078 138.03370666503906 89.03060913085938 2.92467964203332 247.0814971923828 965.6729125976562 926.6831665039062 95667.0 526.6528015136719 1534.3642700195312 314.9350280761719 18.48577117919922 +sub-10087_ses-V3_task-rest_run-01_bold 0.0014453273137697519 0.02866788803611738 7 65.56337322920811 1.0739207516063352 0.9926252716063352 0.46570549119191934 2787.4521484375 0.6750735712345075 365 82.39277652370203 2.6448494049373026 2.5614040648856133 2.6584873943612024 2.7146567555650924 0.00645631 -0.005583256483078003 0.024142147973179817 443 90 90 60 2.9037313929865243 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 109.87089189574002 23.88562774658203 41.194053649902344 17.93905258178711 322836.0 0.32279911637306213 143.32957458496094 86.3994140625 2.7203093357312538 258.1368408203125 976.3489990234375 939.1196899414062 94939.0 518.7092529296875 1559.0822021484373 323.4165344238281 18.750255584716797 +sub-10087_ses-V3_task-rest_run-02_bold 0.010312460496613997 0.04001286297968397 7 71.0460485396606 1.0777225230769232 1.0139317304524886 0.4670100298703531 2712.844482421875 1.0104057180566592 318 71.78329571106094 2.661146633687951 2.5663457313559164 2.6807665601425743 2.7363276095653624 0.00952317 -0.004644547123461962 0.02418135106563568 443 90 90 60 2.956638844860347 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 25 126.97625351057505 24.404369354248047 41.21160888671875 18.36568832397461 322524.0 0.3340857923030853 142.02866744995106 87.1519546508789 2.8439699656885784 250.2017059326172 970.066162109375 932.3724975585938 95114.0 528.3801361083985 1539.4469604492183 315.3471374511719 15.431239128112793 +sub-10088_ses-V1_task-cuff_run-01_bold 0.002307909090909091 0.014158257204545454 10 39.52008229132116 1.0735943453758543 1.0095897134396357 0.431202186954174 7493.81884765625 0.2387269711132786 4 0.9090909090909091 2.3757549862634186 2.362024906141563 2.375049905623996 2.390190147024697 0.00832363 -0.0020575847011059523 0.02620387077331543 440 90 90 60 3.4643403413478717 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 19 255.94409648676543 15.611127853393555 33.970401763916016 10.94772720336914 336757.0 0.015909090638160706 121.6322677612305 96.57035064697266 1.6723336278155365 213.21673583984375 965.9292602539062 947.5443115234375 81902.0 521.8526885986329 1440.8170959472654 273.511962890625 31.296043395996094 +sub-10088_ses-V1_task-rest_run-01_bold 0.003804547511312217 0.013621169864253393 8 40.012600771315185 1.1111226338548756 1.0565508191609978 0.4320170422091322 7360.80712890625 0.25304706069107746 113 25.56561085972851 2.357093881499978 2.35287073983865 2.3564374063635904 2.3619734982976923 0.00911997 -0.001004060497507453 0.025997219607234 442 90 90 60 3.4639884825238947 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 233.66872767436752 15.58409595489502 34.015438079833984 11.083710670471191 336837.0 0.05429864674806595 121.5470672607423 94.83658599853516 1.724275764568917 211.52066040039062 962.9750366210938 944.0057373046875 81868.0 519.9770385742188 1436.920764160156 272.5182189941406 31.43305778503418 +sub-10088_ses-V1_task-rest_run-02_bold 0.002042302483069977 0.013053356433408578 7 39.045595527149324 1.0827303474434398 1.0069738269230768 0.4313292280957715 7290.3984375 0.22737277205647993 89 20.090293453724605 2.3425147190874243 2.333349907281005 2.3507165732575825 2.3434776767236856 0.00569578 -0.002889984054490924 0.026850230991840363 443 90 90 60 3.485404030962888 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 25 272.3273484052101 15.774822235107422 33.90266036987305 11.050790786743164 337192.0 0.011286681517958641 122.18160400390627 96.71683502197266 1.7427373195010576 209.3949432373047 963.0662231445312 943.9300537109375 81627.0 525.9146789550782 1432.453527832031 270.8220520019531 32.38969802856445 +sub-10088_ses-V3_task-rest_run-01_bold 0.002255887640449438 0.011442743033707866 5 36.65804620283783 1.0603323206756747 1.036645867252253 0.43041929257589134 7029.00048828125 0.1994815552592402 58 13.03370786516854 2.4408243351996863 2.4282957368415303 2.414604070718921 2.479573198038608 0.0152172 -0.00379011919721961 0.024848949164152145 445 90 90 60 3.125422740195799 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 19 325.2035828394732 16.32195281982422 33.418540954589844 11.451685905456543 335315.0 0.033707864582538605 121.883821105957 87.99463653564453 1.9489542971436453 238.90211486816406 997.0 958.4089965820312 83155.0 550.3519348144531 1561.6072021484374 306.6475524902344 32.21160125732422 +sub-10088_ses-V3_task-rest_run-02_bold 0.0017625507900677201 0.010005648735891647 7 37.02840926319005 1.0721718964027156 1.0123994124660634 0.4296462940339016 7181.693359375 0.1889628937697891 47 10.609480812641083 2.4351062782542923 2.421758237101307 2.40887073761341 2.474689860048161 0.00915207 -0.004120944999158382 0.02430924028158188 443 90 90 60 3.112140829487361 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 346.3093082010148 16.37221336364746 33.28443145751953 11.295711517333984 335387.0 0.004514672793447971 122.56750030517583 88.48152923583984 1.9248653944916096 239.34487915039062 995.2299194335938 957.44921875 83115.0 546.0901062011719 1563.951733398438 307.6478576660156 33.77882385253906 +sub-10089_ses-V1_task-rest_run-01_bold 0.001370158013544018 0.01689445372460497 7 43.97883678445701 1.1303663305882345 1.0012648254072396 0.4328787823317158 11803.9150390625 0.21093041291901402 82 18.510158013544018 2.408917479263354 2.382416571997938 2.4255457369508053 2.4187901288413185 0.00985587 0.0124159911647439 0.023737965151667595 443 90 90 60 3.379881158064567 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 104.82206206267635 13.299912452697754 40.00776290893555 9.26185131072998 336906.0 0.015801355242729187 166.87472534179688 119.46398162841797 1.940178001874835 234.4285125732422 1030.564453125 996.0383911132812 82427.0 601.1110900878907 1562.593273925781 294.6944885253906 30.60693359375 +sub-10089_ses-V3_task-rest_run-01_bold 0.0020098871331828442 0.0202856079006772 7 41.41010981796378 1.0430295921040729 0.9852904486651579 0.43586740512866967 9771.16015625 0.2691899367802089 96 21.670428893905193 2.501300785172441 2.4729082350687888 2.492649900950992 2.5383442194975414 0.00688321 0.004012919031083584 0.02236417680978775 443 90 90 60 3.259548020733793 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 86.00687647747002 15.371539115905762 43.00601577758789 10.819413185119629 336873.0 0.06320542097091675 181.25102539062397 115.20220947265625 1.7406446931642394 258.6019592285156 1091.0047607421875 1051.1512451171875 82197.0 625.4885131835938 1685.5679931640625 322.4817810058594 25.511911392211914 +sub-10089_ses-V3_task-rest_run-02_bold 0.0017875113122171942 0.018547076923076923 8 42.099003387369606 1.0428933958730162 0.9528230068027214 0.4361808891751254 9659.7021484375 0.2703047288968954 87 19.683257918552037 2.4925452331668914 2.4638332354293966 2.4915749009937085 2.5222275630775686 0.00591972 0.00309227523393929 0.0234836358577013 442 90 90 60 3.2404931892104645 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 99.57767567865349 15.459985733032227 43.39090347290039 10.760181427001953 336760.0 0.03846153989434242 185.89401626586906 116.98511505126953 1.7580843327686617 260.11279296875 1089.6395263671875 1050.179931640625 82284.0 622.9225311279297 1689.6094055175772 324.07830810546875 26.418861389160156 +sub-10090_ses-V1_task-cuff_run-01_bold 0.001819908675799087 0.022444126027397263 12 46.31860103677344 1.0455856304805493 0.9773949421739131 0.4438176130243387 7306.453125 0.3260996215663619 2 0.45662100456621 2.4049147141690495 2.4579999023278596 2.4009915712598335 2.355752668919456 0.00602275 -0.0034791489597409964 0.02876952476799488 438 90 90 60 2.7371393182116006 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 101.7703644252557 16.29846954345703 34.87674331665039 11.35616397857666 327009.0 0.029680363833904266 131.48675537109364 81.36087036132812 6.072880588638682 231.90713500976562 1024.691650390625 962.9840087890625 90772.0 579.673162841797 1672.4384704589843 351.81939697265625 24.957162857055664 +sub-10090_ses-V1_task-rest_run-01_bold 0.0015225000000000002 0.018052892136363637 10 43.535726386423654 1.0702812494305243 0.9885960969931663 0.44369493139981075 7419.83056640625 0.28631051451687284 207 47.04545454545455 2.367639726498263 2.429908236777455 2.3718582390841547 2.301152703633179 0.00441481 -0.003932173829525709 0.028629913926124573 440 90 90 60 2.7358596398507338 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 92.71443665962143 16.156993865966797 35.235591888427734 11.263635635375977 327462.0 0.029545454308390617 135.64078598022462 81.9950180053711 6.152176455157727 234.8389892578125 1026.4482421875 966.1466064453125 90402.0 576.9662231445312 1670.8826171874994 353.1399230957031 28.69672966003418 +sub-10090_ses-V1_task-rest_run-02_bold 0.004483877551020408 0.01894019426303855 9 42.94086862024999 1.099471772181818 1.0481241251818176 0.44482372537478404 7505.6298828125 0.2923608059822533 222 50.34013605442177 2.4075216600596234 2.4640457354209526 2.4105665708793573 2.347952673878559 0.00443078 -0.00466538080945611 0.028011370450258255 441 90 90 60 2.6884986053509285 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 88.21234468002947 16.180871963500977 35.95144271850586 11.258503913879395 327144.0 0.020408162847161293 141.15385131835933 81.38130950927734 6.383719160512076 234.63111877441406 1027.451171875 964.7573852539062 90755.0 576.8498718261718 1679.8093017578126 358.84417724609375 26.938385009765625 +sub-10090_ses-V3_task-cuff_run-01_bold 0.0015054318181818183 0.012938294727272728 10 46.677581587471515 1.0988443173348519 0.9763462073576312 0.43219974074350115 8509.404296875 0.3254998147401469 5 1.1363636363636365 2.407192374737306 2.4303874034250814 2.36402490606209 2.4271648147247453 0.0107441 -0.009064112789928913 0.027654455974698067 440 90 90 60 2.5714709320354614 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 92.81190872724561 16.207538604736328 36.56843185424805 11.304545402526855 331807.0 0.029545454308390617 144.8993118286133 83.9852066040039 3.882157556239659 290.7416076660156 1119.4119873046875 1037.6680908203125 87051.0 605.5670166015625 1886.3192749023438 403.52862548828125 30.443702697753906 +sub-10090_ses-V3_task-cuff_run-02_bold 0.0008559225512528471 0.00885454047835991 11 43.660814555182704 1.1197287557990863 1.0005388646575337 0.43213153970959095 8988.091796875 0.26295610371918027 0 0.0 2.3919465308987538 2.4284207368365633 2.3538082398013973 2.393610616058301 0.00741528 -0.010043350048363209 0.02821694128215313 439 90 90 60 2.5475529740235903 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 87.82751256905237 15.997920036315918 37.07097244262695 11.015945434570312 331876.0 0.00455580884590745 149.0711898803711 85.45487976074219 4.099615417362949 291.63531494140625 1124.807373046875 1041.65380859375 87060.0 608.0969757080078 1904.4464599609378 408.8817138671875 35.182701110839844 +sub-10090_ses-V3_task-rest_run-01_bold 0.0015547533632286994 0.013524447466367715 4 44.699108243730336 1.107908332853933 0.992588813101124 0.4319288087931048 8106.052734375 0.2763789237629468 181 40.582959641255606 2.403400704697454 2.435362403227393 2.3583165729555855 2.416523137909385 0.00698156 -0.009352476336061954 0.027351150289177895 446 90 90 60 2.5951162820558142 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 94.21424350203186 16.67428970336914 36.25752258300781 11.683856964111328 332209.0 0.04260089993476868 142.47803344726552 81.84615325927734 3.94610977221227 289.3018493652344 1122.53076171875 1041.2073974609375 86676.0 614.6564178466797 1884.2691345214844 401.2156982421875 29.72740936279297 +sub-10090_ses-V3_task-rest_run-02_bold 0.0017395227272727274 0.010067601590909091 10 44.699422215034126 1.1320257133485199 0.98774133974943 0.43202696479092856 8204.130859375 0.2663700644426524 191 43.40909090909091 2.4091159822895194 2.444795736185879 2.3659040726540854 2.4166481380285942 0.0113943 -0.009846680797636509 0.028455214574933052 440 90 90 60 2.5093447478784916 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 15 83.75417826368981 16.554601669311523 37.402008056640625 11.440908432006836 332205.0 0.011363635770976543 150.82954406738267 85.203369140625 4.101269949582028 294.41107177734375 1121.9857177734375 1037.3931884765625 86992.0 600.647006225586 1904.0016540527345 413.40960693359375 33.902061462402344 +sub-10092_ses-V1_task-cuff_run-01_bold 0.0003442760180995475 0.006650135022624434 8 41.436544336326556 1.0409809361678006 0.988605694489796 0.5579814249322852 453.5856018066406 0.17922949676844088 0 0.0 2.7248874810401276 2.534520732620528 2.942845716395151 2.697295994104703 0.00524915 -0.019018711522221565 0.14516869187355042 442 90 90 54 2.226721465400163 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.24508097618269 5.356823444366455 26.168569564819336 10.278281211853027 268440.0 6.475113391876221 103.78846931457493 43.533145904541016 2.913923413125347 91.66809844970703 256.0921325683594 237.85861206054688 102510.0 116.20566444396974 449.76846618652337 106.819580078125 33.65814971923828 +sub-10092_ses-V1_task-cuff_run-02_bold 0.00047671171171171175 0.008028902882882882 6 42.44431956799096 1.0279325348307007 0.9752545045146721 0.5587031458992283 445.2874755859375 0.20656791345360923 0 0.0 2.7069208146872676 2.520220733188759 2.915329050821898 2.685212660051147 0.0134235 -0.01874571107327938 0.1460966318845749 444 90 90 54 2.221566849754422 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 26.379372830119987 5.399477958679199 25.951923370361328 10.254505157470703 268358.0 6.351351737976074 102.09335899353025 43.251502990722656 3.100735702671269 89.49205017089844 251.00062561035156 233.03265380859375 102624.0 114.5685863494873 441.15687255859353 104.8951187133789 31.29220199584961 +sub-10092_ses-V1_task-rest_run-01_bold 0.0004529411764705882 0.006613848144796381 8 40.7048802799093 1.039018387800453 0.9926229760770975 0.557657312704711 440.2651062011719 0.16795908941186136 16 3.6199095022624435 2.7278222028092163 2.545162398864333 2.9511707160643454 2.6871334934989703 0.00289187 -0.02047116309404373 0.1421193927526474 442 90 90 54 2.1923717545969987 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.41595040230325 5.548018455505371 26.197263717651367 10.443439483642578 267664.0 6.427602291107178 103.26855506896962 43.49350357055664 3.031160640711372 92.3037338256836 256.3872375488281 238.10182189941406 103209.0 113.89276428222657 453.6764831542969 108.6041488647461 33.87321090698242 +sub-10092_ses-V1_task-rest_run-02_bold 0.0006611111111111111 0.007162550592592592 8 42.313551495315984 1.047111195167287 0.9963410818587356 0.5587349773351178 446.76519775390625 0.19561588571374655 33 12.222222222222221 2.6797972039382825 2.4881457344633047 2.8876457185886015 2.663600158762941 0.0043908 -0.0172345582395792 0.14642085134983063 270 90 90 54 2.2369680418855915 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 24.99088840069555 5.260492324829102 25.901914596557617 10.151851654052734 269141.0 6.429629325866699 102.75184631347656 43.03215026855469 3.0628419956610013 89.02751159667969 250.54147338867188 232.8222198486328 101940.0 115.33314323425293 439.48516845703125 104.078857421875 32.761474609375 +sub-10092_ses-V3_task-cuff_run-01_bold 0.0014531828442437926 0.006652256952595936 7 41.50951483889143 1.0641701010633482 1.022341236945701 0.5629578720406497 380.4150695800781 0.15059019880412428 0 0.0 2.6796333177724705 2.4657290686873963 2.8275332209772577 2.7456376636527575 0.0051148 -0.0225682333111763 0.14294645190238953 443 90 90 54 2.230994097141177 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.514642303734234 5.324650287628174 26.888975143432617 10.848758697509766 269811.0 7.05643367767334 103.62641143798828 44.96506881713867 2.2709048386507993 90.63284301757812 246.08685302734375 228.6162567138672 101028.0 113.55304718017578 435.8306060791015 102.4723129272461 32.40727615356445 +sub-10092_ses-V3_task-cuff_run-02_bold 0.0008430769230769231 0.006696077126696832 8 42.27077657990927 1.0580178562131504 1.0125549636281193 0.5650362942786805 363.4239807128906 0.14970671336068336 0 0.0 2.6708472067960773 2.456249902397398 2.817129054724016 2.739162663266818 0.0110507 -0.022038359194993973 0.14430612325668335 442 90 90 54 2.233559305863928 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 28.551231994797327 5.563112735748291 27.186073303222656 11.048643112182617 269536.0 7.058824062347412 105.61199760437012 45.23352813720703 2.228595104460645 90.13348388671875 244.45596313476562 227.37896728515625 101188.0 112.95565872192384 433.51278991699223 101.80067443847656 32.15290069580078 +sub-10092_ses-V3_task-rest_run-01_bold 0.0016208144796380091 0.007814019819004524 8 41.795373842993214 1.0537810907936513 1.017048797482993 0.5625065477532174 387.5614929199219 0.1723656908712603 18 4.072398190045249 2.703312484607659 2.4833832346525497 2.847412386853997 2.7791418323164288 0.00817656 -0.023273834958672523 0.14104916155338287 442 90 90 54 2.224021238150115 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 27.741177312125313 5.293091773986816 26.885366439819336 10.871041297912598 269774.0 7.070136070251465 104.04084129333481 44.41051483154297 2.583747819597173 91.352783203125 248.30035400390625 230.8133544921875 101116.0 114.22568321228027 440.6221923828125 103.78147888183594 31.71124267578125 +sub-10092_ses-V3_task-rest_run-02_bold 0.0022888009049773753 0.008268453868778279 8 41.40134128902492 1.0605952116780053 1.0354289692063487 0.566327400055096 374.19549560546875 0.16787915238180054 28 6.334841628959276 2.707708317882491 2.488224901126826 2.8522498866617725 2.7826501658588745 0.0049215 -0.023103483021259308 0.1504487842321396 442 90 90 54 2.235724300932279 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 12 27.54670007858934 5.393720626831055 27.293540954589844 10.839366912841797 269354.0 6.914027214050293 105.92319602966293 45.06521224975586 2.012153330265603 89.7276382446289 243.03514099121094 225.9886932373047 101439.0 111.95430145263673 431.7004821777343 101.08025360107422 30.33572769165039 +sub-10093_ses-V1_task-cuff_run-01_bold 0.0005183333333333333 0.009463009144144146 6 63.54885711846501 1.0838098358239283 0.9838071335440182 0.5715382629520463 266.7243347167969 0.4616825815154273 15 3.3783783783783785 2.828865268518065 2.4615332355207906 2.910058217698009 3.1150043523353945 0.011593 0.014224414713680744 0.12899097800254822 444 90 90 54 2.1382792271720623 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.70909384817037 8.561694145202637 30.410320281982422 13.328828811645508 267706.0 7.200450420379639 110.32094955444336 47.37247848510742 1.4437305322874572 94.78302001953125 254.69505310058594 232.4481964111328 104086.0 118.84009552001953 464.03096771240234 108.7075424194336 27.05046844482422 +sub-10093_ses-V1_task-cuff_run-02_bold 0.00040426636568848765 0.009126495417607223 7 70.82931546205886 1.1135502891628961 0.9867160847511303 0.5728448865534579 257.1267395019531 0.5195690395651369 17 3.8374717832957113 2.806526379923143 2.4374790698099504 2.885024885359411 3.097075184600066 0.00641958 0.014104874804615974 0.12700483202934265 443 90 90 54 2.149193266113925 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 42.6809758144742 8.842065811157227 30.680328369140625 13.598194122314453 267863.0 7.237020492553711 110.95688934326171 47.71957015991211 1.28864025887452 94.41297912597656 254.6275177001953 232.1851043701172 103872.0 120.36795043945312 463.9127777099609 108.03308868408203 28.088415145874023 +sub-10093_ses-V1_task-rest_run-01_bold 0.0017603393665158373 0.01066434963800905 8 62.674784402947886 1.108274089637188 1.0098921090022677 0.5694321018913119 280.0946044921875 0.4731850915437265 295 66.7420814479638 2.85555137984516 2.476487401593232 2.936616549976009 3.153550187966239 0.00554382 0.014424382708966732 0.13030293583869934 442 90 90 54 2.1497949496942903 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 38.10812547663689 8.268359184265137 29.939023971557617 13.074661254882812 268577.0 7.144796848297119 108.42353363037105 46.59363555908203 1.4221766905614288 95.18505096435547 256.0335388183594 234.01585388183594 103443.0 119.57240295410156 465.24638671875 108.85443878173828 26.215763092041016 +sub-10093_ses-V1_task-rest_run-02_bold 0.0006856207674943567 0.009200775033860046 7 62.239372028981904 1.096906350520362 0.9970663419683252 0.5728871768897109 256.35150146484375 0.4496027459312492 300 67.72009029345372 2.800044434991623 2.4383332364426757 2.8872123852724876 3.0745876832597068 0.00782965 0.015637144446372986 0.12904103100299835 443 90 90 54 2.1393848920856087 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 41.460436177914076 8.714889526367188 30.68752670288086 13.451467514038086 267892.0 7.196388244628906 111.53104057311992 47.92544174194336 1.3958613309107086 93.5545425415039 252.69834899902344 230.34988403320312 103876.0 118.90688514709473 461.146728515625 107.67056274414062 27.23458480834961 +sub-10093_ses-V3_task-cuff_run-01_bold 0.0008206997742663657 0.01424947659142212 7 71.29623041133482 1.1107229154977383 0.9857879790271495 0.5776371660684622 237.44622802734375 0.4990146219444723 10 2.2573363431151243 2.875081936414988 2.509837400268022 2.9077915511214116 3.20761685785553 0.0092872 0.00208120234310627 0.14451538026332855 443 90 90 54 2.010894993253252 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.462175683627557 9.886245727539062 33.94240951538086 14.442438125610352 267560.0 7.318284511566162 131.04074707031248 49.90215301513672 1.319013659824587 101.29219055175781 263.9451904296875 237.51919555664062 104079.0 118.83296203613281 495.4614135742187 118.11559295654297 24.72419548034668 +sub-10093_ses-V3_task-cuff_run-02_bold 0.0010602702702702704 0.013653529684684683 6 73.1313928986231 1.1305713459593687 0.9941493525282173 0.5784952506330816 237.49449157714844 0.5440051962911514 23 5.18018018018018 2.866488879985065 2.5185832332538274 2.909983217700989 3.1709001890003794 0.0062671 0.0021803281269967556 0.14680269360542297 444 90 90 54 2.0113332709552836 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.515755030192363 9.92408561706543 34.04726791381836 14.369369506835938 267238.0 7.191441535949707 132.12387084960938 50.03083038330078 1.2133326863305163 100.38284301757812 261.7154541015625 235.55406188964844 104393.0 117.72297668457031 491.97478637695303 117.11283111572266 25.46234703063965 +sub-10093_ses-V3_task-rest_run-01_bold 0.0011337020316027086 0.01016530934537246 7 69.87971241959279 1.1232616371719444 1.0013692266742085 0.5738825345216036 258.2863464355469 0.48798494563562556 344 77.65237020316027 2.8591166584745396 2.4970624007756554 2.8967415515604995 3.1835460230874633 0.01024 0.0015753426123410463 0.14436651766300201 443 90 90 54 2.031216205570773 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.5832875209689 9.126537322998047 33.17791748046875 13.819413185119629 268539.0 7.291196346282959 129.09706115722656 49.86907958984375 1.1515268175020177 101.36248016357422 264.0302429199219 238.05418395996094 103297.0 118.70158233642579 493.9250549316406 117.1972885131836 26.332237243652344 +sub-10093_ses-V3_task-rest_run-02_bold 0.0012170720720720723 0.013408125472972975 6 72.77032543038368 1.1393207879683962 1.0034841052370205 0.5805492877175471 218.8385772705078 0.5108918546405151 349 78.6036036036036 2.861838880927177 2.507462400362396 2.8842832187222154 3.193771023696921 0.00646232 0.0025854017585515976 0.14329342544078827 444 90 90 54 2.003363554062516 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 22.926769378419213 10.349831581115723 34.46527862548828 14.861486434936523 267244.0 7.378378391265869 133.7316429138183 49.99386978149414 1.3484472034588535 100.10739135742188 260.862548828125 234.63514709472656 104216.0 117.72128677368164 490.84912109375 117.12004089355469 24.983795166015625 +sub-10094_ses-V1_task-rest_run-01_bold 0.0013402027027027026 0.009340958738738737 6 41.863947805823926 1.0638283206546277 0.9984041993453724 0.5584192208594645 353.676025390625 0.1713791095327027 44 9.90990990990991 2.7555054460616066 2.4748040683267885 2.9520623826955803 2.839649887162451 0.00929257 -0.01209019124507904 0.11153849959373474 444 90 90 54 2.4278133745857846 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 4 20.846785981442572 7.766965389251709 27.62754249572754 12.211711883544922 275380.0 6.5720720291137695 101.27038383483884 41.846378326416016 1.4840259672310259 92.44559478759766 262.0748291015625 247.0765838623047 97554.0 121.59662475585938 448.65395812988277 101.76866149902344 31.43645477294922 +sub-10094_ses-V1_task-rest_run-02_bold 0.0012461486486486486 0.013133985923423422 6 42.08220441853274 1.0166433873589167 0.9695080908126413 0.5609519231611173 330.469482421875 0.17490943957826313 46 10.36036036036036 2.77312211202825 2.490437401038909 2.9667540487784527 2.8621748862673884 0.00734808 -0.011267256923019886 0.10861373692750931 444 90 90 54 2.440430828381888 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 20.438771964809437 8.291219711303711 27.674827575683594 12.594594955444336 274665.0 6.569819927215576 100.25585937499994 40.97905349731445 1.5528612092445933 90.73258209228516 260.6298522949219 245.4527130126953 98099.0 122.81959915161133 445.5286163330077 100.57710266113281 27.319185256958008 +sub-10095_ses-V1_task-cuff_run-01_bold 0.0006595491803278689 0.004794595942622951 8 34.85652137843619 1.0277069676954733 0.9990937457201643 0.549249777858564 508.7839660644531 0.10955425551250134 0 0.0 2.6362624850471597 2.4131415707770363 2.7836915560527022 2.711954328311741 0.0117132 -0.012996654026210308 0.10930311679840088 244 90 90 54 2.3667761153065983 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.170561148286094 5.1465744972229 25.161327362060547 10.180327415466309 274219.0 6.5327863693237305 99.97335510253859 40.114383697509766 2.643137090042969 89.63060760498047 261.32122802734375 246.63113403320312 97814.0 117.07909202575685 449.48501281738277 104.20498657226562 38.909942626953125 +sub-10095_ses-V1_task-cuff_run-02_bold 0.0006943764172335601 0.005902665804988663 9 35.51400667500001 1.0299874666136368 0.9989547876590903 0.5504728439407658 511.54754638671875 0.12739972740740313 0 0.0 2.636095818637676 2.4122374041462975 2.7765290563373144 2.719520995429416 0.0143665 -0.012830693274736404 0.11391457915306091 441 90 90 54 2.381733956668674 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 19.465547307571573 5.0596747398376465 25.099443435668945 10.043084144592285 274276.0 6.478457927703857 99.96202278137207 40.204063415527344 2.6380973809902697 87.63492584228516 257.68817138671875 243.39910888671875 97966.0 115.94954681396484 442.27381134033203 102.19355773925781 36.038902282714844 +sub-10095_ses-V1_task-rest_run-01_bold 0.0004221493212669684 0.0067174674886877825 8 35.35821435891153 1.0229003192290256 0.992030759591838 0.5480952630472241 518.89990234375 0.12952668247811955 4 0.9049773755656109 2.6614055405401857 2.436545736513705 2.8074332217759603 2.7402376633308925 0.0242028 -0.013173899613320827 0.11071235686540604 442 90 90 54 2.3688097877300978 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.405697676541326 5.219296455383301 24.902734756469727 10.135746955871582 274056.0 6.364253520965576 98.86029815673828 39.74762725830078 2.6227432689476524 89.66053771972656 261.82733154296875 247.173095703125 97926.0 117.04582214355469 449.4519348144531 104.34431457519531 34.19624328613281 +sub-10095_ses-V1_task-rest_run-02_bold 0.001514617224880383 0.007107146842105263 9 35.401900966115136 1.0272399479856118 1.0085623309112715 0.5524658328785432 495.1225891113281 0.1268694985664215 6 1.4354066985645932 2.6576360963568706 2.4294540701288354 2.7998540554104623 2.743600163531313 0.0178893 -0.014006376266479492 0.115666963160038 418 90 90 54 2.3880575783710998 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 19.217040427916743 5.377093315124512 25.203834533691406 10.155502319335938 273702.0 6.188994884490967 99.50226860046382 39.97364807128906 2.4001795338502347 86.82089233398438 255.05032348632812 240.8947296142578 98315.0 115.06100158691407 437.841128540039 100.8742446899414 33.165313720703125 +sub-10095_ses-V3_task-cuff_run-01_bold 0.0003827828054298642 0.005138492895927603 8 32.01835055782312 1.015042754716554 0.9993760097505672 0.5579026989703086 389.4096984863281 0.09936567107818904 0 0.0 2.6950860942373733 2.4915707343272078 2.8691540526567283 2.7245334957281844 0.0107877 -0.026572326198220253 0.12377104163169861 442 90 90 54 2.258107615029161 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.77131781131883 5.984078407287598 29.95941734313965 12.260181427001953 275653.0 8.004525184631348 123.33122711181633 45.10615158081055 3.0023645953689693 99.67484283447266 277.4680480957031 260.93328857421875 96698.0 119.49604454040528 485.58067016601547 115.5533676147461 39.64176559448242 +sub-10095_ses-V3_task-cuff_run-02_bold 0.0005367268623024831 0.005790596749435666 7 32.56080183398188 1.0153527625791852 0.9982163337104064 0.5589506921551185 383.42431640625 0.10433235753719308 0 0.0 2.6861874833018753 2.4839332346306944 2.8554707198671214 2.719158495407809 0.0112933 -0.025974903255701065 0.12368745356798172 443 90 90 54 2.2771918502128767 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.732883664024644 6.030811309814453 30.081344604492188 12.28668212890625 275878.0 7.997742652893066 123.96614074707031 45.4141731262207 2.9732426043619276 98.14627075195312 276.1263732910156 259.7471923828125 96309.0 120.23882598876955 482.6455993652344 114.06410217285156 37.83685302734375 +sub-10095_ses-V3_task-rest_run-01_bold 0.0003760859728506788 0.0056327930542986425 8 31.68981133478458 1.0012486414739228 0.9882260993877549 0.5557734032767045 408.1656494140625 0.09600111188182592 0 0.0 2.7188708162253157 2.5106790669012438 2.8999332181003403 2.7460001636743643 0.0063244 -0.026225518435239792 0.12429352104663849 442 90 90 54 2.255150196267941 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 16.12783710041069 5.6989617347717285 29.51756477355957 12.029412269592285 275622.0 7.975113391876221 121.40939445495601 44.732181549072266 2.9659781461565027 100.575439453125 278.75244140625 262.32806396484375 96828.0 118.97817192077638 487.84199218749984 116.3233871459961 37.88503646850586 +sub-10095_ses-V3_task-rest_run-02_bold 0.0005320449438202247 0.0053545017752809 5 31.946775058355843 1.010020711081082 0.9995581726576576 0.560458251695582 377.48931884765625 0.10831033472319854 0 0.0 2.6731958168543937 2.474266568348147 2.835133220675261 2.710187661539773 0.00956056 -0.025360828265547752 0.12543506920337677 445 90 90 54 2.2819760820580712 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.277786402838299 6.06034517288208 30.32562255859375 12.312359809875488 275551.0 8.017977714538574 125.38090133666992 45.86906051635742 3.002424940494268 96.80560302734375 274.5390319824219 258.3168640136719 96423.0 119.58584671020509 478.7651733398437 113.19817352294922 38.65339660644531 +sub-10097_ses-V1_task-cuff_run-01_bold 0.006336375 0.013323903812500001 8 43.80725944572325 1.1665059542767295 1.033025091509434 0.4096473972871103 12594.689453125 0.30471109053292805 6 3.75 2.4863133031882643 2.5204082331813087 2.4878665678077314 2.450665108575752 0.0127414 -0.007415705360472202 0.021253958344459534 160 90 90 60 2.534404130482728 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 184.37575062948233 14.409040451049805 43.049678802490234 9.881250381469727 344893.0 0.0062500000931322575 191.08375549316384 122.87980651855469 9.653887895789062 277.8628234863281 1179.297119140625 1106.65625 75698.0 647.8981475830078 1933.6778503417968 436.6505432128906 33.86918258666992 +sub-10097_ses-V1_task-rest_run-01_bold 0.001501700680272109 0.011473265895691608 9 34.77851713786363 1.1029801400681811 1.0496770821818178 0.4093266652092077 13185.623046875 0.13937772666899834 13 2.947845804988662 2.487438307368865 2.519624899879102 2.5132915667974327 2.4293984554300594 0.00600443 -0.006635637953877449 0.017208589240908623 441 90 90 60 2.54508544340458 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 157.38915821822246 13.955286979675293 41.38215637207031 9.637187957763672 344841.0 0.00907029490917921 183.5170135498047 111.67988586425781 9.430943032710344 275.5723571777344 1176.6947021484375 1102.163330078125 75751.0 648.0986633300781 1930.8276977539062 433.05267333984375 35.83406066894531 +sub-10097_ses-V1_task-rest_run-02_bold 0.0030889592760181 0.014944979411764705 8 36.47817496213152 1.0846952758276647 1.0367487956689347 0.4118978709331274 12402.6962890625 0.20127055489749596 63 14.253393665158372 2.5357313483419315 2.5585123983338516 2.5555457317850694 2.493135914906874 0.00761595 -0.006719884928315878 0.01639127917587757 442 90 90 60 2.563401112856488 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 157.67121704997174 14.316168785095215 42.085975646972656 10.029412269592285 344417.0 0.05429864674806595 188.7334869384766 110.23521423339844 9.098584268857172 276.206787109375 1171.306396484375 1099.4525146484375 76230.0 641.2967529296875 1912.4018737792971 428.9010009765625 29.291379928588867 +sub-10100_ses-V1_task-rest_run-01_bold 0.0005163882618510158 0.006121839616252822 7 44.60160959703618 1.0462400494796373 0.9960128945701366 0.567014902228458 325.01025390625 0.25691105658650937 173 39.05191873589165 2.7364610948808825 2.4628332354691334 2.95293321599431 2.7936168331792057 0.00569493 -0.01885303668677807 0.14154478907585144 443 90 90 54 2.1676077420918665 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 26.07203253726381 6.740318298339844 28.64415168762207 12.313770294189453 267971.0 7.446952819824219 106.38826370239258 44.836673736572266 4.099238364406504 92.49531555175781 257.5555419921875 237.94921875 103412.0 119.51591682434082 455.9835311889648 109.77450561523438 33.16987609863281 +sub-10100_ses-V1_task-rest_run-02_bold 0.00029902272727272725 0.005890065613636364 10 44.251296319271106 1.0403551629612762 0.9897719480182227 0.5689297336227569 306.00927734375 0.2407318875458725 145 32.95454545454545 2.706390261737043 2.437266569818395 2.9186498840232735 2.7632543313694593 0.00230968 -0.019116666167974472 0.14130495488643646 440 90 90 54 2.1644810776304846 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 26.768583809274723 6.985077857971191 29.084148406982422 12.59999942779541 267962.0 7.574999809265137 108.06794891357414 45.33871841430664 4.178644893025384 91.94662475585938 256.82781982421875 237.11363220214844 103330.0 119.7134033203125 454.8045349121094 109.54703521728516 34.42667770385742 +sub-10101_ses-V1_task-cuff_run-01_bold 0.0018534013605442177 0.012755850385487528 9 34.511772281181806 0.9742791654772724 0.973951975090909 0.5420068756730219 391.7017822265625 0.16828355583320465 1 0.22675736961451248 2.6469638716854216 2.4209499038000937 2.8631123862301355 2.6568293250260346 0.0183497 -0.005089608486741781 0.08594806492328644 441 90 90 54 2.367606030740359 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 43.53625770296508 5.631198883056641 23.888002395629883 11.687074661254883 277503.0 7.578231334686279 75.40793838500969 37.83836364746094 1.9085313383012332 87.81812286376953 264.4649658203125 246.73809814453125 95212.0 125.9637222290039 458.6005767822265 104.213623046875 29.505260467529297 +sub-10101_ses-V1_task-cuff_run-02_bold 0.0028855756207674943 0.011218953273137697 7 36.804358288009034 1.0149634608823535 1.0061445953619903 0.5406568248983611 398.0494079589844 0.19274277488951777 9 2.0316027088036117 2.6495722055524094 2.4242874036674738 2.848354053483246 2.6760751595065093 0.00803354 -0.0035744376946240664 0.08485550433397293 443 90 90 54 2.361972727498372 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 42.55278714211983 5.682751178741455 23.39127540588379 11.575620651245117 277748.0 7.286681652069092 73.67945861816406 36.715065002441406 1.9266009645523576 87.16897583007812 262.1095886230469 244.84425354003906 95124.0 124.22607727050782 454.36840667724584 103.66036987304688 30.18109893798828 +sub-10101_ses-V1_task-rest_run-01_bold 0.0012963492063492064 0.009877956984126983 9 32.64331303084091 0.967377549045455 0.9739072208181812 0.5396115601223418 398.4902648925781 0.1465178787455063 10 2.2675736961451247 2.6806360940157323 2.4599499022503735 2.881458218834471 2.700500160962353 0.00485402 -0.005967466626316309 0.08419352024793625 441 90 90 54 2.3188366684628616 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 41.40716111300032 5.795933246612549 23.77027130126953 11.773242950439453 276980.0 7.278911590576172 75.62233543395973 37.39128875732422 2.165353844348825 90.12944030761719 268.4040832519531 249.93197631835938 95709.0 126.18458251953126 467.79411010742183 107.78278350830078 32.224815368652344 +sub-10101_ses-V1_task-rest_run-02_bold 0.0008749887133182846 0.007149336997742664 7 34.219473920701354 1.0123019559728503 0.9975242141402717 0.5412858368082762 398.1592712402344 0.12025731331901539 9 2.0316027088036117 2.603613872258261 2.3897040717083584 2.799029055443245 2.6221084896231783 0.0103925 -0.004910575691610575 0.08462651818990707 443 90 90 54 2.351697472344122 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 42.09427229727426 5.341384410858154 23.390403747558594 11.458239555358887 277557.0 7.586907863616943 74.09300384521487 36.70821762084961 1.9838321472529241 86.4896011352539 261.39556884765625 243.2979736328125 95244.0 124.66885223388672 453.50654907226556 103.45578002929688 35.74085998535156 +sub-10101_ses-V3_task-rest_run-01_bold 0.0004879683972911964 0.00817734440180587 7 35.11240412877829 0.9950620518099542 0.9946243059502264 0.5360079573704087 489.2142639160156 0.12829122927929207 7 1.580135440180587 2.6812805435844376 2.4033124045009453 2.784508222686918 2.8560210035654507 0.00715081 -0.01404179260134697 0.1068584993481636 443 90 90 54 2.358176455386239 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 52.67130720143023 4.672037601470947 22.415178298950195 10.067720413208008 278371.0 6.717833042144775 74.47629928588867 38.042259216308594 1.4471745695742015 88.37045288085938 254.8059539794922 236.98533630371094 94754.0 125.02754135131838 444.6667144775387 100.49463653564453 32.994876861572266 +sub-10101_ses-V3_task-rest_run-02_bold 0.0013847178329571108 0.010249025711060948 7 38.42243891950226 1.0004884948190045 0.9940048314253382 0.536652771314569 483.1210021972656 0.1921379097196736 59 13.318284424379232 2.686045821590921 2.40678323769636 2.782708222758443 2.8686460043179594 0.0131115 -0.015195885673165321 0.10748621821403503 443 90 90 54 2.3569045779781757 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 54.99429964442402 4.645264148712158 22.38515853881836 10.058691024780273 278096.0 6.749435901641846 73.93736267089844 37.93608093261719 1.4647763340040507 87.30451965332031 252.87042236328125 235.0474090576172 94966.0 125.01919364929199 441.0829620361328 99.72663879394531 29.656227111816406 +sub-10102_ses-V1_task-cuff_run-01_bold 0.0010576404494382022 0.014505101865168539 5 43.62058550189187 1.2609352756306291 0.999962455810811 0.46220835312578223 320250.625 0.19938409938287285 0 0.0 2.6223786234482636 2.772470985915493 2.642203943661972 2.4524609407673257 0.00668708 -0.02333478257060051 0.01958012580871582 445 96 96 54 4.333521633265665 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 22.57801223406656 53.2193489074707 755.106201171875 36.13666915893555 338765.0 0.2390356868505478 3579.1043457031246 1469.0389404296875 2.2535474963182267 3334.334716796875 20392.07421875 20154.380859375 92349.0 12737.001171875001 28040.963281249988 4650.78369140625 41.84286117553711 +sub-10102_ses-V1_task-cuff_run-02_bold 0.0006968161434977577 0.021776168834080716 4 43.666250936314604 1.1940885488539323 0.962242525505618 0.46292046783716473 261858.6875 0.22091967591636982 0 0.0 2.665312490998865 2.8077025352112677 2.6904698591549296 2.4977650786303975 0.00644156 -0.02318587340414524 0.020243914797902107 446 96 96 54 4.3132965893850965 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 21.587178668553346 58.00233459472656 754.4488525390625 39.44825744628906 338399.0 0.3123328030109406 3563.6854492187485 1451.3515625 2.3194794421991345 3299.65576171875 20213.05859375 20011.580078125 92692.0 12491.7580078125 27743.27578125 4639.484375 35.228233337402344 +sub-10102_ses-V1_task-rest_run-01_bold 0.0009112556053811658 0.011341391278026906 4 44.26932397925843 1.2888825822696632 1.0123764899550558 0.46181092811050867 378594.71875 0.216897732012882 117 26.233183856502244 2.6262157830038 2.777550422535211 2.6483109859154927 2.4527859405606964 0.00826898 -0.023938369005918503 0.02070620097219944 446 96 96 54 4.268124251909808 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 23.3652340504006 49.06343078613281 758.5532836914062 33.211708068847656 338919.0 0.12226514592766763 3615.821582031245 1485.3807373046875 2.3348187163880567 3381.81005859375 20508.810546875 20277.666015625 92271.0 12700.7109375 28322.322265625 4750.92919921875 48.007911682128906 +sub-10102_ses-V1_task-rest_run-02_bold 0.0009147085201793722 0.012937626905829594 4 45.05433635921347 1.2851002321797753 1.0078480661123592 0.46368497806636005 357904.96875 0.21137066981445254 96 21.524663677130047 2.623251303930006 2.7713261971830985 2.6483876056338027 2.450040108973116 0.0112667 -0.024042364209890366 0.021486712619662285 446 96 96 54 4.272184950169099 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 22.85220189841737 49.72124481201172 758.9009399414062 33.74358367919922 338281.0 0.20976956188678741 3611.72412109375 1475.529541015625 2.3466819888931987 3318.532958984375 20293.599609375 20092.490234375 92851.0 12436.8583984375 27938.2861328125 4703.0693359375 44.534141540527344 +sub-10102_ses-V3_task-cuff_run-01_bold 0.0007529596412556054 0.011318592578475336 4 39.49782266514604 1.2307698496404473 1.007966146449438 0.4462283533713134 827911.0 0.20377066842825536 0 0.0 2.5364098544814806 2.6979830985915494 2.6185104225352114 2.2927360423176815 0.0121013 -0.008141230791807175 0.02621498890221119 446 96 96 54 4.501621023134087 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 42.80406654459344 31.104759216308594 559.5419311523438 21.14043426513672 338433.0 0.11380633711814883 2781.351171874997 1220.063720703125 2.447596894689375 3248.22802734375 19807.40234375 19666.845703125 91468.0 12734.10712890625 26887.53642578125 4368.8125 47.17470932006836 +sub-10102_ses-V3_task-cuff_run-02_bold 0.0008764044943820225 0.011503622022471911 5 39.570541150112554 1.2295019302477477 1.012227171576576 0.44720455626663697 805902.625 0.21684690851112226 1 0.2247191011235955 2.531810903542262 2.6885814084507045 2.6166985915492957 2.2901527106267863 0.00817114 -0.00797097384929657 0.026319215074181557 445 96 96 54 4.5477828468594526 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 49.710510855548435 30.894521713256836 557.7701416015625 21.02046012878418 338021.0 0.1415964961051941 2792.46044921875 1219.4271240234375 2.484446979576684 3164.1337890625 19665.23828125 19522.5234375 91791.0 12722.66845703125 26622.5224609375 4292.73291015625 46.74707794189453 +sub-10102_ses-V3_task-rest_run-01_bold 0.0009149438202247191 0.01175220393258427 5 39.96881397349099 1.2388953797972972 1.0100740388288285 0.44553396765689485 955677.1875 0.21145987198732785 98 22.02247191011236 2.540828978585458 2.706884507042253 2.625099718309859 2.290502710404262 0.0144469 -0.008501271717250347 0.025852583348751068 445 96 96 54 4.509740541618642 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 31.269280959260556 28.39728546142578 551.6715698242188 19.302391052246094 338524.0 0.12477663382887841 2772.1413208007802 1191.9095458984375 2.5097732016934904 3211.83203125 19766.322265625 19624.61328125 91384.0 12709.848046875 26823.363281249996 4351.58203125 47.06050109863281 +sub-10102_ses-V3_task-rest_run-02_bold 0.0006266816143497757 0.01259603639013453 4 40.036315763797745 1.2208142124943817 0.9971442573707864 0.4483893387006457 747116.5 0.21177485072418933 99 22.19730941704036 2.547136645700919 2.706816901408451 2.638823661971831 2.2957693737224747 0.00895867 -0.00871491339057684 0.025807922706007957 446 96 96 54 4.487348109003673 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 29.551326259401613 32.283878326416016 565.9019775390625 21.997909545898438 337738.0 0.1605382889509201 2824.2904541015623 1219.4542236328125 2.6276704187657423 3181.841064453125 19638.484375 19506.169921875 92089.0 12596.626171875 26623.802734375 4346.90234375 45.35197067260742 +sub-10103_ses-V1_task-cuff_run-01_bold 0.0012590156599552572 0.025802425503355705 3 44.59659465233187 1.2189652171524668 0.9935620526008968 0.4554535525176726 440592.28125 0.36446774818001293 10 2.237136465324385 2.64779088555917 2.7366625352112677 2.77632 2.4303901214662416 0.00932141 -0.019061945378780365 0.014955047518014908 447 96 96 54 4.709417526814214 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 60.55367958742051 42.02544021606445 602.9699096679688 28.570703506469727 335983.0 0.2081837818026543 2640.045629882812 1253.32666015625 2.143166606327564 3350.970703125 20234.279296875 19989.71875 94061.0 13873.9990234375 27392.986328125 4244.60400390625 33.66233825683594 +sub-10103_ses-V1_task-cuff_run-02_bold 0.0013534977578475336 0.01972292533632287 4 44.97180814422469 1.243131499483145 1.0475396354382018 0.4562224949961089 384355.53125 0.36618909344853867 6 1.345291479820628 2.598308033693904 2.693629295774648 2.727454647887324 2.3738401574197403 0.00912765 -0.01977764442563057 0.01656828075647354 446 96 96 54 4.695667983809725 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 80.90121607211994 45.368431091308594 620.425048828125 30.866872787475586 335864.0 0.23974748328328133 2705.8267822265584 1317.6937255859375 2.1915162872817833 3414.50830078125 20458.572265625 20182.111328125 93953.0 14148.514257812501 27776.740625 4298.0048828125 37.90066146850586 +sub-10103_ses-V1_task-rest_run-01_bold 0.001578076062639821 0.017658939821029083 3 44.79547518535873 1.2527335558071748 1.0164088916816136 0.45516714479291087 352083.1875 0.3421583870347961 223 49.88814317673378 2.6054844794421306 2.7127030985915495 2.7212935211267606 2.3824568186080817 0.00880765 -0.01989213190972805 0.015705836936831474 447 96 96 54 4.620550029628453 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 71.06290902626904 46.72549057006836 611.25244140625 31.794940948486328 336211.0 0.2392498254776001 2672.4918212890625 1288.8690185546875 2.0664338766924892 3499.2958984375 20348.109375 20116.67578125 93784.0 13838.89365234375 27699.9560546875 4353.71728515625 39.71351623535156 +sub-10103_ses-V1_task-rest_run-02_bold 0.001053340807174888 0.025014898430493277 4 45.19661628644947 1.2149341228314614 0.9944124234831458 0.45606921304319203 374698.0625 0.3847467924662387 260 58.29596412556054 2.6313448224193134 2.7181476056338028 2.7687842253521127 2.407102636272026 0.00808611 -0.01909537985920906 0.015695439651608467 446 96 96 54 4.717011335992482 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 58.44371373782499 45.02629089355469 604.1557006835938 30.63120460510254 336031.0 0.2431296780705452 2647.7108154296875 1241.9971923828125 2.1605267268701365 3341.084716796875 20085.078125 19827.123046875 93867.0 13889.40947265625 27188.789257812496 4203.30078125 33.75710678100586 +sub-10103_ses-V3_task-cuff_run-01_bold 0.0009522371364653244 0.010721009821029083 3 40.17729246024667 1.2266363923991042 1.0087890582511205 0.4591125853255807 308949.6875 0.3133551389626568 1 0.22371364653243847 2.570175632603934 2.6831459154929576 2.6956574647887326 2.3317235175301123 0.0102977 -0.025820186361670494 0.025674430653452873 447 96 96 54 4.519327656024943 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 145.59044258502917 49.67871856689453 672.4732055664062 33.6709098815918 336040.0 0.1457988351583481 3002.2625366210923 1522.451171875 2.387707364912435 3393.297119140625 19874.689453125 19616.533203125 93733.0 13468.553125 27242.306249999998 4340.5634765625 47.65337371826172 +sub-10103_ses-V3_task-cuff_run-02_bold 0.0009605145413870246 0.010625987762863536 3 40.027319177107614 1.2290392734529154 1.0108323061883402 0.45985076588368984 316628.1875 0.2881497513320677 0 0.0 2.570680807868193 2.6808022535211267 2.6957791549295775 2.335461015153875 0.00934272 -0.026020798832178116 0.025888517498970032 447 96 96 54 4.505696039744231 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 136.5155394326368 48.564117431640625 673.847900390625 32.9217529296875 335730.0 0.1527581222355366 3012.1488647460938 1519.285400390625 2.4068935753683594 3384.74609375 19803.64453125 19555.306640625 94000.0 13402.223193359376 27159.979296875004 4340.10693359375 48.145896911621094 +sub-10103_ses-V3_task-rest_run-01_bold 0.0008882247191011235 0.012345330831460673 5 40.08636726326579 1.2210950264639646 1.0074299159684679 0.4582666588990185 326511.59375 0.29846148805929695 186 41.79775280898876 2.5598958885508547 2.670729014084507 2.684989295774648 2.323969355793409 0.00836636 -0.02533237263560295 0.025033708661794662 445 96 96 54 4.541767586882119 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 141.4869987471268 47.74530792236328 660.5848999023438 32.402164459228516 336121.0 0.18169014155864716 2934.82177734375 1491.09814453125 2.456875793911828 3335.18603515625 19790.52734375 19537.384765625 93583.0 13480.03935546875 27058.550390624994 4301.69091796875 45.09103775024414 +sub-10103_ses-V3_task-rest_run-02_bold 0.0009191498881431767 0.011436939619686802 3 39.87840934710761 1.230208014417042 1.012865201367712 0.4606196028323823 298087.78125 0.2959785940522695 195 43.624161073825505 2.569362574649183 2.667037746478873 2.698005633802817 2.3430443436658583 0.00906142 -0.026317721232771873 0.02648390643298626 447 96 96 54 4.53090344533505 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 150.80248679850942 50.91489028930664 684.9386596679688 34.53261947631836 335897.0 0.17182001769542693 3062.4466308593755 1554.0997314453125 2.395300195734868 3352.716796875 19826.248046875 19581.89453125 93995.0 13423.847753906251 27155.4197265625 4321.8291015625 47.08720779418945 +sub-10104_ses-V1_task-rest_run-01_bold 0.0005001809954751131 0.0057408376923076924 8 39.78864866120184 1.096141525986395 1.0007067001587298 0.5125076040391358 641.65087890625 0.20300891981439606 98 22.171945701357465 2.673316650065372 2.4268249035666423 2.8864873853012964 2.7066376613281764 0.0109975 -0.015801232308149338 0.081619031727314 442 90 90 54 2.4184608345913037 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 36.79799848609248 2.4754772186279297 18.683809280395508 9.309955596923828 284384.0 7.520362377166748 59.32545490264887 28.185029983520508 0.3543673362439965 93.98086547851562 270.15789794921875 252.00680541992188 89743.0 127.08258285522462 465.8678985595702 104.20073699951172 36.56655502319336 +sub-10104_ses-V1_task-rest_run-02_bold 0.000848803611738149 0.006466491670428893 7 40.03605606988688 1.094490291176471 1.0044965549095024 0.5150114306810889 614.4177856445312 0.20141141049676803 76 17.155756207674944 2.6741694278318913 2.426279070254999 2.8889082185384343 2.7073209947022394 0.0196154 -0.01570906490087509 0.08462633192539215 443 90 90 54 2.4288196637919786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 38.237280525459106 2.6941187381744385 18.848241806030273 9.376975059509277 284061.0 7.336343288421631 59.424381256103516 28.563356399536133 0.3908673447676989 92.60574340820312 266.0518798828125 248.26072692871094 89956.0 126.8369083404541 458.3498840332031 102.2139892578125 34.55750274658203 +sub-10104_ses-V3_task-rest_run-01_bold 0.00044604966139954853 0.0051467387358916485 7 35.37217658029412 1.0185347480542986 0.9991137592986424 0.5097964751709527 709.9841918945312 0.1842226719685894 73 16.478555304740407 2.706847210297298 2.42764990353386 2.804795721880765 2.8880960054772697 0.00823617 -0.012807006016373634 0.08503050357103348 443 90 90 54 2.4102171029779274 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.35377284724591 2.6204915046691895 17.917482376098633 8.494357109069824 285400.0 6.5304741859436035 59.0316047668457 28.496198654174805 0.7189936617272821 89.37449645996094 259.13848876953125 241.6117401123047 88903.0 126.91083526611328 451.2173858642577 100.2442398071289 36.29924392700195 +sub-10104_ses-V3_task-rest_run-02_bold 0.0003475339366515837 0.006894034004524887 8 35.80169509063492 0.9883536344217688 0.9736847473696153 0.5103811504380219 702.7750244140625 0.18177864048580175 70 15.83710407239819 2.7235694327035773 2.437708236467511 2.819279054638582 2.913721007004639 0.00621174 -0.011691265739500523 0.08810015767812729 442 90 90 54 2.4123206566717292 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.83675665341523 2.505664348602295 17.889089584350586 8.44796371459961 285608.0 6.563348770141602 58.23982238769531 28.628957748413086 0.6897133212140041 88.3624267578125 256.5444030761719 238.91403198242188 88881.0 126.52037048339844 446.3031921386719 99.03852844238281 33.5184440612793 +sub-10105_ses-V1_task-rest_run-01_bold 0.0005769300225733634 0.00650064584650113 7 34.2522892626923 1.046696695339366 0.9953770987104066 0.5395518193381993 651.20166015625 0.13616231211852697 16 3.6117381489841986 2.6403874825306572 2.495287400846187 2.7849665560020385 2.640908490743746 0.0233823 -0.03618477284908295 0.12110070139169693 443 90 90 54 2.3719752687485256 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.77656172600372 4.59506368637085 23.017704010009766 9.88939094543457 268290.0 6.623024940490723 80.19435920715327 37.41789627075195 3.8062152351211864 94.54851531982422 289.6737060546875 273.16253662109375 102554.0 139.5258476257324 496.1337631225583 115.16191101074219 38.719635009765625 +sub-10105_ses-V1_task-rest_run-02_bold 0.00032859410430839003 0.006733325011337868 9 34.48089179963637 1.0461759199772724 0.9905572659772721 0.5413358576361026 615.9898071289062 0.1276980751154872 11 2.494331065759637 2.622743038235445 2.4829540680029365 2.76103322361973 2.6242418230836684 0.0240179 -0.036656204611063004 0.12174902856349945 441 90 90 54 2.3566378300491277 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.71753448075734 4.794084072113037 23.297653198242188 10.070295333862305 268266.0 6.653061389923096 81.45294761657715 37.62063980102539 4.1782762697158375 92.98030853271484 287.2011413574219 270.4671325683594 102565.0 138.93832397460938 492.45441894531245 114.76766204833984 39.34565734863281 +sub-10105_ses-V3_task-rest_run-01_bold 0.000401156462585034 0.00609096671201814 9 37.16060050615906 1.0433749483181827 0.9958626331590906 0.5440417570541037 656.7819213867188 0.12415021501138947 5 1.1337868480725624 2.7246541538549303 2.4923749009619196 2.798904055448212 2.88268350515466 0.0143134 -0.0292828306555748 0.1401825249195099 441 90 90 54 2.462395823439162 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 38.86327896880864 3.271139144897461 22.4478816986084 9.09523868560791 270162.0 6.727891445159912 81.45532684326156 38.448020935058594 2.0833801217179255 90.66566467285156 264.08740234375 249.0249481201172 101162.0 132.8348129272461 448.522329711914 101.13066101074219 36.291526794433594 +sub-10105_ses-V3_task-rest_run-02_bold 0.0005265837104072398 0.008764612511312218 8 38.24149156433107 1.0226912501360539 0.9831024008843546 0.5454505823014603 629.6292724609375 0.14533834911836974 40 9.049773755656108 2.7251624875393516 2.4902540677128604 2.7913373890822175 2.893896005822977 0.0133277 -0.029675696045160294 0.14165568351745605 442 90 90 54 2.467315937554068 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 40.13249258397225 3.4851224422454834 22.62174415588379 9.244344711303711 270227.0 6.733031749725342 80.898193359375 38.737762451171875 2.0774861212205797 89.79136657714844 261.8344421386719 247.1538543701172 101179.0 131.3868865966797 444.769482421875 100.17064666748047 33.11583709716797 +sub-10106_ses-V1_task-cuff_run-01_bold 0.0012860898876404494 0.011196034853932585 5 40.391922555675706 1.029094866373874 0.9911904170945942 0.5186172440656691 1642.845703125 0.12019772805773819 0 0.0 2.5514577479589318 2.5708082311785927 2.6475707281283247 2.4359942845698774 0.00945793 0.02855243720114231 0.04049736261367798 445 90 90 60 2.5530448333974376 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 89.48791461070155 31.43783187866211 69.59173583984375 23.247190475463867 299309.0 0.14606741070747375 292.03056030273433 152.42254638671875 3.0506725515739825 314.64324951171875 1006.4151000976562 955.80224609375 113336.0 486.40394592285156 1672.9915771484375 374.375732421875 26.594396591186523 +sub-10106_ses-V1_task-cuff_run-02_bold 0.0010523529411764706 0.009377015791855204 8 40.46260121 1.0568639629705212 0.9966255518820858 0.5186040317869429 1645.380126953125 0.11263350956476702 0 0.0 2.5349535859093044 2.5512207319569296 2.6375832285251923 2.4160567972457905 0.00988957 0.030265741050243378 0.0405668281018734 442 90 90 60 2.558162965600312 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 92.7582286628051 31.205089569091797 69.72526550292969 22.993213653564453 299462.0 0.0859728530049324 294.729302978516 154.5548095703125 2.964132487672484 312.2320251464844 1005.5584106445312 953.7149658203125 113347.0 487.0325897216797 1671.0387451171873 372.810791015625 28.756187438964844 +sub-10106_ses-V1_task-rest_run-01_bold 0.0014531081081081082 0.011630354324324325 6 41.54160486225736 1.0367409596614 1.0262503335214441 0.5183380745001964 1726.3590087890625 0.15236657709336263 33 7.4324324324324325 2.5703049629287076 2.5726873977705877 2.6694998939236045 2.468727597091931 0.0107546 0.030603431165218353 0.0424259789288044 444 90 90 60 2.5805646458899774 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 87.36707181300216 30.770675659179688 67.60151672363281 22.60585594177246 299016.0 0.15090090036392212 279.6965103149414 149.66989135742188 2.861505973745949 310.94073486328125 999.1751098632812 950.435791015625 113774.0 481.88919830322266 1655.0293518066396 368.3037414550781 26.426876068115234 +sub-10106_ses-V3_task-cuff_run-01_bold 0.0014553498871331828 0.01192866433408578 7 39.289911865633535 1.0268988423981902 0.9862679669909507 0.5129430785173577 2008.1488037109375 0.12066966810315256 0 0.0 2.501231366705946 2.515399900046988 2.5806873974526963 2.4076068026181523 0.00777558 0.029098965227603912 0.031094742938876152 443 90 90 60 2.677567482855378 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 50.95265203192924 29.923133850097656 67.42930603027344 22.279911041259766 301722.0 0.1399548500776291 287.02890777587953 143.75912475585938 3.0648291244954162 308.7260437011719 1066.010498046875 1012.1083984375 110993.0 538.8333984375 1742.3097412109369 377.9937744140625 28.354549407958984 +sub-10106_ses-V3_task-cuff_run-02_bold 0.0020959276018099548 0.010409962601809954 8 39.855529543129265 1.0815649251700679 1.0391280103174614 0.512830533438654 2098.78076171875 0.12304791165154208 1 0.22624434389140272 2.4978883108941456 2.503791567174929 2.580308230801096 2.4095651347064115 0.0130273 0.03169377148151398 0.031747546046972275 442 90 90 60 2.6943882144891607 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 53.81104573587818 29.004667282104492 66.24223327636719 21.493213653564453 302046.0 0.12443439662456512 283.49830627441406 143.00857543945312 2.9493673651772836 301.5535888671875 1051.0050048828125 999.2036743164062 110850.0 528.242431640625 1713.0329528808588 370.84454345703125 29.4028377532959 +sub-10106_ses-V3_task-rest_run-01_bold 0.0014879006772009031 0.01040064711060948 7 38.52223324692307 1.0513703533257917 1.0116212564705878 0.5132575521474426 2037.384765625 0.09607622223092252 10 2.2573363431151243 2.490118870687368 2.508091567004062 2.5724748977790317 2.38979014727901 0.00941787 0.027285996824502945 0.0323156900703907 443 90 90 60 2.678968309716172 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 53.847019595534555 29.638660430908203 66.94987487792969 22.088037490844727 301250.0 0.1264108419418335 283.16152038574216 143.3592071533203 3.1896941084045833 305.6905212402344 1064.8057861328125 1010.6975708007812 111455.0 537.088525390625 1735.67227783203 377.2695007324219 29.409711837768555 +sub-10106_ses-V3_task-rest_run-02_bold 0.0014575450450450454 0.012896846914414416 6 39.39183639437925 1.0282164465237007 1.0385106184650117 0.5143321329868331 2027.902587890625 0.13049567095633632 17 3.828828828828829 2.524909136435832 2.527270732908617 2.604079063189862 2.443377613209017 0.0136117 0.03222813084721565 0.030601544305682182 444 90 90 60 2.701237480644134 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 50.50429893400187 29.712154388427734 67.10452270507812 22.193695068359375 301693.0 0.18918919563293457 285.6693725585927 142.4506072998047 3.010941876019767 301.651123046875 1044.852783203125 994.6002197265625 111404.0 525.8251220703125 1698.4468811035144 368.2000427246094 27.163686752319336 +sub-10107_ses-V1_task-cuff_run-01_bold 0.001721318181818182 0.013596692136363638 10 38.924920262072874 1.0759488652391793 0.9902386686788153 0.4667587291195215 4819.3662109375 0.23047369077709523 3 0.6818181818181818 2.3399854301901506 2.2958707421036264 2.3052957417291107 2.4187898067377156 0.00471805 0.007102226838469505 0.008296310901641846 440 90 90 60 2.766063213033101 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 49.49248239353666 21.68642807006836 49.165855407714844 15.163636207580566 321444.0 0.04318181797862053 198.7982849121091 111.05322265625 5.196041983576922 265.52734375 1109.177734375 1045.9658203125 95879.0 615.8204345703126 1804.8817138671875 378.14044189453125 30.730457305908203 +sub-10107_ses-V1_task-rest_run-01_bold 0.0018415837104072397 0.015753273642533934 8 40.133352950204035 1.0828415790929706 1.0226006546712019 0.466649821429293 4872.9541015625 0.2599411184614858 146 33.0316742081448 2.362538214227085 2.3212832410938247 2.32593324090905 2.440398160678381 0.00436067 0.008124183863401413 0.007561809383332729 442 90 90 60 2.775062229992354 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 48.80906509731776 21.53798484802246 48.499412536621094 15.244344711303711 320831.0 0.09728506952524185 194.8065643310547 109.10714721679688 5.1255050061586545 265.6071472167969 1108.935791015625 1046.9954833984375 96191.0 613.4400634765625 1806.2749633789062 377.2852478027344 28.70026397705078 +sub-10107_ses-V1_task-rest_run-02_bold 0.0017764009111617314 0.011544942277904329 11 38.54086423465753 1.0948592786301372 1.0143015802511417 0.46802384492580473 4725.60693359375 0.24314934653694575 150 34.16856492027335 2.3369993161112226 2.298304075340268 2.303224908478065 2.409468964515334 0.00660032 0.007837015204131603 0.008318676613271236 439 90 90 60 2.761869426426488 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 46.91633144474654 21.85740852355957 50.10584259033203 15.391799926757812 321552.0 0.0728929415345192 204.45969619750986 111.54573059082031 5.27627696466225 263.5653991699219 1102.734375 1040.1343994140625 95913.0 609.5649291992188 1794.8875488281246 376.6032409667969 32.05335998535156 +sub-10107_ses-V3_task-cuff_run-01_bold 0.0015246485260770977 0.008061088185941043 9 37.97914278734094 1.1273957043636367 0.9963727673863629 0.45241169217112737 5525.0439453125 0.18170142723722543 0 0.0 2.405673029010551 2.398262404701614 2.370083239154687 2.4486734431753523 0.00573344 0.003384994575753808 0.013013164512813091 441 90 90 60 2.301996847418979 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 18 74.40232918229079 22.521434783935547 53.6966552734375 15.70975112915039 323439.0 0.01814058981835842 225.14285278320312 122.34563446044922 8.349727887835286 347.4751281738281 1267.986083984375 1171.451171875 94050.0 653.1733795166015 2208.9165893554687 508.882080078125 35.92964172363281 +sub-10107_ses-V3_task-rest_run-01_bold 0.000964716553287982 0.008446425056689343 9 36.10486327527275 1.0782018103863638 0.9893706565909097 0.45341887434171246 5544.8349609375 0.18800542289114838 66 14.965986394557824 2.4133633057244417 2.4146915707154446 2.3729082390424314 2.452490107415449 0.00978927 0.003133011283352971 0.01439556386321783 441 90 90 60 2.3082400191614445 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 73.74690561877914 22.53152084350586 53.641136169433594 15.807256698608398 322450.0 0.040816325694322586 224.10454330444333 121.87959289550781 8.528935195991282 344.1841125488281 1268.62939453125 1171.8232421875 94720.0 649.7676025390625 2207.9783325195317 507.6669006347656 34.76799774169922 +sub-10107_ses-V3_task-rest_run-02_bold 0.0024679365079365084 0.008125661564625849 9 37.611290372522745 1.1317007823409095 1.0539622692727273 0.4532719345455153 5402.0283203125 0.17325448647616828 56 12.698412698412698 2.4062133065789397 2.405541571079033 2.363479072750446 2.4496192759073407 0.00818668 0.0037277524825185537 0.01427773479372263 441 90 90 60 2.2790327877348746 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 82.02326643799222 22.65254783630371 54.15499496459961 15.782313346862793 322705.0 0.01587301678955555 228.43991699218736 124.0521011352539 9.05252437227823 341.2237548828125 1261.3372802734375 1162.5396728515625 94566.0 643.1417388916016 2202.1473388671875 510.0995178222656 35.27387237548828 +sub-10108_ses-V1_task-cuff_run-01_bold 0.0008644695259593678 0.01716492735891648 7 45.1213561613122 1.0676170622171943 0.9873644620588239 0.45234862627388805 4622.87158203125 0.3376456203905866 4 0.9029345372460497 2.443786913905544 2.3463915734294423 2.5238165663792067 2.4611526019079832 0.00872031 0.011921891942620277 0.011606521904468536 443 90 90 60 2.916887760882483 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 66.4711772820193 18.560976028442383 36.34587860107422 13.42212200164795 326273.0 0.06997742503881454 125.30790252685539 87.76908111572266 6.5566838063356485 211.9752960205078 950.985595703125 904.6524047851562 91118.0 538.5558624267578 1488.8874145507805 310.1413269042969 27.934551239013672 +sub-10108_ses-V1_task-rest_run-01_bold 0.0008993197278911565 0.022705126303854878 9 42.8021296502273 1.0395675201818173 0.9620326657727273 0.45248529579674346 4330.13232421875 0.2880883317447086 195 44.21768707482993 2.455267467061959 2.3635707394134706 2.531299899415179 2.4709317623572273 0.00619814 0.012314936146140099 0.012483247555792332 441 90 90 60 2.910271906288482 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 75.1439087666072 18.90065574645996 36.31356430053711 13.900226593017578 326436.0 0.1269841343164444 122.71598815917969 87.10128784179688 6.790935236147247 209.58815002441406 950.752197265625 904.2290649414062 90923.0 537.9167602539063 1487.3782470703122 310.7008972167969 25.36241912841797 +sub-10108_ses-V1_task-rest_run-02_bold 0.0009610561797752809 0.01985249775280899 5 45.008529568445944 1.0593982103603603 0.9700809132882875 0.4528217007396937 4527.3505859375 0.339679936374236 227 51.01123595505618 2.4489869118238534 2.3460040734448406 2.530366566118933 2.470590095907786 0.00560672 0.012091923505067825 0.013298681005835533 445 90 90 60 2.928522532761812 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 73.99976140441771 18.66412925720215 36.5889892578125 13.588764190673828 326202.0 0.07191011309623718 124.44235877990731 89.80010986328125 7.003795098242254 207.99740600585938 946.9762573242188 902.0404663085938 91263.0 535.3957153320313 1475.4087402343748 308.01727294921875 25.926130294799805 +sub-10108_ses-V3_task-cuff_run-01_bold 0.001142072072072072 0.012978764189189192 6 34.03781029762981 1.0252956600677208 0.9833430435214444 0.45741101517527283 6472.544921875 0.16000647445187413 0 0.0 2.38979387581883 2.3246415742937097 2.460712402220074 2.384027650942706 0.0145717 0.004201496485620737 0.011632930487394333 444 90 90 60 3.169228046996559 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 41.79631228656149 19.8648681640625 45.8415641784668 14.033783912658691 326459.0 0.04954954981803894 179.52928161621094 106.72022247314453 3.609630019712128 267.12884521484375 1145.6265869140625 1109.93017578125 92083.0 641.8315490722656 1746.3723876953122 350.2190856933594 30.965784072875977 +sub-10108_ses-V3_task-cuff_run-02_bold 0.0015427191011235953 0.011019212853932585 5 34.63733380128378 1.053696490382882 1.0046095377477477 0.4585389800396378 6513.8037109375 0.17553721539894648 0 0.0 2.386100822838911 2.3266207408817317 2.4598790689198546 2.371802658715147 0.0172704 0.004508146550506353 0.012081670574843884 445 90 90 60 3.1685837963618426 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 40.19483622612873 19.518709182739258 46.11656951904297 13.814606666564941 325826.0 0.05842696875333786 183.1376495361328 107.88847351074219 3.666081423664049 267.68798828125 1134.542724609375 1100.2247314453125 92439.0 637.2768615722656 1732.194140625 347.227294921875 33.29916000366211 +sub-10108_ses-V3_task-rest_run-01_bold 0.001385191873589165 0.013986402528216703 7 33.868099639909495 1.0424580435067874 1.0132373188235286 0.4561524787628491 6582.8984375 0.15088867312299864 4 0.9029345372460497 2.3944313726112747 2.3244082409696483 2.4596415689292916 2.3992443079348833 0.0245702 0.0036150088999420404 0.012018131092190742 443 90 90 60 3.1811566441013226 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 42.748671877046434 19.923095703125 45.4026985168457 14.079007148742676 326901.0 0.05191873759031296 177.47630310058594 106.3000717163086 3.493190268965237 272.23974609375 1154.8638916015625 1117.4786376953125 91445.0 655.8686279296875 1763.1869384765628 351.2786865234375 30.364904403686523 +sub-10108_ses-V3_task-rest_run-02_bold 0.0007943566591422121 0.015134663431151241 7 34.54412726576923 1.0143461518778285 0.9658452126244347 0.4596201402728879 6101.18359375 0.18505682456225328 20 4.514672686230249 2.391641096484158 2.32502074094531 2.458408235644967 2.3914943128621973 0.0213892 0.005505040287971497 0.012457610107958317 443 90 90 60 3.213969013418575 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 40.355739354136226 19.89632225036621 46.20489501953125 14.182844161987305 325969.0 0.08577878028154373 181.86546630859354 107.8770751953125 3.545750683524047 259.4068908691406 1123.2406005859375 1089.037353515625 92226.0 637.8262176513672 1707.5191955566406 338.8431701660156 28.83850860595703 +sub-10109_ses-V1_task-cuff_run-01_bold 0.0007290990990990991 0.010662845810810812 6 35.55074453232504 1.034231711512415 0.969176393160271 0.4384942147543539 7686.93505859375 0.1565064472600555 0 0.0 2.327704852515567 2.295037408803407 2.3375582404471142 2.3505189082961797 0.0110766 0.001756874960847199 0.011981118470430374 444 90 90 60 3.165363081863796 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 85.46788925587168 15.393685340881348 29.000850677490234 10.671171188354492 329002.0 0.0 102.62128982543953 69.03501892089844 3.2390874183595537 223.8312225341797 983.6609497070312 944.549560546875 88560.0 561.0849151611328 1520.6685485839844 298.39996337890625 33.96479797363281 +sub-10109_ses-V1_task-rest_run-01_bold 0.001583589164785553 0.011000752821670429 7 35.31239133300902 1.049865111040724 1.0191991523529416 0.43851689494131696 7835.14794921875 0.15790067342069 8 1.8058690744920993 2.3485354157632754 2.3150374080086786 2.3543207397810324 2.376248099500115 0.00988651 0.0028923924546688795 0.011370884254574776 443 90 90 60 3.142204069829808 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 82.3689247365393 15.23432445526123 29.14752197265625 10.69074535369873 328907.0 0.011286681517958641 102.86478881835944 68.98912048339844 3.3167044297425354 224.26449584960938 986.5759887695312 947.2776489257812 88643.0 559.3571411132813 1524.8318847656246 301.46746826171875 32.99494934082031 +sub-10109_ses-V1_task-rest_run-02_bold 0.0007496839729119639 0.010219093927765236 7 35.76115997450224 1.0623214428733028 0.9912993892986426 0.43832467500770406 7545.85107421875 0.1530980456642405 7 1.580135440180587 2.3243242952068606 2.2959665754331517 2.3321874073271984 2.344818902860231 0.00941302 0.0016885354416444898 0.012242713011801243 443 90 90 60 3.1659859915223008 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 88.41125749492883 15.44516658782959 29.02595329284668 10.733634948730469 329168.0 0.0022573363967239857 102.46794738769516 69.6436538696289 3.2030227829524183 222.91256713867188 979.897705078125 941.2776489257812 88499.0 556.995263671875 1512.1113281249998 297.30780029296875 34.860111236572266 +sub-10109_ses-V3_task-cuff_run-01_bold 0.0011758013544018058 0.013280423860045146 7 35.82742421341628 1.0343176235972849 0.995997917692307 0.4412794379972343 6535.64404296875 0.12635163656850498 0 0.0 2.4209021899112995 2.3494665733072533 2.4385915697657436 2.4746484266609023 0.00755235 0.0033083062153309584 0.015966283157467842 443 90 90 60 3.0417365073703704 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 134.6832358684325 16.368865966796875 31.33572006225586 11.532732009887695 328587.0 0.009029345586895943 113.6749496459961 73.49019622802734 3.674822294628987 228.61683654785156 970.0303955078125 931.7596435546875 88902.0 543.9191009521485 1523.2984863281247 306.32318115234375 30.475601196289062 +sub-10109_ses-V3_task-rest_run-01_bold 0.0006803167420814479 0.012233450610859729 8 35.870999489750574 1.0426242114285718 0.9855524836281179 0.44092915213797057 6183.966796875 0.12753681147874893 1 0.22624434389140272 2.3907077552720892 2.3256582409199775 2.4151290706980597 2.4313359541982305 0.00952091 0.002047742949798703 0.01487426832318306 442 90 90 60 3.037214503791889 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 109.13272750833669 16.80841636657715 31.61737823486328 11.9343900680542 329090.0 0.013574661687016487 114.72093162536613 73.10477447509766 3.9622285089104636 229.86203002929688 983.7174072265625 942.9649658203125 88434.0 554.2378143310547 1544.783215332031 310.46856689453125 32.85862731933594 +sub-10109_ses-V3_task-rest_run-02_bold 0.0011384650112866818 0.017822687990970656 7 37.6286041684842 1.0319357478959283 1.00900713260181 0.4424105588310116 5981.29150390625 0.18648153470297663 52 11.738148984198645 2.4370285757602983 2.3659999059836108 2.458362402313455 2.486723418983829 0.00887182 0.003530820133164525 0.016158636659383774 443 90 90 60 3.085530630799426 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 161.53901878631 16.92442512512207 31.124990463256836 12.15124225616455 328327.0 0.05869074538350105 110.18691101074229 72.53662872314453 3.522606070709 223.91134643554688 962.8873901367188 925.8487548828125 89116.0 543.3013610839844 1502.5090942382812 300.05975341796875 26.156463623046875 +sub-10110_ses-V1_task-cuff_run-01_bold 0.0011371655328798185 0.00796719476190476 9 31.632923160659118 1.0291468362954546 0.9921639418181822 0.47131589545990055 6954.8779296875 0.08333451284485592 0 0.0 2.2907786234423297 2.339154073717035 2.2571999103069342 2.2759818863030206 0.00918728 0.007806950714439154 0.0234362930059433 441 90 90 60 2.4893500899536187 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 72.77793221359951 17.885360717773438 45.939674377441406 12.539682388305664 311130.0 0.006802720949053764 202.62029953002929 111.07799530029297 4.783689461191115 301.6356201171875 1129.255615234375 1051.885498046875 104640.0 586.2372955322267 1902.864916992187 422.55224609375 36.786964416503906 +sub-10110_ses-V1_task-cuff_run-02_bold 0.001171373873873874 0.00796155150900901 6 31.91146628419863 1.045713096613996 1.0232045809029342 0.47130846020992917 6867.57861328125 0.0837025127369961 0 0.0 2.2882508460340456 2.3348832405534092 2.255241577051418 2.274627720497309 0.00881933 0.008180905133485794 0.023917851969599724 444 90 90 60 2.4782391388900042 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 65.93635324349287 18.034988403320312 46.179283142089844 12.603604316711426 311253.0 0.006756756920367479 204.6626220703115 111.41595458984375 4.769085398560756 301.6060485839844 1125.6099853515625 1048.450439453125 104695.0 583.0574645996094 1900.1614990234366 423.0606384277344 37.13502502441406 +sub-10110_ses-V1_task-rest_run-01_bold 0.00184986301369863 0.016357616666666665 12 35.4234871243707 0.975065272745995 0.9415236503432493 0.47304905757733257 6437.265625 0.15087982046554113 37 8.447488584474886 2.346793882855486 2.38033740541389 2.3028332418269617 2.3572110013256062 0.0151694 0.008085623383522034 0.022930441424250603 438 90 90 60 2.505750273441941 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 56.01938218116189 18.410669326782227 45.58527374267578 13.068492889404297 309574.0 0.052511412650346756 197.3638076782226 108.50938415527344 4.5555201493910324 301.1984558105469 1133.0804443359375 1055.086669921875 105729.0 590.62919921875 1909.6369140624997 421.0641784667969 26.108720779418945 +sub-10110_ses-V1_task-rest_run-02_bold 0.0012290744920993228 0.01158707920993228 7 33.84184558135746 1.0314508744343884 0.9849135312217194 0.4725871627319875 6451.01513671875 0.11793070895191102 19 4.288939051918736 2.3048577872738036 2.343837406864269 2.283299909269813 2.2874360456873286 0.00941942 0.00789158046245575 0.024286365136504173 443 90 90 60 2.50112099628399 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 48.58566813617651 18.320011138916016 46.0579833984375 12.909707069396973 311146.0 0.022573363035917282 203.2720184326172 108.5091323852539 4.911458916426136 296.39666748046875 1119.447509765625 1042.2528076171875 104770.0 586.568881225586 1882.4696899414055 416.7122802734375 32.82172775268555 +sub-10110_ses-V3_task-cuff_run-01_bold 0.0021407500000000003 0.00929919825 10 33.60059898487476 1.061181567425968 1.0203159763781322 0.47498350635406206 6311.19287109375 0.12473680568633326 0 0.0 2.3026508393755485 2.3443124068453947 2.258379076926745 2.305261034354506 0.00913114 0.010751494206488132 0.021679259836673737 440 90 90 60 2.5300376306295687 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 81.09201798867646 17.98666000366211 45.00877380371094 12.684090614318848 309337.0 0.022727271541953087 193.6522674560547 110.70296478271484 5.147651458507001 284.8550109863281 1085.6158447265625 1012.4772338867188 105777.0 564.2131713867187 1816.9522705078125 400.1807861328125 34.3411750793457 +sub-10110_ses-V3_task-cuff_run-02_bold 0.001790135135135135 0.013902661666666665 6 36.325578276252806 1.02474988731377 0.9720766262076752 0.4755647396359983 5942.576171875 0.17552292424306976 1 0.22522522522522523 2.3176480559031574 2.357691572980421 2.264329076690313 2.3309235180387384 0.00952182 0.00999609287828207 0.022455018013715744 444 90 90 60 2.538430175572048 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 89.74366742489757 18.43903160095215 45.05337905883789 13.056306838989258 309278.0 0.04954954981803894 192.51159973144522 110.55484771728516 5.030530749873227 284.5960998535156 1085.8701171875 1013.4076538085938 105825.0 566.4833374023438 1812.7288818359361 399.2242431640625 29.169158935546875 +sub-10110_ses-V3_task-rest_run-01_bold 0.0008806320541760722 0.015388831151241534 7 35.3798179926018 0.9992756426923083 0.9508655078733034 0.4749501279657013 6064.4453125 0.16615742718464602 44 9.932279909706546 2.3285966635153676 2.360087406218552 2.2793582427597743 2.346344341567776 0.0109916 0.00935097225010395 0.022843793034553528 443 90 90 60 2.5392738456056447 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 85.27124037737154 18.48400115966797 44.872108459472656 13.049661636352539 309218.0 0.03837471827864647 189.9487670898436 111.18265533447266 4.910557290920523 288.2974548339844 1095.154541015625 1022.2393188476562 105699.0 570.0112915039062 1830.2968505859371 402.5696105957031 28.286052703857422 +sub-10110_ses-V3_task-rest_run-02_bold 0.0009857787810383747 0.011185056230248309 7 37.43932377934389 1.070614463144796 1.0056988851131217 0.47551370921533137 6276.046875 0.20079319549101224 65 14.672686230248306 2.3124577824791097 2.355020739753217 2.2723040763734152 2.3100485313106973 0.0162672 0.009656642563641071 0.02339574694633484 443 90 90 60 2.5264266192982916 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 102.41521735190969 18.07904815673828 45.711212158203125 12.717833518981934 308996.0 0.022573363035917282 199.72630310058594 114.37383270263672 4.91885297545079 286.4031982421875 1087.13671875 1014.6546630859375 105997.0 562.5607177734375 1817.8912109375 401.6146240234375 32.4429817199707 +sub-10111_ses-V1_task-cuff_run-01_bold 0.0007036343115124153 0.009065353047404065 7 48.390640759162906 1.05763576158371 0.9994846312217186 0.5084195382013353 701.831787109375 0.2839867292118547 0 0.0 2.7901708168541455 2.5201998998562534 2.999762380800153 2.8505501699060303 0.00882791 -0.014982418157160282 0.10354755818843842 443 90 90 54 2.2759968862601894 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 49.80355903824923 3.7985405921936035 19.049068450927734 8.16704273223877 285856.0 5.358916759490967 64.34650421142578 34.10060119628906 4.105559521878377 85.73657989501953 249.51690673828125 231.5914306640625 88025.0 122.84424591064453 427.2031555175781 101.75326538085938 29.936063766479492 +sub-10111_ses-V1_task-cuff_run-02_bold 0.0009480812641083522 0.009957487358916477 7 50.9254957001584 1.067384755769232 1.003851078959276 0.5084225508193749 695.4555053710938 0.3172842985581115 2 0.45146726862302483 2.794304149940313 2.5249873996660153 3.009879047064819 2.8480460030901034 0.00852833 -0.01414934266358614 0.10419423133134842 443 90 90 54 2.29033781364204 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 55.92599751813539 3.8286619186401367 18.813831329345703 8.130926132202148 285797.0 5.320541858673096 63.21986618041997 33.9765739440918 3.8541380631963094 84.65727233886719 247.75596618652344 230.07562255859375 88088.0 122.48611907958986 424.6424377441406 100.45431518554688 29.126983642578125 +sub-10111_ses-V1_task-rest_run-01_bold 0.0007268848758465011 0.007803607088036117 7 48.471986028416254 1.0741892357918559 1.007079384728507 0.5066304978206495 712.3225708007812 0.26007264299620547 142 32.05417607223476 2.791056927640301 2.530491566113966 3.000879047422447 2.8418001693844896 0.00930239 -0.014363552443683147 0.10279125720262527 443 90 90 54 2.251832482136352 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 47.61287091875185 3.7182199954986572 18.774240493774414 8.115124702453613 285967.0 5.4040632247924805 63.31016082763677 33.335350036621094 4.164149617571808 86.7640380859375 251.12429809570312 232.65689086914062 87998.0 122.66783599853515 431.51117858886715 103.31832885742188 31.597103118896484 +sub-10111_ses-V1_task-rest_run-02_bold 0.0010281221719457014 0.010291516809954751 8 50.896967864195005 1.076721091814058 1.009861964195012 0.5106221598811848 675.8849487304688 0.3048267274627953 175 39.59276018099548 2.797015261051865 2.523529066390631 3.016204046813486 2.851312669951479 0.00712628 -0.016042349860072136 0.10514717549085617 442 90 90 54 2.2897991483674645 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 53.426499850667575 3.9278900623321533 19.020599365234375 8.208145141601562 285458.0 5.287330627441406 64.16550102233879 33.798892974853516 3.758416491923998 84.20477294921875 245.1818389892578 228.21041870117188 88586.0 119.65724754333496 419.52320861816406 99.66338348388672 28.828662872314453 +sub-10112_ses-V1_task-cuff_run-01_bold 0.0011665011286681715 0.0071017852144469535 7 40.659973269547486 1.0602333938009052 1.010230023846153 0.5233700815364056 561.1398315429688 0.2741801712134569 2 0.45146726862302483 2.695612484872099 2.44809990272125 2.860849886320039 2.7778876655750073 0.0135764 -0.01935233734548092 0.10074800997972488 443 90 90 54 2.4898433358640015 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 57.60986141967655 3.042179584503174 19.652584075927734 9.674943923950195 283935.0 7.3769755363464355 60.763431930541884 30.148988723754883 1.9139069627489071 83.04914093017578 258.41357421875 242.9932403564453 90263.0 124.52618865966798 435.7593872070311 97.59324645996094 33.603702545166016 +sub-10112_ses-V1_task-cuff_run-02_bold 0.0008727601809954751 0.008963456742081448 8 41.10087834138325 1.0249963590702942 0.9857237852607708 0.5236529265810231 565.4852294921875 0.2655562318902383 3 0.6787330316742082 2.701004151460976 2.4564749023884573 2.8645290528405085 2.782008499153962 0.00837103 -0.018367087468504906 0.10080216825008392 442 90 90 54 2.49250620862183 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 57.77121113385119 2.8276774883270264 19.459911346435547 9.55203628540039 283820.0 7.4773759841918945 59.99774169921875 29.832534790039062 1.9572328225922897 82.48400115966797 256.5973205566406 241.31561279296875 90302.0 123.88246803283693 432.2549972534179 96.81591796875 31.926898956298828 +sub-10112_ses-V1_task-rest_run-01_bold 0.0008722347629796839 0.006616742392776524 7 39.97938070687781 1.0521702957239814 0.9962928653167424 0.523407653999125 571.371337890625 0.2527666174770522 140 31.602708803611737 2.707411095650555 2.4619915688359115 2.878241552295623 2.782000165820132 0.00753567 -0.020628806203603745 0.10073470324277878 443 90 90 54 2.4840206763724053 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 56.427980720759514 2.9852850437164307 19.67266082763672 9.672686576843262 283381.0 7.451467514038086 61.1738166809082 30.003429412841797 1.899021642099556 84.18034362792969 261.0516357421875 245.86004638671875 90673.0 123.48668365478515 439.88804931640624 98.97610473632812 34.89042663574219 +sub-10112_ses-V1_task-rest_run-02_bold 0.0017368677494199538 0.009500446241299304 8 40.95336120951168 1.0384454886279069 1.0043391571627913 0.5267645631229151 533.5214233398438 0.27863811966180374 159 36.890951276102086 2.7025305392948353 2.4789790681608888 2.8766332190261994 2.751979330697417 0.0114493 -0.021086733788251877 0.09989264607429504 431 90 90 54 2.4691961477253592 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 54.249493448082546 3.2507174015045166 19.8974552154541 9.802783966064453 282215.0 7.345707416534424 61.815776062011665 29.827505111694336 2.1723067184731155 82.67312622070312 256.12396240234375 240.84686279296875 91398.0 122.32180633544921 432.9430297851562 97.5400619506836 31.002283096313477 +sub-10112_ses-V3_task-rest_run-01_bold 0.0006374266365688488 0.0060139187584650105 7 40.368359388936675 1.0733707132579189 0.9901723147737554 0.523134187859725 577.31396484375 0.24001513126214577 113 25.507900677200904 2.700877762417198 2.466170735336513 2.859283219715626 2.7771793321994545 0.00518693 -0.02215043641626835 0.09532807022333145 443 90 90 54 2.4562737133082684 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 44.96757051074451 3.206169605255127 20.232460021972656 9.855530738830566 283264.0 7.5033860206604 64.65744895935032 30.08625602722168 1.7094170341797668 87.37646484375 268.20556640625 251.853271484375 90440.0 127.04424781799317 455.1253036499024 102.53412628173828 36.1920166015625 +sub-10112_ses-V3_task-rest_run-02_bold 0.0010686651583710406 0.006208714909502262 8 44.33453712553285 1.0813550240816325 1.014926194013605 0.5280659572741447 539.9296264648438 0.24866861591060313 134 30.316742081447963 2.7564443349131875 2.504183233826032 2.9329957167865546 2.832154054126976 0.00746853 -0.028619999065995216 0.09199675917625427 442 90 90 54 2.35453702749555 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 44.669906692637284 4.477995872497559 19.996389389038086 9.730770111083984 278691.0 6.513575077056885 64.77828216552734 30.04423713684082 1.9151980413345377 87.06935119628906 258.9120788574219 241.92535400390625 95012.0 120.27172203063965 448.5980941772461 102.748046875 32.70569610595703 +sub-10113_ses-V1_task-cuff_run-01_bold 0.0010494130925507903 0.010177384379232504 7 37.782738987624455 0.9962664414253414 0.9668600047285071 0.5095961076503986 699.3001708984375 0.2553475447439918 1 0.22573363431151242 2.8324291528990213 2.4823624013597807 3.0317790461945915 2.9831460111426917 0.00252585 -0.009093728847801685 0.09612597525119781 443 90 90 54 2.4085109840430685 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 52.91534885433986 3.504028797149658 18.91801643371582 8.688488006591797 285963.0 6.13092565536499 61.35417861938468 30.624101638793945 0.6925931439845465 90.71484375 260.8393859863281 245.38037109375 88336.0 117.59932327270508 452.3673858642578 101.87995147705078 27.994905471801758 +sub-10113_ses-V1_task-cuff_run-02_bold 0.0010811512415349889 0.009041150338600451 7 40.010208449253376 1.033247363031675 0.9747913379638006 0.5131280328297307 678.3233642578125 0.24909359113813867 0 0.0 2.820870818258911 2.480554068098304 3.0522457120479856 2.9298126746304436 0.00426311 -0.011690394952893257 0.09584780037403107 443 90 90 54 2.4141426606339382 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 40.723618314146464 3.6847517490386963 19.337770462036133 8.866817474365234 284323.0 6.191873550415039 63.50090370178215 30.178268432617188 0.693478563706194 91.2018051147461 262.10101318359375 246.97291564941406 89447.0 118.1548583984375 454.31265258789057 102.30196380615234 30.72372055053711 +sub-10113_ses-V1_task-rest_run-01_bold 0.0017954627539503384 0.008514604808126412 7 41.60164865 1.0767287704524886 0.994283465633484 0.5077249307967481 722.6376953125 0.23747370294925235 112 25.28216704288939 2.80151109691732 2.45849573564149 3.0128623802796057 2.9331751748308643 0.009334 -0.010084996931254864 0.09558533132076263 443 90 90 54 2.4183093299344884 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 47.66619033372459 3.3735055923461914 18.74138832092285 8.60270881652832 286388.0 6.108352184295654 60.7351028442382 30.339359283447266 0.6804832317197693 91.32728576660156 262.7953796386719 247.22348022460938 87872.0 119.55835342407227 454.9553161621093 102.22930145263672 32.19437026977539 +sub-10113_ses-V1_task-rest_run-02_bold 0.0012477702702702706 0.00829863268018018 6 39.755705882821715 1.0466393456659142 0.989547162799097 0.5128052848065517 673.3292236328125 0.2384740062908897 163 36.711711711711715 2.799006930056276 2.4649082353866802 3.0078123804802743 2.924300174301873 0.00249382 -0.012085138820111752 0.09625300765037537 444 90 90 54 2.401275233134226 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 41.775663122814805 3.6564176082611084 19.266319274902344 8.82207202911377 284851.0 6.164414405822754 63.23874092102051 30.10843276977539 0.6961413388598063 90.70587158203125 260.5768737792969 245.3265838623047 88992.0 116.8288345336914 452.7252502441406 102.16455078125 31.21872329711914 +sub-10113_ses-V3_task-rest_run-01_bold 0.0005022072072072072 0.006842719301801802 6 34.86843591776522 1.0307572567042884 0.9922691031376976 0.5126592012525591 589.3159790039062 0.17286084291047868 55 12.387387387387387 2.8773194326521137 2.508562400318686 3.02672904639526 3.0966668512423943 0.00622711 -0.010762223042547703 0.09721590578556061 444 90 90 54 2.365069187796406 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 56.121026093366815 3.162217140197754 20.84044647216797 9.855855941772461 288444.0 7.542792797088623 66.84459686279297 32.246829986572266 0.7777446674410031 94.00332641601562 271.7513732910156 254.25900268554688 86468.0 122.8738784790039 475.8495635986327 107.50532531738281 35.80738830566406 +sub-10113_ses-V3_task-rest_run-02_bold 0.00034920814479638007 0.005804583846153846 8 33.59765958013607 1.0078163355328795 0.9849002730385492 0.514424368056328 579.5586547851562 0.1514289831555164 19 4.298642533936651 2.8551069325548695 2.4918165676507726 3.0064290472019097 3.0670751828119265 0.00353891 -0.011029010638594627 0.09792354702949524 442 90 90 54 2.3757996970902884 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.57756822090622 3.1798806190490723 20.945398330688477 9.871041297912598 288324.0 7.5927605628967285 67.42953071594233 31.777650833129883 0.7717895523287299 93.2261734008789 269.4542541503906 252.52490234375 86570.0 121.22647590637206 471.5180007934571 106.28987121582031 37.018333435058594 +sub-10117_ses-V1_task-cuff_run-01_bold 0.0006320361990950226 0.008278781990950227 8 35.56361936702948 0.9560180177097498 0.9612922597278917 0.5529603001299758 375.8272705078125 0.13766765015934126 0 0.0 2.790583318962136 2.495499900837743 2.96154571565208 2.9147043403965833 0.00603128 -0.005002129822969437 0.12063594907522202 442 90 90 54 2.11818826332661 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 24.324267854123757 4.977787494659424 25.983800888061523 11.31447982788086 273306.0 7.782805919647217 95.5955924987793 38.26785659790039 2.4128854500514665 94.26934814453125 257.6816711425781 236.3258056640625 99285.0 116.53665466308594 469.0203857421875 111.56922149658203 30.615680694580078 +sub-10117_ses-V1_task-cuff_run-02_bold 0.0009826067415730337 0.007354844134831461 5 37.97693707087839 1.0082108899549547 0.9960365339414421 0.5544036852220122 364.2960205078125 0.16417001943934867 1 0.2247191011235955 2.7437958185750912 2.462987402129674 2.9215290505755322 2.8468710030200683 0.0158368 -0.007234839256852865 0.12496021389961243 445 90 90 54 2.1269657792984042 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 27.591735187682563 5.170782566070557 26.476261138916016 11.4314603805542 273424.0 7.7438201904296875 97.54314918518057 40.09239959716797 2.4114295994350083 93.33897399902344 256.38543701171875 234.9303436279297 98994.0 117.65606651306152 466.19225921630834 110.45272064208984 32.37169647216797 +sub-10117_ses-V1_task-rest_run-01_bold 0.0014933484162895929 0.00495107721719457 8 35.871230473582784 1.0333660877324262 1.0228406707256228 0.5508690316338897 385.13275146484375 0.13761911570824337 5 1.1312217194570136 2.7513208185608526 2.464704068728126 2.9337873834217634 2.855471003532668 0.0127807 -0.007997285574674606 0.1243973895907402 442 90 90 54 2.1277319536844077 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.52931057423985 4.823488712310791 25.890583038330078 11.214932441711426 273802.0 7.834842205047607 95.12658805847164 39.49497985839844 2.4161985866944358 94.55111694335938 258.44000244140625 237.15159606933594 98697.0 117.537109375 469.7384826660156 111.45689392089844 35.105838775634766 +sub-10117_ses-V1_task-rest_run-02_bold 0.0009250112866817155 0.007153151354401806 7 37.628258882217224 1.0133367199095022 1.0017841817194566 0.5561996034665242 353.83831787109375 0.14798350501042865 35 7.900677200902934 2.743230540793561 2.4635582354403245 2.920054050634144 2.8460793363062145 0.0177252 -0.008915193378925323 0.12701444327831268 443 90 90 54 2.122430842212764 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 26.674857456957337 5.271102428436279 26.668121337890625 11.501129150390625 272998.0 7.787810802459717 97.97099609374999 39.925777435302734 2.482972537568509 92.47691345214844 255.0873260498047 233.59707641601562 99216.0 116.99549102783203 464.4452667236328 110.060546875 32.51845932006836 +sub-10117_ses-V3_task-cuff_run-01_bold 0.0013392081447963803 0.007284020067873303 8 39.282616595872966 1.0306311112244906 1.0192608825623581 0.5516020641289435 423.7663879394531 0.15425879180772353 0 0.0 2.7797818339858384 2.4734165683819227 2.88399571873364 2.9819332148419533 0.00679225 -0.007423760835081339 0.13721837103366852 442 90 90 54 2.084832135298023 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 2 25.008134315946815 4.86374044418335 26.087984085083008 10.414027214050293 274309.0 7.002262592315674 100.48552398681636 40.59666061401367 2.997537509212913 91.9783706665039 252.1919403076172 229.7013702392578 98506.0 119.14593124389648 460.31959533691406 110.17683410644531 31.216815948486328 +sub-10117_ses-V3_task-cuff_run-02_bold 0.0008174886877828055 0.006594756018099548 8 39.47193978761903 1.0324379043310656 1.0159052206122459 0.5525273926018794 413.9471130371094 0.15894700830594236 0 0.0 2.770030445484435 2.4684957352441255 2.8737623858069425 2.9678332154022367 0.00798001 -0.008577275089919567 0.14046858251094818 442 90 90 54 2.085327368826843 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 26.47902400114287 4.883866310119629 26.19735336303711 10.445701599121094 273688.0 7.013575077056885 100.7923110961913 40.92427062988281 2.951237476656166 92.10580444335938 250.98211669921875 228.85748291015625 98917.0 118.24118347167969 457.74119262695314 109.7459945678711 32.500267028808594 +sub-10117_ses-V3_task-rest_run-01_bold 0.0008860135135135136 0.00820935668918919 6 39.06245174363433 1.0163270902708803 1.0022444032279898 0.5502076767114368 426.0746154785156 0.1515774269437932 40 9.00900900900901 2.796842944419002 2.489841567729252 2.9039582179404015 2.996729047587353 0.00656151 -0.007799655199050903 0.13617855310440063 444 90 90 54 2.090598935661228 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 26.323777701492205 4.801761150360107 25.78304672241211 10.376126289367676 273984.0 6.977477550506592 98.83007125854476 40.3515739440918 3.0112898162986657 92.50570678710938 252.16741943359375 230.27703857421875 98635.0 118.22004852294923 459.06217041015566 110.14827728271484 30.803485870361328 +sub-10117_ses-V3_task-rest_run-02_bold 0.0007112189616252822 0.008651100406320542 7 40.71643033631223 1.0221950889592764 1.0030452274660644 0.5533501783777716 413.3858947753906 0.17877277692552232 68 15.349887133182845 2.7762012785725614 2.4689499018927457 2.8805873855357413 2.9790665482891976 0.0105369 -0.008197395130991936 0.14447197318077087 443 90 90 54 2.0868053752691758 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 26.568167615611817 4.869494915008545 26.254865646362305 10.415349960327148 274013.0 6.993227958679199 100.66681976318358 41.057861328125 2.918164396590746 91.16834259033203 248.91162109375 227.20542907714844 98749.0 116.14898681640626 454.14492187499985 108.87660217285156 30.856630325317383 +sub-10118_ses-V1_task-cuff_run-01_bold 0.0012092134831460674 0.007255484426966293 5 36.29219467146396 1.0377125786936947 1.0109782677702706 0.5563042493120107 458.96453857421875 0.18901633792154468 0 0.0 2.6448708141685415 2.4486415693663925 2.890883218459955 2.595087654679278 0.0271043 -0.035962969064712524 0.11166734248399734 445 90 90 54 2.460049350784801 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 47.26581438191384 4.217919826507568 22.14957618713379 10.719100952148438 264024.0 7.669662952423096 71.5951683044433 32.55692672729492 2.174640818843792 88.25313568115234 261.99188232421875 246.88539123535156 106239.0 127.79977798461914 444.09483032226535 100.35742950439453 33.36435317993164 +sub-10118_ses-V1_task-cuff_run-02_bold 0.0012977752808988764 0.009286388606741573 5 36.24758210909909 1.0098470518243234 0.9949323054279281 0.5573361562533264 451.192626953125 0.17401418271739155 1 0.2247191011235955 2.670472202835817 2.4767540682493023 2.9155457174799553 2.6191168227781945 0.0140366 -0.035978641360998154 0.11184273660182953 445 90 90 54 2.4665288272895602 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 42.177356063271844 4.53109884262085 22.14457893371582 10.82022476196289 263869.0 7.5078654289245605 71.53393554687494 31.952857971191406 2.179199948988419 87.72673797607422 261.17388916015625 246.05955505371094 106464.0 128.03438186645508 442.6597686767575 99.75897979736328 31.58354377746582 +sub-10118_ses-V1_task-rest_run-01_bold 0.00154123595505618 0.007616875573033708 5 36.47694325222974 1.0491400558108104 1.0170657463288288 0.555355843048055 468.6264953613281 0.17329034059756349 78 17.528089887640448 2.671740258428185 2.469733235194952 2.9237373838211145 2.621750156268487 0.0169173 -0.03625300154089928 0.11225691437721252 445 90 90 54 2.4470784402223282 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 49.645752327517236 4.174607753753662 22.247713088989258 10.692134857177734 264046.0 7.69887638092041 71.81966590881348 32.87949752807617 2.050810428299477 90.00894927978516 264.5501708984375 249.13258361816406 106299.0 127.59753036499023 449.6013549804686 101.80769348144531 33.86324691772461 +sub-10118_ses-V1_task-rest_run-02_bold 0.002002847533632287 0.00929310387892377 4 35.967551387865164 1.0425145530786526 1.0276424051011244 0.5577270576544187 443.5204772949219 0.1817182863474618 80 17.937219730941703 2.660193036166033 2.4736165683739753 2.9002748847534305 2.606687655370692 0.0138661 -0.036454830318689346 0.11289023607969284 446 90 90 54 2.4639081920803108 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 42.54842847238724 4.557506561279297 22.119972229003906 10.816143989562988 263847.0 7.385650634765625 71.56367950439446 32.21503448486328 2.1942152788894305 86.838623046875 258.94610595703125 243.81167602539062 106541.0 127.34754180908203 438.7421875 98.95276641845703 31.231916427612305 +sub-10119_ses-V1_task-cuff_run-01_bold 0.000567685393258427 0.012455931056179776 5 35.64302153626123 1.0932206961936939 0.9874445722072074 0.42965543475112106 397063.5625 0.3468717567628248 1 0.2247191011235955 2.67226614125603 2.68457014084507 2.8530298591549297 2.479198423768092 0.00617812 -0.024816010147333145 0.03197255730628967 445 96 96 54 4.18234575625947 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 170.96278001714143 46.269630432128906 619.888916015625 31.497236251831055 349336.0 0.2641018405556679 2626.2360229492188 1426.279541015625 2.266696145220462 3578.799072265625 20975.716796875 20539.201171875 82893.0 13489.8232421875 29656.312499999993 4910.89892578125 42.07857131958008 +sub-10119_ses-V1_task-cuff_run-02_bold 0.0006895955056179775 0.010217744898876405 5 35.602794694572054 1.1051421296396402 1.0135298229954952 0.42996851511863643 362486.28125 0.3424707193229436 1 0.2247191011235955 2.6626989185802787 2.676096901408451 2.8491222535211267 2.4628776008112587 0.00403245 -0.02518831565976143 0.033085525035858154 445 96 96 54 4.205752670261587 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 176.62292075031283 47.592529296875 619.6043090820312 32.31830596923828 349398.0 0.19854849502444274 2625.164855957028 1437.8330078125 2.227716958522615 3572.228759765625 20834.9921875 20418.896484375 82773.0 13441.5658203125 29415.1078125 4854.962890625 45.18629455566406 +sub-10119_ses-V1_task-rest_run-01_bold 0.0008733258426966292 0.00981402206741573 5 35.822520036959425 1.1074746712612615 1.545901921238738 0.42816192505153 365626.53125 0.34665048984750013 275 61.79775280898876 2.657760406807654 2.6790715492957746 2.838548732394366 2.4556609387328217 0.00499147 -0.024880358949303627 0.03279728814959526 445 96 96 54 4.171129404069909 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 178.27599992954447 48.29873275756836 624.03857421875 32.95979309082031 349833.0 0.3525141417980195 2645.1430175781243 1450.5164794921875 2.2485007564315094 3701.186279296875 21381.4140625 20960.53515625 82388.0 13705.313720703125 30265.370800781246 5025.11572265625 45.34473419189453 +sub-10119_ses-V1_task-rest_run-02_bold 0.0007161797752808989 0.010371221662921346 5 36.718461728423456 1.1108295241666666 1.0024794461486477 0.43047534809582855 345018.25 0.37411714977801586 281 63.146067415730336 2.6656094229863636 2.6865712676056335 2.846016901408451 2.464240099945005 0.0059444 -0.024721723049879074 0.031508538872003555 445 96 96 54 4.203975956074126 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 173.16670676321993 49.35335922241211 617.8312377929688 33.56840133666992 348883.0 0.2481327742338181 2608.011547851561 1424.5433349609375 2.182483597456157 3558.450927734375 20904.5078125 20468.86328125 83135.0 13459.46416015625 29543.10234375 4868.900390625 44.4815673828125 +sub-10120_ses-V1_task-cuff_run-01_bold 0.0015472930648769573 0.01454983172259508 3 41.468838520538135 1.1969984543721974 0.9788725714573988 0.4487304635975846 324918.1875 0.31765957534864614 2 0.44742729306487694 2.6967079825328164 2.743887323943662 2.823292394366197 2.522944229288591 0.0156784 -0.013487166725099087 0.02551214210689068 447 96 96 54 4.4616874510005 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 187.29780252155834 52.833251953125 448.95660400390625 36.275882720947266 329849.0 0.43700389862060546 1892.1400878906243 1071.0208740234375 1.7515228386615904 3756.986572265625 21692.55859375 21344.568359375 98538.0 14544.9267578125 30196.01308593749 4783.943359375 38.87715530395508 +sub-10120_ses-V1_task-cuff_run-02_bold 0.0010994854586129754 0.01154180096196868 3 42.66031353345286 1.2550274200000013 1.0074425476233184 0.4486912592977508 315417.3125 0.3478011683342269 9 2.0134228187919465 2.680624562031468 2.7373611267605633 2.813318309859155 2.4911942494746846 0.0156978 -0.014068706892430782 0.02541355974972248 447 96 96 54 4.4068736895646055 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 146.70916944680278 53.846656799316406 451.2779235839844 36.75227355957031 329966.0 0.2840085104107857 1916.7107849121094 1047.7869873046875 1.749962329341641 3799.40283203125 21711.166015625 21375.046875 98461.0 14462.599609375 30294.984375 4850.36328125 43.3212776184082 +sub-10120_ses-V1_task-rest_run-01_bold 0.0013139013452914798 0.013701518139013453 4 40.933215208089905 1.239498357910113 1.1017473461573037 0.44760514717422556 331500.5625 0.3019262501292006 197 44.17040358744394 2.6631240128810725 2.720365070422535 2.7895752112676058 2.479431756953076 0.0179333 -0.014566101133823395 0.025136226788163185 446 96 96 54 4.438023185921443 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 158.52714854917386 53.72407913208008 461.5032043457031 36.6823844909668 330829.0 0.2969785332679749 1937.8799072265606 1086.66259765625 1.623912995557271 3912.798828125 22213.16015625 21802.927734375 97619.0 15019.051855468751 31021.677734374996 4912.7314453125 41.46552658081055 +sub-10120_ses-V1_task-rest_run-02_bold 0.0004969798657718121 0.025872469798657715 3 41.59980669152469 1.1383411473318388 1.2815220203587447 0.4524926517300891 315837.34375 0.3411397379173954 241 53.914988814317674 2.730644827690339 2.780317746478873 2.90016 2.5114567365921423 0.00780129 -0.014102156274020672 0.025578053668141365 447 96 96 54 4.479409789702022 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 164.0773276919892 53.21242904663086 450.23834228515625 36.35498046875 328034.0 0.31576186418533325 1912.9497070312498 1067.53857421875 1.8438915742966202 3738.3828125 21474.423828125 21170.45703125 100024.0 14418.720556640626 29864.58984375 4726.1474609375 32.77540969848633 +sub-10120_ses-V3_task-cuff_run-01_bold 0.0018854586129753914 0.014501453445190157 3 46.889858074955185 1.308355054596412 1.0332350818834082 0.45727531248545494 196963.625 0.38648423803530535 14 3.131991051454139 2.6778631558714623 2.712734647887324 2.8022940845070425 2.5185607352200208 0.0302271 -0.017844442278146744 0.02660987339913845 447 96 96 54 4.492402178152526 0.7999997138977051 2.21875 2.21875 2.3999977111816406 8 149.21610149250148 68.20394897460938 525.9539184570312 46.66075897216797 328873.0 0.44853391051292435 2239.181347656247 1203.2471923828125 2.113970141637929 3721.08251953125 21743.83984375 21427.84765625 100059.0 14671.7974609375 30128.984960937487 4769.7734375 41.20915222167969 +sub-10120_ses-V3_task-cuff_run-02_bold 0.0009981614349775785 0.009893520739910313 4 42.96889922752808 1.2822539266966286 1.0073102797752818 0.45999586928145964 216183.4375 0.3323480157674493 0 0.0 2.658557376180663 2.705374647887324 2.779907605633803 2.490389875020862 0.0103745 -0.018695322796702385 0.02681809477508068 446 96 96 54 4.4841176060589065 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 194.27920285500736 65.56330871582031 555.672119140625 44.51017761230469 328266.0 0.1679805889725685 2354.4169921875 1339.4161376953125 2.1193642067985268 3710.840576171875 21597.595703125 21299.154296875 100635.0 14445.950781250001 29889.8669921875 4749.88623046875 49.69050979614258 +sub-10120_ses-V3_task-rest_run-01_bold 0.0010347533632286995 0.01413218692825112 4 44.99451008921352 1.2919812598876403 0.9947270175505613 0.45508979149068157 246328.25 0.3255053418061985 232 52.01793721973094 2.6900244730047045 2.7287211267605636 2.802370704225352 2.538981588028197 0.0117163 -0.017714280635118484 0.025898141786456108 446 96 96 54 4.42896369088948 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 202.0865617602443 62.13031768798828 524.9014892578125 42.361270904541016 329424.0 0.326433451473713 2229.7135131835935 1248.146484375 2.05529399426341 3833.870361328125 21993.333984375 21677.916015625 99569.0 14693.6595703125 30570.462890624996 4894.55517578125 41.91357421875 +sub-10120_ses-V3_task-rest_run-02_bold 0.001114026845637584 0.010559222460850112 3 42.90908550040363 1.2838856054035874 1.0093487917937225 0.45990031209841925 236680.9375 0.31846045863472433 239 53.4675615212528 2.657988050527027 2.703202253521127 2.775905352112676 2.494856545947278 0.0158113 -0.01868455857038498 0.027146805077791214 447 96 96 54 4.472961048358535 0.7999997138977051 2.21875 2.21875 2.3999977111816406 7 200.2414007012 63.01176452636719 554.2022705078125 42.81012725830078 328128.0 0.20871031284332275 2359.0209350585847 1316.234619140625 2.0531793213415286 3778.235107421875 21764.91015625 21458.263671875 100585.0 14621.683007812502 30153.58632812498 4797.3046875 47.824256896972656 +sub-10121_ses-V1_task-cuff_run-01_bold 0.0025726696832579186 0.010726662488687783 8 35.234609629750565 1.0657948377097504 1.0194101799773256 0.4236351083960596 15271.4697265625 0.22391540900439597 2 0.45248868778280543 2.3554146962876694 2.347358240057697 2.2632332434005242 2.455652605404787 0.00819987 0.000722815515473485 0.012027764692902565 442 90 90 60 2.6731526635021052 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 74.2093112059041 12.417634010314941 27.352144241333008 8.588235855102539 329766.0 0.009049774147570133 108.74604415893555 65.57066345214844 3.6316083431732675 285.30029296875 1113.9412841796875 1047.1561279296875 88421.0 572.4367065429688 1838.1448974609375 391.7285461425781 32.28041458129883 +sub-10121_ses-V1_task-rest_run-01_bold 0.002848574660633484 0.010596946108597285 8 32.88271474058959 1.0704151172108831 1.0545805996145128 0.422828998920744 15426.6455078125 0.19502308580806874 106 23.981900452488688 2.361635528381227 2.3571707396677835 2.26708740991404 2.460648435561857 0.00901961 0.001237465301528573 0.01311598252505064 442 90 90 60 2.6606276621061817 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 82.06118176004091 12.20631217956543 26.627410888671875 8.443439483642578 329680.0 0.009049774147570133 104.57489509582514 65.06932830810547 3.627509147166011 285.6827087402344 1106.3577880859375 1041.3756103515625 88576.0 562.9293060302734 1827.3252868652344 391.4000244140625 32.677757263183594 +sub-10121_ses-V1_task-rest_run-02_bold 0.0018385874439461882 0.012661218834080718 4 37.75975118062922 1.0578737819775281 1.0006865801348306 0.4244988811769087 14210.564453125 0.2630314727738729 172 38.56502242152467 2.3638910827659934 2.365591572666503 2.25999157686267 2.4660900987688072 0.00544638 0.001846061204560101 0.011624098755419254 446 90 90 60 2.670192178513987 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 72.61389913609457 12.695197105407715 27.388893127441406 8.845292091369629 329419.0 0.026905830949544907 108.4311691284178 64.95376586914062 3.6539408423700435 282.9060974121094 1114.262939453125 1047.611083984375 88732.0 569.1284210205079 1840.130804443359 392.333251953125 30.161041259765625 +sub-10122_ses-V1_task-cuff_run-01_bold 0.0015874943566591422 0.007064075869074492 7 39.500599101583695 1.1076861452941182 1.0163053452714923 0.535123441345631 503.6199645996094 0.17213639169426992 0 0.0 2.655127760708945 2.448229069382784 2.846462386891747 2.670691825852304 0.0142387 -0.008196664042770863 0.06830064952373505 443 90 90 54 2.5333084038096154 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 34.02662951334289 5.327997207641602 21.899354934692383 11.02483081817627 278729.0 7.058691024780273 70.32189636230464 32.36390686035156 0.9648860572380755 89.60372924804688 274.2331237792969 262.077880859375 94008.0 121.15959815979005 464.0737030029297 103.45226287841797 35.35553741455078 +sub-10122_ses-V1_task-cuff_run-02_bold 0.003224076576576577 0.009105538693693694 6 40.76402179395034 1.1277376336343117 1.032082384401806 0.535949410265112 493.1690979003906 0.1700744067778358 1 0.22522522522522523 2.6852235943268354 2.46600823534297 2.874262385787074 2.715400161850462 0.0197319 -0.007643040269613266 0.06712064892053604 444 90 90 54 2.5199126361940536 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.96442269881503 5.51801872253418 22.156736373901367 11.194820404052734 278544.0 7.078828811645508 70.96587944030756 32.361846923828125 0.9610772956861728 89.6573486328125 272.2325744628906 260.11260986328125 94247.0 118.88626708984374 460.5993255615234 103.22232055664062 31.465789794921875 +sub-10122_ses-V1_task-rest_run-01_bold 0.0011762471910112362 0.009439374741573036 5 37.73490645443695 1.0434205321846848 1.0001942938963961 0.534244780031383 514.8504028320312 0.22963068734246112 104 23.370786516853933 2.677083316595196 2.4556290690887344 2.8685957193455804 2.707025161351273 0.0174052 -0.008397556841373444 0.06692260503768921 445 90 90 54 2.537864597471493 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.476347543310276 5.237416744232178 21.85819435119629 11.002246856689453 279078.0 7.155056476593018 70.48089599609375 31.79293441772461 0.9567935796701428 89.35262298583984 274.79351806640625 262.73931884765625 93637.0 120.62786865234375 464.4984436035154 103.52716064453125 31.175212860107422 +sub-10122_ses-V1_task-rest_run-02_bold 0.0020472171945701357 0.008152487081447965 8 43.09266918646261 1.1596458378911563 1.0212021185260776 0.5368413725722139 485.6903381347656 0.16438125790297736 56 12.669683257918551 2.6547166501408155 2.4365540698467067 2.840999887108807 2.6865959934669332 0.0131919 -0.009069779887795448 0.06919629126787186 442 90 90 54 2.5378626849957326 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 34.685905759633 5.474224090576172 22.09227752685547 11.16063404083252 278601.0 7.1108598709106445 70.59049987792969 32.4716682434082 1.0085555243773676 88.32218170166016 270.9792785644531 258.7398376464844 94046.0 119.85690689086914 457.55374908447266 101.95132446289062 33.04139709472656 +sub-10122_ses-V3_task-cuff_run-01_bold 0.0032398871331828444 0.010082763137697518 7 35.77283139468328 1.044521444954751 1.0240278459502261 0.5383145427935468 476.05780029296875 0.17283082911526979 2 0.45146726862302483 2.7021277624900475 2.4476999027371447 2.8778040523130075 2.780879332419991 0.0211991 -0.017421497032046318 0.08871635049581528 443 90 90 54 2.549406666338001 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.89949313206497 4.601756572723389 22.393234252929688 10.848758697509766 280287.0 7.419864654541016 73.41557769775399 33.81062316894531 0.5694605951405833 86.80086517333984 264.8340148925781 251.35891723632812 90467.0 120.06817550659181 448.3271057128906 98.59452056884766 31.001747131347656 +sub-10122_ses-V3_task-cuff_run-02_bold 0.0008382882882882883 0.008111928108108108 6 38.48354317634311 1.0405927077878103 0.9839109237471777 0.5391015750459132 467.1600646972656 0.18528688741905883 1 0.22522522522522523 2.670509706861504 2.4282332368440134 2.842562387046719 2.7407334966937795 0.0169336 -0.017828017473220825 0.08901873975992203 444 90 90 54 2.5467211969790347 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.470368154523158 4.591392517089844 22.304847717285156 10.837838172912598 280396.0 7.490991115570068 73.32939147949219 33.474853515625 0.5968696118724739 85.6636734008789 262.0142517089844 248.94821166992188 90421.0 117.9009017944336 444.2455139160156 97.75189971923828 33.10609817504883 +sub-10122_ses-V3_task-rest_run-01_bold 0.0008990067720090293 0.007775329954853273 7 36.694264852171955 1.0395376044796378 0.9862107486425332 0.5363105265369077 494.7333679199219 0.15722323383870707 44 9.932279909706546 2.696149984977952 2.4528832358645105 2.853837386598691 2.7817293324706553 0.0227789 -0.012492123991250992 0.06933152675628662 443 90 90 54 2.5644563336227004 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.0413477382545 4.548208713531494 21.418415069580078 10.765236854553223 279260.0 7.365688800811768 69.98205413818356 30.65029525756836 0.6051118517293599 86.3724594116211 266.4992980957031 253.4650115966797 93393.0 119.84650268554688 450.2289001464844 98.83718872070312 33.55131530761719 +sub-10122_ses-V3_task-rest_run-02_bold 0.0022482921348314605 0.010477347752808988 5 41.54855985486483 1.0576354740990985 0.9963767307882886 0.5403627820093325 454.9472351074219 0.22405069981649237 96 21.573033707865168 2.6875055404757795 2.438954069751339 2.8539498865942203 2.7696126650817794 0.0151422 -0.016496073454618454 0.08448805660009384 445 90 90 54 2.5404742568927356 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 33.19219097840823 4.73433256149292 22.01167869567871 10.92809009552002 279597.0 7.38651704788208 71.78651428222656 32.01390838623047 0.6454994386543107 84.57830047607422 260.1280822753906 246.7438201904297 91836.0 117.64157295227051 441.7292251586914 97.12457275390625 29.73196792602539 +sub-10123_ses-V1_task-cuff_run-01_bold 0.0006710933940774487 0.011316982346241459 11 35.38941163904111 1.0561188127853882 0.9864744923059361 0.41868526457337846 8183.66259765625 0.1123666457067148 0 0.0 2.395806376570841 2.4223374037449594 2.386041571853893 2.3790401541136714 0.00181568 0.0007397512090392411 0.02386634610593319 439 90 90 60 3.6036032254365065 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 155.41640916302495 15.048921585083008 38.1414794921875 10.496583938598633 348861.0 0.002277904422953725 144.3895263671875 109.2105941772461 2.860736324326086 195.16651916503906 962.9094848632812 943.70849609375 72111.0 561.7597045898438 1417.8793334960938 261.8773193359375 37.28606414794922 +sub-10123_ses-V1_task-rest_run-01_bold 0.0007275113122171945 0.011371159208144797 8 35.529353887641726 1.064045457505669 0.9927854689795909 0.4195568470412479 8016.09423828125 0.1206664000482609 0 0.0 2.404302208713076 2.431599903376901 2.3979707380465376 2.3833359847157896 0.0024279 0.0012379178078845143 0.02370588667690754 442 90 90 60 3.6290026160156783 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 170.9606317159713 15.047407150268555 38.38935852050781 10.57239818572998 348761.0 0.009049774147570133 145.24887084960938 110.80235290527344 2.8321940652045505 191.86949157714844 959.7469482421875 940.8190307617188 72083.0 562.3298767089843 1410.480126953125 259.24822998046875 36.919559478759766 +sub-10123_ses-V1_task-rest_run-02_bold 0.0009684615384615385 0.015142267443438915 8 36.06481193129252 1.0424429976870744 0.9867850978684813 0.41926837004055933 8170.85595703125 0.13085862931669073 5 1.1312217194570136 2.431899420978293 2.4361499031961 2.4316165700429058 2.4279317896958736 0.00485252 0.00025611784076318145 0.024004485458135605 442 90 90 60 3.612264744024988 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 159.4778728993478 15.017218589782715 38.03828811645508 10.538461685180664 348765.0 0.015837104991078377 143.55611267089841 107.86736297607422 2.838043492450182 192.95130920410156 957.746337890625 938.79296875 72188.0 557.7961822509766 1411.7639587402343 259.88861083984375 32.470977783203125 +sub-10123_ses-V3_task-cuff_run-01_bold 0.0009868181818181818 0.014196949704545454 10 38.46219636733484 1.151542721822323 0.9952399868109346 0.4201845372627536 10976.5234375 0.131677732847895 0 0.0 2.3750549974364676 2.4188749038825472 2.3721957390707438 2.334094349356111 0.00398908 -0.001842804835177958 0.017610521987080574 440 90 90 60 3.666670552894715 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 112.80315946960647 14.14537239074707 41.43988800048828 9.71363639831543 348897.0 0.00909090880304575 158.68408203125014 118.98104858398438 2.1956199996703445 204.02127075195312 1008.4732055664062 990.2750244140625 72022.0 584.6616577148437 1472.2901367187499 270.0728454589844 35.275421142578125 +sub-10123_ses-V3_task-cuff_run-02_bold 0.0010085067873303168 0.013560993054298642 8 38.4312988420181 1.168657603061225 1.0051905986167804 0.4219903669131794 10529.09765625 0.12579727107361408 0 0.0 2.356393891446165 2.391587404966855 2.36554157266849 2.3120526967031503 0.00312616 -0.0019365389598533511 0.016302794218063354 442 90 90 60 3.7121443554424305 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 103.18080822117618 14.47717571258545 41.818851470947266 9.916290283203125 348586.0 0.0022624435368925333 162.42874145507812 117.51029968261719 2.098226470382076 203.15342712402344 1010.306884765625 992.6787719726562 72219.0 591.4287414550781 1472.505493164062 267.4119873046875 36.64448547363281 +sub-10123_ses-V3_task-rest_run-01_bold 0.00065 0.013210055146726863 7 40.3811837709728 1.160597183846154 0.9786717987330317 0.4186485697425844 10633.8857421875 0.1641555350526358 18 4.063205417607223 2.3534063931427442 2.3995457379839524 2.3565624063586235 2.3041110350856555 0.0120711 -0.0032861041836440563 0.019700221717357635 443 90 90 60 3.6705478020702214 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 133.91252432199065 14.277158737182617 40.51985168457031 9.792325019836426 349204.0 0.004514672793447971 154.03894042968722 117.8443374633789 2.310176443396138 200.95611572265625 1004.793212890625 985.7257080078125 71830.0 583.6968322753906 1465.5395507812502 268.54815673828125 35.76103210449219 +sub-10123_ses-V3_task-rest_run-02_bold 0.0005171266968325792 0.011117772941176468 8 38.43780936242631 1.1666649252607706 0.9815134924716553 0.4216719349485773 10492.08203125 0.12414869639983651 1 0.22624434389140272 2.352330002653361 2.3812332387116255 2.363374906087919 2.312381863160538 0.0046471 -0.0025171025190502405 0.01724599115550518 442 90 90 60 3.7133451680696794 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 106.66072228945443 14.618057250976562 41.962730407714844 9.941177368164062 348528.0 0.0 164.74582214355462 118.28207397460938 2.002148702038543 205.1844024658203 1012.11572265625 995.60302734375 72252.0 588.7018402099609 1477.125708007812 268.1130065917969 38.41484069824219 +sub-10125_ses-V1_task-cuff_run-01_bold 0.0006217460317460319 0.006554079727891155 9 34.83418842675002 1.111991352431818 0.9866582160227269 0.43694725483224856 13124.794921875 0.1576618370937384 0 0.0 2.426748052983523 2.4444707361987934 2.511974900183086 2.3237985225686884 0.00659222 -0.0013674591900780797 0.01787487417459488 441 90 90 60 2.790099448988304 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 43.91749076046577 14.321736335754395 37.704933166503906 9.725624084472656 329715.0 0.0 162.15419006347656 92.06504821777344 3.953980295571128 304.1082763671875 1173.2255859375 1115.726806640625 88150.0 641.7259521484375 1894.2929992675781 399.88555908203125 40.49130630493164 +sub-10125_ses-V1_task-rest_run-01_bold 0.0011075900900900902 0.007674549211711711 6 35.90514617469524 1.1117130624153495 0.9812915111512414 0.4355201682568043 13247.0166015625 0.1786363873180927 15 3.3783783783783785 2.4332036054008404 2.449724902656678 2.5115832335319825 2.33830268001386 0.0211552 -0.002851962810382247 0.017620034515857697 444 90 90 60 2.7793105175118016 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 42.93069272191094 14.652384757995605 38.30854415893555 9.954955101013184 330294.0 0.0 165.8146400451659 92.7418212890625 4.217322118881065 307.2359313964844 1206.5418701171875 1145.288330078125 87507.0 663.1306579589844 1948.693786621093 412.0740661621094 38.83992004394531 +sub-10125_ses-V1_task-rest_run-02_bold 0.0008753153153153154 0.006625207927927928 6 34.74452418282168 1.0954009781489848 0.9923765907900669 0.43836219894910644 13374.84765625 0.1606252755292849 35 7.882882882882883 2.415903609944367 2.4263165702535083 2.5024999005595885 2.3188943590200046 0.00983373 0.0007865389343351126 0.019148116931319237 444 90 90 60 2.826630476251039 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 45.07292851404364 14.017937660217285 37.40620422363281 9.558558464050293 329430.0 0.0 161.11712646484375 92.18915557861328 3.6929742377395876 296.1932373046875 1157.9725341796875 1101.7725830078125 88420.0 641.5447082519531 1867.2051086425786 389.78082275390625 39.87723159790039 +sub-10125_ses-V3_task-cuff_run-01_bold 0.0007034615384615385 0.0072179407239818996 8 36.04174170197278 1.1018660009070298 0.9827954395464845 0.4446666490327625 11798.927734375 0.2130018853379943 0 0.0 2.464486934995971 2.4640457354209526 2.578554064204134 2.3508610053628254 0.0112101 -0.003668806981295347 0.021893054246902466 442 90 90 60 2.712773877447277 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 42.840974333130696 15.221831321716309 42.38166046142578 10.432126998901367 326887.0 0.0067873308435082436 187.2692413330078 102.42095947265625 4.567418622727387 325.1225280761719 1204.5462646484375 1144.4276123046875 90111.0 652.7692565917969 1962.069091796875 421.8638610839844 37.26047897338867 +sub-10125_ses-V3_task-cuff_run-02_bold 0.0010588939051918737 0.009020057110609481 7 35.8692733627828 1.079642069705882 1.0472671056787322 0.44498393094071437 11915.0888671875 0.24595028601680238 0 0.0 2.4906577643977172 2.490399901040399 2.6161582293765453 2.3654151627762077 0.0203607 -0.003944084979593754 0.021699482575058937 443 90 90 60 2.7311892132765108 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 39.45285185623182 15.103800773620605 42.624149322509766 10.413092613220215 327068.0 0.013544018380343914 188.67415161132806 101.49208068847656 4.1140084517566535 329.6095275878906 1201.043212890625 1145.033935546875 89985.0 645.4582397460938 1950.664599609375 419.24139404296875 33.93121337890625 +sub-10125_ses-V3_task-rest_run-01_bold 0.0009067792792792793 0.00863502313063063 6 36.574707840790076 1.0781021117381482 0.9936040531151249 0.44327743409026604 12198.1484375 0.2580663177130395 157 35.36036036036036 2.511766090986458 2.5083957336586424 2.6317623954231584 2.3951401438775735 0.0133366 -0.003982197027653456 0.020088952034711838 444 90 90 60 2.659036992542257 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 42.8666070963318 15.343597412109375 43.820064544677734 10.565315246582031 327515.0 0.01576576568186283 191.67185058593748 106.22342681884766 4.584684779654745 340.116943359375 1236.3414306640625 1173.779296875 89732.0 658.1456329345704 2026.6169006347654 441.4277648925781 34.99554443359375 +sub-10125_ses-V3_task-rest_run-02_bold 0.000857918552036199 0.006945640248868778 8 35.19897015458049 1.089127321315194 0.9993349270294779 0.44539538376646937 12114.4599609375 0.22648453171324673 137 30.995475113122172 2.4674813802519204 2.468429068580108 2.587837397168581 2.346177675007073 0.0112169 -0.0035623128060251474 0.02291218936443329 442 90 90 60 2.730495653303131 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 42.00131980478661 14.79248046875 42.17888259887695 10.205883026123047 327258.0 0.011312217451632023 187.46550445556602 101.21896362304688 4.146510370410476 321.4495849609375 1183.4808349609375 1125.0384521484375 90043.0 641.931005859375 1927.242858886717 412.02490234375 37.70842742919922 +sub-10126_ses-V1_task-cuff_run-01_bold 0.001084954954954955 0.008834508536036036 6 31.44440986331829 1.0627475577426653 1.0214870298645589 0.4555977235293721 10630.142578125 0.16112979206249678 0 0.0 2.5018382942308506 2.4715332351234265 2.541337399016325 2.4926442485528004 0.00583675 0.003836654359474778 0.02280857414007187 444 90 90 60 3.095649305559506 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 16 72.93408690999479 15.9346342086792 43.381385803222656 10.92792797088623 321643.0 0.009009009227156639 170.5484344482418 114.8362808227539 3.8414060119904674 293.87249755859375 1160.4608154296875 1129.858154296875 94813.0 622.7887573242188 1770.6658447265625 364.9806823730469 35.42359161376953 +sub-10126_ses-V1_task-rest_run-01_bold 0.001082212189616253 0.00873619553047404 7 31.15018933067876 1.0748705679185517 0.9974456453846152 0.45476690120882785 10150.107421875 0.13350683244115477 16 3.6117381489841986 2.495471628614384 2.461912402172391 2.535870732566884 2.488631751103877 0.0078194 0.004143808037042618 0.02238529361784458 443 90 90 60 3.0957913900239453 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 77.92373265477823 16.268465042114258 43.01302719116211 11.11963939666748 321707.0 0.0022573363967239857 167.87269287109396 115.09815216064453 3.765405917300929 295.90130615234375 1164.7340087890625 1133.740478515625 94679.0 625.6343383789062 1778.100939941406 366.2179870605469 36.16777801513672 +sub-10126_ses-V1_task-rest_run-02_bold 0.0008378911564625851 0.007055257845804988 9 31.567828226090903 1.0679383815 0.9967321044772729 0.45496390858756625 10390.2001953125 0.141274938064089 9 2.0408163265306123 2.476121632120957 2.4527040692049638 2.5008082339601425 2.4748525931977636 0.00958237 0.004434147384017706 0.022015422582626343 441 90 90 60 3.102742085363903 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 72.28341003307241 16.039670944213867 43.008689880371094 10.94104290008545 321767.0 0.0022675737272948027 170.26100463867195 114.47392272949219 3.629496425099906 292.17010498046875 1155.8714599609375 1126.8616943359375 94651.0 617.3662414550781 1764.11572265625 363.18060302734375 39.48152542114258 +sub-10127_ses-V1_task-cuff_run-01_bold 0.0009875900900900901 0.015580923851351352 6 48.67449859891648 1.1004000888261853 0.9846780347855537 0.43246738299696774 4430.4384765625 0.3204856182927359 0 0.0 2.4473201424061832 2.505287400448823 2.435220736566355 2.4014522902033715 0.00493529 0.010593408718705177 0.01873810775578022 444 90 90 60 3.0518297807675316 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 117.44450276776398 20.14535903930664 40.903587341308594 13.986486434936523 344339.0 0.011261261999607086 149.43514251708973 93.10914611816406 1.8772663048215597 235.9691162109375 948.2496948242188 918.284912109375 76260.0 485.69268188476565 1484.0541809082035 300.89453125 28.218690872192383 +sub-10127_ses-V1_task-rest_run-01_bold 0.0017540315315315318 0.01672083509009009 6 47.08896582735886 1.098455360835214 1.0215314138826184 0.43271574174241506 4548.85009765625 0.34957905435579917 256 57.65765765765766 2.4513451470146195 2.4995915673418216 2.4385915697657436 2.4158523039362945 0.00551127 0.010327251628041267 0.018310679122805595 444 90 90 60 3.0668374764239856 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 115.51126533956551 20.121984481811523 41.338565826416016 14.020270347595215 344407.0 0.020270271226763725 150.63243103027355 93.9693374633789 1.9097491004876996 237.9793701171875 952.7096557617188 922.92236328125 76046.0 493.32039642333984 1487.0405883789062 300.9342041015625 26.497882843017578 +sub-10127_ses-V1_task-rest_run-02_bold 0.0015011261261261262 0.014830357454954956 6 51.6664030536795 1.1355828511286687 1.0029880896388261 0.43217719428405554 4511.8515625 0.3686938044964098 266 59.909909909909906 2.440200696086729 2.5022957339010343 2.423370737037232 2.394935617321921 0.00524189 0.010465686209499836 0.01981588453054428 444 90 90 60 3.057781981687751 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 134.82065888585223 19.968381881713867 40.69322204589844 13.810811042785645 344257.0 0.006756756920367479 148.11081542968753 93.71337890625 1.8786568244050255 234.578369140625 944.3444213867188 915.7635498046875 76347.0 484.5686981201172 1476.4270996093744 299.4842529296875 28.718027114868164 +sub-10128_ses-V1_task-cuff_run-01_bold 0.0011316326530612245 0.007012509977324263 9 40.80863640515911 1.0722958483863643 1.0060239515681813 0.5684815924789135 399.0172424316406 0.2344405443079954 2 0.45351473922902497 2.929859709859977 2.6310123954529603 3.016062380152449 3.1425043539745223 0.0204884 -0.021443767473101616 0.17097090184688568 441 90 90 54 1.8637985505505177 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.259003947641908 7.9240217208862305 32.197471618652344 12.281179428100586 253373.0 6.639455795288086 130.41270446777344 51.35904312133789 1.6713184460458814 118.43000030517578 300.17236328125 268.3650817871094 116197.0 120.62947845458984 585.6308349609375 143.9876251220703 33.44993591308594 +sub-10128_ses-V1_task-cuff_run-02_bold 0.0007322850678733032 0.006345604864253394 8 39.678237707369604 1.0587570001814062 0.9981950348526073 0.5696346294021585 394.5549011230469 0.19600549731128952 0 0.0 2.9186694322394615 2.6230873957678718 2.9990957141599766 3.133825186790537 0.0172179 -0.021475596353411674 0.17451651394367218 442 90 90 54 1.8652443719052993 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.100484339003287 7.889322757720947 32.39418029785156 12.246606826782227 253611.0 6.694570541381836 130.9954833984375 51.74536895751953 1.6975717091632463 116.9444580078125 297.7922668457031 266.1153869628906 116045.0 120.33711242675784 580.251147460937 142.66990661621094 34.433326721191406 +sub-10128_ses-V1_task-rest_run-01_bold 0.0008542081447963801 0.007623545158371041 8 40.403263602585035 1.0522403006122447 0.9883006719501133 0.5665062813564246 409.9134216308594 0.2288708801786416 108 24.43438914027149 2.9513360986821975 2.6510915613217527 3.036654046000876 3.166262688723963 0.00809226 -0.020585019141435623 0.16600793600082397 442 90 90 54 1.856686745760521 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.57153746141011 7.788693428039551 32.06743240356445 12.260181427001953 253274.0 6.757918834686279 128.98722534179683 51.42921829223633 1.6340076994241075 122.17547607421875 305.0302734375 273.01019287109375 116366.0 119.83824348449707 594.4966583251953 147.0409698486328 33.0453987121582 +sub-10128_ses-V1_task-rest_run-02_bold 0.0009212244897959183 0.004877909002267574 9 39.22604074488633 1.08491181559091 1.0122577932500005 0.5709499498065898 380.2465515136719 0.17971367061005314 49 11.11111111111111 2.911884709693691 2.6238040624060606 2.995937380952144 3.1159126857228685 0.00992831 -0.023796292021870613 0.1732909232378006 441 90 90 54 1.8542337101184634 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 29.39333341083458 8.0635404586792 32.736122131347656 12.447845458984375 252840.0 6.780045509338379 133.05260848999012 51.7850341796875 1.756155047095599 118.0165023803711 298.5025634765625 266.6916198730469 116661.0 120.37641906738281 583.3084106445312 143.82786560058594 37.68301773071289 +sub-10129_ses-V1_task-cuff_run-01_bold 0.0015350678733031674 0.020178718778280542 8 41.5193808591837 1.0489576156009066 0.9818400189569163 0.42477379820732575 4267.46337890625 0.25989284016169095 0 0.0 2.428929985950162 2.4417582363065784 2.4638999020934143 2.381131819450493 0.00293461 0.0007970801088958979 0.016012664884328842 442 90 90 60 2.8294032020012505 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 173.30684118930128 19.51534080505371 36.666568756103516 14.092761039733887 344204.0 0.12217195332050323 137.46923904418924 79.34576416015625 4.4566724298964795 224.46334838867188 946.1455688476562 901.7862548828125 75866.0 490.12671661376953 1518.7042846679688 318.7174987792969 25.189477920532227 +sub-10129_ses-V1_task-cuff_run-02_bold 0.0009919318181818182 0.01712676431818182 10 41.567508749886066 1.0489629242141227 0.9838334336218683 0.4244472356096614 4284.4130859375 0.2587776892951971 0 0.0 2.4289008207863594 2.442283236285717 2.4708457351507453 2.373573490922616 0.00282961 0.0006493941182270646 0.01506772916764021 440 90 90 60 2.8086331479785778 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 135.87677548215416 19.324371337890625 36.32724380493164 13.904544830322266 343950.0 0.08181817829608917 137.90351791381835 77.09510040283203 4.25176355005277 222.87713623046875 940.218505859375 896.97265625 76002.0 480.6888412475586 1516.281512451172 319.360595703125 27.895206451416016 +sub-10129_ses-V1_task-rest_run-01_bold 0.002882766439909297 0.017387465283446712 9 43.16891663300004 1.1038265157045464 1.060714556931817 0.4235647409763663 4555.29296875 0.2831741581145754 169 38.321995464852606 2.4289841534168546 2.441154069663919 2.468704068569181 2.3770943220174647 0.0026469 0.0009657496120780706 0.015289709903299809 441 90 90 60 2.808393133089971 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 195.30580814937724 19.038496017456055 36.128719329833984 13.65986442565918 343828.0 0.08843537420034409 136.10578689575186 78.55646514892578 4.298921005634051 224.35362243652344 949.9568481445312 906.417236328125 76133.0 483.62766723632814 1530.4862304687497 322.7508544921875 27.00552749633789 +sub-10129_ses-V3_task-cuff_run-01_bold 0.0013793227990970653 0.01301592099322799 7 39.3754503933258 1.0805689949321275 0.9762721698190048 0.4164340955442705 5584.8525390625 0.21592769909235973 0 0.0 2.55027301191247 2.5830207306933115 2.5619873981957673 2.505810906848331 0.00427609 -0.005600193981081247 0.02603985369205475 443 90 90 60 2.593048817708706 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 236.72255556827136 20.31466293334961 40.1157341003418 14.146727561950684 345139.0 0.045146726071834564 156.73635253906238 87.45537567138672 3.5742382346824533 302.9661865234375 1097.99853515625 1044.26416015625 75792.0 534.5948181152344 1839.2296142578118 402.7140808105469 29.24037742614746 +sub-10129_ses-V3_task-cuff_run-02_bold 0.0012363800904977378 0.01261841721719457 8 39.04434177725622 1.0971000170068026 0.9766853759410429 0.4171165070659254 5602.193359375 0.2264112382000506 0 0.0 2.529631348826054 2.5594832316286076 2.537491565835811 2.4919192490137427 0.00323057 -0.00643123360350728 0.025781087577342987 442 90 90 60 2.6273364457975608 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 245.09620807188983 20.0788631439209 39.809513092041016 13.975113868713379 345082.0 0.04524886980652809 157.68541793823246 86.26202392578125 3.490412434558441 293.73651123046875 1089.36865234375 1038.8485107421875 76027.0 522.828759765625 1820.359790039062 395.39727783203125 29.708847045898438 +sub-10129_ses-V3_task-rest_run-01_bold 0.003721809954751132 0.015260805203619908 8 37.457527623446715 1.0944100792743763 1.030329373854875 0.41698438427866397 5580.7919921875 0.21757295896444565 75 16.968325791855204 2.5434605129969428 2.5783248975465733 2.550341565325198 2.5017150761190567 0.00398358 -0.0051757958717644215 0.025085195899009705 442 90 90 60 2.6657277762305616 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 16 152.4370122202625 20.0084228515625 38.853515625 14.153846740722656 345277.0 0.11312218010425568 150.56154785156252 80.4123764038086 3.334601785111645 293.69622802734375 1091.7091064453125 1038.1494140625 75925.0 540.6452514648438 1809.7760498046878 389.4405822753906 26.98014259338379 +sub-10129_ses-V3_task-rest_run-02_bold 0.0026271493212669684 0.013343261583710408 8 37.12420508106579 1.096336390861678 1.0167224049206347 0.41836867804851746 5784.291015625 0.21510051500794825 75 16.968325791855204 2.521286905056742 2.5428082322912124 2.530862399432564 2.49019008344645 0.0039889 -0.005712378770112991 0.02591419219970703 442 90 90 60 2.668215096452325 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 210.53903234461285 19.850770950317383 39.70170974731445 13.843892097473145 345257.0 0.04072398319840431 157.11584167480473 84.57299041748047 3.5092975665143173 286.0920104980469 1083.122314453125 1031.362060546875 75997.0 530.303662109375 1796.0484863281247 386.5337829589844 29.37322235107422 +sub-10130_ses-V1_task-cuff_run-01_bold 0.0014437923250564333 0.017188553905191875 7 68.00940683635748 1.1726051333936653 0.9921000524208142 0.4737209581161142 3658.30419921875 0.5907043537214339 63 14.221218961625283 2.5392244025119557 2.502837400546177 2.6154248960723523 2.4994109109173386 0.00540466 0.025082221254706383 0.027229508385062218 443 90 90 60 2.3449478675721926 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 80.99857181634901 21.98802947998047 47.12044906616211 15.88261890411377 310313.0 0.06772009283304214 182.39458312988268 113.25279235839844 5.953057930484105 295.93975830078125 1041.288330078125 973.8612060546875 104234.0 498.0330841064453 1800.9725280761713 415.29986572265625 26.217918395996094 +sub-10130_ses-V1_task-rest_run-01_bold 0.002016839729119639 0.01341296920993228 7 68.42726046366522 1.197433503552036 1.0100948863348418 0.471817480632431 3885.06640625 0.6056321630960962 355 80.13544018058691 2.533007737126292 2.505254067116814 2.5995623967026713 2.49420674755939 0.00605442 0.02484137751162052 0.026710303500294685 443 90 90 60 2.3213151872024453 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 116.08897620132124 21.506099700927734 47.113040924072266 15.51693058013916 310624.0 0.06094808131456375 182.23409423828116 117.06476593017578 6.337381957470415 299.187744140625 1047.9901123046875 977.853271484375 103947.0 501.96209106445315 1816.6659912109367 421.2476501464844 28.157257080078125 +sub-10130_ses-V1_task-rest_run-02_bold 0.001035214446952596 0.017412704243792324 7 64.81322595753396 1.1289849579864257 1.0087331908823538 0.47524143998976026 3472.863525390625 0.560741888863332 352 79.45823927765237 2.5484438439426147 2.51343323345847 2.619162395923837 2.512735902445537 0.00450368 0.02662629820406437 0.027467207983136177 443 90 90 60 2.35317004106636 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 72.59948228948899 22.403026580810547 48.16349411010742 16.356658935546875 310658.0 0.1196388304233551 189.32934875488232 114.3480453491211 5.924990017865234 294.5727233886719 1038.502685546875 970.802490234375 104160.0 497.94797668457034 1789.9767944335913 412.5489501953125 26.095836639404297 +sub-10130_ses-V3_task-cuff_run-01_bold 0.003671873589164785 0.024588559864559816 7 66.35850763085969 1.1491108380769228 0.9739102463122181 0.4715652170434736 4290.05517578125 0.5608247301380233 43 9.706546275395034 2.634096619955156 2.604991563153602 2.7928082223571056 2.5044900743547602 0.00566138 0.01702176406979561 0.029687322676181793 443 90 90 60 2.1895255859360385 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 53.67928393070418 22.94184684753418 49.878353118896484 16.534988403320312 307507.0 0.08577878028154373 200.47043151855473 112.61101531982422 6.765330473490888 333.62225341796875 1191.6453857421875 1101.1400146484375 106707.0 576.1133056640625 2119.01201171875 502.9102478027344 23.178485870361328 +sub-10130_ses-V3_task-rest_run-01_bold 0.0014321719457013576 0.011280785226244344 8 64.39056054804986 1.181684787392291 1.042760430816326 0.4686763817200566 4731.6396484375 0.5376861783201289 335 75.7918552036199 2.565320242315203 2.5633540648081277 2.6709790605314945 2.461627601605987 0.00672937 0.01582566276192665 0.03188762068748474 442 90 90 60 2.155311110444306 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 97.26755167602177 22.05790138244629 50.5078239440918 15.91402816772461 308536.0 0.07013574987649918 202.8026123046875 121.63819885253906 7.423326214331981 335.210693359375 1200.8951416015625 1106.8212890625 105770.0 580.351400756836 2144.7078735351547 513.5296020507812 28.87213134765625 +sub-10130_ses-V3_task-rest_run-02_bold 0.002462364864864865 0.023191771531531534 6 67.83245072040636 1.169779673769752 1.0105125809255078 0.4734752204300094 3942.0693359375 0.6165277910181864 359 80.85585585585585 2.649764669458305 2.6187123959417185 2.798762388787175 2.5318192236460217 0.0168572 0.020508524030447006 0.02864903211593628 444 90 90 60 2.210569536130921 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 52 40.96040449941189 23.65818977355957 50.67521286010742 17.24774742126465 307798.0 0.13288289308547974 200.874330902099 112.54725646972656 6.425548837162381 329.58685302734375 1187.5347900390625 1096.946044921875 106470.0 574.8265991210938 2108.624560546874 496.2254638671875 21.825054168701172 +sub-10132_ses-V1_task-cuff_run-01_bold 0.0015895749440715883 0.013270926599552573 3 39.89690322213005 1.2191360172645738 1.0162719554260091 0.4498759362020157 595723.1875 0.24959111833736009 0 0.0 2.582285612109036 2.692863098591549 2.657401690140845 2.396592047594714 0.00946996 -0.014032282866537571 0.015918578952550888 447 96 96 54 4.468859412259536 0.7999997138977051 2.21875 2.21875 2.3999996185302734 2 130.93616714705846 34.7239990234375 532.1710205078125 23.6136474609375 336530.0 0.15327556803822517 2500.988171386718 1222.4478759765625 2.1201222361590473 3158.01220703125 19291.67578125 19018.96875 94176.0 12505.53857421875 26586.1474609375 4255.8662109375 44.8590087890625 +sub-10132_ses-V1_task-cuff_run-02_bold 0.0011853794642857143 0.01394428046875 2 41.13909572454141 1.232022341744966 1.0000916585906048 0.45117347716730954 472160.53125 0.2385629954321187 0 0.0 2.591176649384824 2.697460281690141 2.6700484507042255 2.406021215760106 0.0134895 -0.01447133719921112 0.016261333599686623 448 96 96 54 4.453827449810461 0.7999997138977051 2.21875 2.21875 2.3999996185302734 2 143.59009881516437 39.05030059814453 540.8941040039062 26.701597213745117 336360.0 0.2741303890943527 2537.9963500976564 1231.9652099609375 2.136016743853653 3159.416748046875 19244.685546875 19003.5625 94343.0 12343.45400390625 26485.982226562497 4266.77099609375 42.69392395019531 +sub-10132_ses-V1_task-rest_run-01_bold 0.0009587919463087249 0.01294022230425056 3 39.843552332690614 1.2125712700672662 1.0018409821300451 0.4493850118337064 465620.09375 0.2504142816130396 144 32.214765100671144 2.5825119189504457 2.6936608450704225 2.6551661971830987 2.3987087145978156 0.00868455 -0.014274057000875473 0.015816299244761467 447 96 96 54 4.449115747247674 0.7999997138977051 2.21875 2.21875 2.3999996185302734 3 143.0320017135284 38.86808395385742 522.0929565429688 26.494497299194336 336683.0 0.2034815520048142 2439.594604492187 1199.3485107421875 2.0905779040505834 3144.186767578125 19053.84765625 18791.1640625 94008.0 12329.502685546875 26252.457519531243 4223.55029296875 43.96650314331055 +sub-10132_ses-V1_task-rest_run-02_bold 0.001182102908277405 0.01518185995525727 3 41.40976553834082 1.2366251155605386 1.0017129595067267 0.4515988147998269 467697.5625 0.22561262924076664 114 25.503355704697988 2.586591449874838 2.687634929577465 2.6657307042253517 2.406408715821698 0.0121206 -0.014336916618049145 0.015593873336911201 447 96 96 54 4.49929270209259 0.7999997138977051 2.21875 2.21875 2.3999996185302734 2 100.19681027663582 38.96318817138672 535.5838623046875 26.588172912597656 336345.0 0.22527973651885985 2529.8124511718747 1173.05078125 2.12713499039433 3102.09619140625 19080.40234375 18833.8359375 94300.0 12393.532568359375 26243.212792968756 4185.9326171875 41.554134368896484 +sub-10133_ses-V1_task-cuff_run-01_bold 0.004104653243847876 0.052875762639821036 3 46.03420984571751 1.1049161907174891 0.9804463893721971 0.4495804529192844 88140.125 0.2792419486097789 7 1.5659955257270695 2.6482705151792385 2.6241532394366196 2.9074704225352113 2.413187883565884 0.00625601 -0.02630007453262806 0.034915436059236526 447 96 96 54 5.548764800508901 0.7999997138977051 2.21875 2.21875 2.3999996185302734 3 24.272873170463797 83.24722290039062 573.4593505859375 56.44802474975586 344893.0 0.40991263985633863 2443.655517578119 1068.291259765625 3.0437175687287583 2345.50439453125 17169.791015625 17322.6484375 85726.0 11817.1982421875 21818.64013671875 3121.87451171875 25.531400680541992 +sub-10133_ses-V1_task-cuff_run-02_bold 0.002451314031180401 0.044294659910913144 1 45.29287354435269 1.1149227535267854 1.0091076235937513 0.44609063705561186 106832.3984375 0.3182173393418512 18 4.008908685968819 2.631199806835997 2.5963402816901406 2.8879504225352113 2.4093087162826405 0.00689626 -0.02432520128786564 0.03374684974551201 449 96 96 54 5.657953035142215 0.7999997138977051 2.21875 2.21875 2.3999996185302734 4 23.58305383392277 75.15619659423828 536.0177612304688 50.979164123535156 345959.0 0.3738614886999131 2244.9092529296863 988.448486328125 2.7938060683327244 2325.43994140625 17051.6328125 17194.8828125 85052.0 11860.435156250001 21625.24970703125 3039.04638671875 26.451509475708008 +sub-10133_ses-V1_task-rest_run-01_bold 0.001377690582959641 0.04485688542600897 4 46.64147515467415 1.1256067468988769 0.9663687595056182 0.44962662218221117 99348.046875 0.2623836498560444 142 31.838565022421523 2.6337159063568234 2.6068687323943665 2.882199436619718 2.412079550056386 0.00874295 -0.027269717305898666 0.0356789156794548 446 96 96 54 5.53462609330216 0.7999997138977051 2.21875 2.21875 2.3999996185302734 0 39.09454437860142 79.05862426757812 577.7500610351562 53.50166702270508 344987.0 0.2358317092061043 2476.8077148437505 1112.4039306640625 2.749693875740328 2383.005126953125 17110.8515625 17243.18359375 85710.0 11800.463671874999 21814.00888671875 3115.491943359375 27.071731567382812 +sub-10133_ses-V1_task-rest_run-02_bold 0.001838542600896861 0.0424193273542601 4 44.391691049213456 1.111800158067416 1.006446629123595 0.4467667661243474 96414.3203125 0.3092934439643672 195 43.7219730941704 2.6570454955447937 2.623869295774648 2.93545014084507 2.4118170500146627 0.00936067 -0.024583427235484123 0.033971138298511505 446 96 96 54 5.60143139420807 0.7999997138977051 2.21875 2.21875 2.3999996185302734 3 21.409483812019207 80.31975555419922 552.6513061523438 54.350337982177734 345613.0 0.23430851399898533 2340.6679199218743 1025.6356201171875 2.8770381830240384 2350.917724609375 17086.892578125 17246.0234375 85401.0 11818.0927734375 21670.048828125 3078.842041015625 27.52373504638672 +sub-10134_ses-V1_task-rest_run-01_bold 0.0026556787330316743 0.023213819230769234 8 39.69353073800455 1.0818462222448972 0.9957453129251702 0.3941188242308523 9640.498046875 0.23700758745110315 90 20.361990950226243 2.467338301924812 2.486062401212756 2.4551332357751035 2.4608192687865773 0.0234537 -0.002364387270063162 0.016843097284436226 442 90 90 60 2.7155677756539607 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 37 266.3981264413989 15.309042930603027 30.82405662536621 10.78506851196289 348685.0 0.03393665328621864 116.99276428222653 78.80677032470703 2.6920642451878196 308.96331787109375 1107.45654296875 1051.8790283203125 72728.0 575.5701721191406 1818.2961059570302 387.3487548828125 23.097671508789062 +sub-10134_ses-V1_task-rest_run-02_bold 0.0039712698412698415 0.02204080045351474 9 38.092303831090916 1.0147329033409092 0.9635532627727286 0.39080636687759046 9307.791015625 0.19999308568501814 43 9.750566893424036 2.44671191952957 2.4767790682483093 2.431095736730268 2.432260953610132 0.00371011 -0.0003867063787765801 0.017709745094180107 441 90 90 60 2.719765380567908 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 17 240.14754794992024 15.11514663696289 28.264892578125 10.721088409423828 350709.0 0.054421767592430115 105.24398956298822 68.82162475585938 2.640587061897845 296.5287780761719 1080.42529296875 1023.7381591796875 71938.0 564.426303100586 1768.6466674804683 376.4041748046875 24.639347076416016 +sub-10134_ses-V3_task-rest_run-01_bold 0.0011213092550790068 0.011972527584650113 7 31.480491202398177 1.018013724638008 0.9647369484162902 0.39339538510683736 9892.03515625 0.14610416153841002 18 4.063205417607223 2.40658415759845 2.4160124039962927 2.443212402915462 2.3605276658835943 0.00362751 -0.006853852421045303 0.01666370965540409 443 90 90 60 2.7453801186016107 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 251.45376789190763 15.918730735778809 33.66013717651367 11.15237045288086 350808.0 0.020316027104854584 133.14367980957024 88.7132568359375 3.3096309407042845 313.9619140625 1160.2191162109375 1105.689697265625 70926.0 605.4486541748047 1890.8685302734375 402.74273681640625 33.31789016723633 +sub-10134_ses-V3_task-rest_run-02_bold 0.003304446952595937 0.011753523905191875 7 32.63063558038462 1.0873873952941184 1.0740876164932118 0.3928993362535302 10353.2998046875 0.162367868455197 28 6.320541760722348 2.3882869387250683 2.3901749050229824 2.427354070212282 2.347331840939941 0.00482962 -0.005978851579129696 0.016574665904045105 443 90 90 60 2.7708647512910383 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 243.72708758891858 15.565650939941406 32.67995834350586 10.812641143798828 350783.0 0.011286681517958641 129.818058776855 84.95703125 3.4896131386768694 306.5605773925781 1148.0721435546875 1093.338623046875 70831.0 608.6445007324219 1860.3431396484375 394.58111572265625 33.10957717895508 +sub-10135_ses-V1_task-cuff_run-01_bold 0.0035999330357142857 0.051018190625 2 47.86827557612975 1.0987402109619695 0.9786809252348994 0.4360885807000289 418250.28125 0.4501683231798428 40 8.928571428571429 2.7688499556795443 2.771758873239437 2.925750985915493 2.609040007883703 0.00692166 -0.008520258590579033 0.018715906888246536 448 96 96 54 4.757110811463526 0.7999997138977051 2.21875 2.21875 2.4000015258789062 31 33.20549619088244 41.746681213378906 507.0634765625 28.572731018066406 343783.0 0.373758602142334 2066.021484374999 1109.2940673828125 3.652810391701454 2690.506103515625 18860.546875 18707.61328125 86792.0 12525.9896484375 25281.9970703125 3932.53515625 22.980892181396484 +sub-10137_ses-V1_task-rest_run-01_bold 0.0009269074492099322 0.006928525485327314 7 49.36300338140269 1.1241922639140272 1.0064851730090507 0.5352663417560346 500.9379577636719 0.2438082432381833 145 32.7313769751693 2.780827765382032 2.490491567703423 2.8893373851880475 2.962654343254626 0.00781933 -0.031038466840982437 0.11882373690605164 443 90 90 54 2.229847021938425 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 34.56656726645151 4.5348219871521 21.713092803955078 9.911964416503906 276641.0 6.625282287597656 73.31151580810547 33.38425827026367 1.1595702513419015 93.18305206298828 258.2381896972656 237.1851043701172 94485.0 124.39413146972656 465.6302734375 106.36776733398438 31.586627960205078 +sub-10137_ses-V1_task-rest_run-02_bold 0.0004887584650112867 0.012012004176072236 7 49.15568448414024 1.0504208639366512 0.9587160714479634 0.5355169574718142 503.7405090332031 0.26861771214962776 171 38.60045146726862 2.80502776471802 2.5077582336839743 2.935683216679763 2.9716418437903234 0.0104102 -0.02962002158164978 0.1180717870593071 443 90 90 54 2.2374552885149 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 35.872461751739365 4.394259452819824 21.467287063598633 9.860045433044434 276333.0 6.693002223968506 71.63882446289062 32.52671432495117 1.1434350448441224 92.47354125976562 256.17767333984375 235.47743225097656 94870.0 123.17201461791993 460.47451171875 105.24285888671875 26.620174407958984 +sub-10138_ses-V1_task-rest_run-01_bold 0.0004785714285714285 0.00856988306122449 9 42.57987898911366 1.027872186568182 0.993200971681818 0.5459822241226636 451.8686828613281 0.25755253261526656 169 38.321995464852606 2.6925902647054643 2.408229070972241 2.8332040540852526 2.8363376690588993 0.00850896 -0.03270928934216499 0.1465924233198166 441 90 90 54 2.5499435499253815 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 52.73306502835782 4.4847869873046875 23.17190170288086 10.145124435424805 276677.0 6.941043376922607 78.20226745605484 39.32789993286133 2.2908800567673477 80.84552764892578 244.6890411376953 231.69955444335938 95318.0 123.82040748596192 407.3400238037108 90.86410522460938 30.9885196685791 +sub-10138_ses-V1_task-rest_run-02_bold 0.00039560090702947846 0.0072416684126984125 9 43.0669418595682 1.027925939568182 0.9951155442727274 0.5480420022339592 441.43603515625 0.25105895220851615 157 35.600907029478456 2.673981931499784 2.395029071496762 2.809054055044887 2.8178626679577037 0.013417 -0.033632196485996246 0.14636383950710297 441 90 90 54 2.5427449024423368 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.52027437036406 4.4847869873046875 23.160648345947266 10.185940742492676 276392.0 7.011337757110596 78.66995735168459 38.58937072753906 2.4186383147150874 80.08741760253906 242.31150817871094 229.3174591064453 95576.0 122.99943351745605 404.0708770751953 90.18453216552734 32.09784698486328 +sub-10139_ses-V1_task-cuff_run-01_bold 0.0011705855855855855 0.010614536824324327 6 40.40852668512418 1.0234674006546276 0.9984611597742661 0.5320681919187432 490.4435729980469 0.30806027095846805 5 1.1261261261261262 2.704168040743614 2.4265499035775697 2.888258218564263 2.79769600008901 0.00403596 -0.047341957688331604 0.12386325001716614 444 90 90 54 2.3982899524594505 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 47.038467823658024 3.7031660079956055 21.600122451782227 10.295044898986816 283071.0 7.502252578735352 70.3299560546875 31.210128784179688 1.4112848393352184 88.0478744506836 263.25689697265625 242.8513641357422 91745.0 137.29144287109375 456.84189453125 101.2596664428711 28.661863327026367 +sub-10139_ses-V1_task-cuff_run-02_bold 0.002720923423423423 0.012031790585585588 6 41.567796651060924 1.0232875331602707 1.0041481048081262 0.5341144416697857 456.5732727050781 0.29214391192226347 13 2.9279279279279278 2.702079151534571 2.4310624033982595 2.889654051842131 2.7855209993633228 0.0160307 -0.04710717499256134 0.11765819042921066 444 90 90 54 2.383395494136704 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.245122201381854 4.1305832862854 21.59561538696289 10.560811042785645 282685.0 7.4594597816467285 70.46531677246088 29.32573699951172 1.44262540681952 87.23979187011719 261.73052978515625 241.4279327392578 92244.0 136.14639282226562 455.3933532714842 101.29524230957031 27.17746925354004 +sub-10139_ses-V1_task-rest_run-01_bold 0.0014192533936651585 0.009300664208144797 8 36.82224495965983 1.0232883958503407 1.008104474172335 0.5323700789830447 495.7875061035156 0.2047732893872839 79 17.873303167420815 2.6842527628411905 2.409283237597019 2.873441552486358 2.770033498440196 0.00268927 -0.046408720314502716 0.11920303106307983 442 90 90 54 2.4053407830236386 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 34.78979435989121 3.387847661972046 21.452524185180664 10.221719741821289 283443.0 7.814479827880859 70.77534484863259 29.568485260009766 1.435782528258403 87.86598205566406 263.7561340332031 243.4717254638672 91528.0 138.033935546875 456.8090637207031 101.22074890136719 31.452604293823242 +sub-10139_ses-V1_task-rest_run-02_bold 0.0010831306306306307 0.009667927905405405 6 39.215576352641065 1.0168278001805868 0.9931523310158008 0.534758971404697 469.1095886230469 0.23475153129037113 107 24.0990990990991 2.672676373999765 2.4081540709752214 2.8522998866597855 2.757575164364288 0.00578086 -0.04875887930393219 0.11940670758485794 444 90 90 54 2.364249939494797 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.64276336772854 3.663095474243164 21.72821044921875 10.373873710632324 282800.0 7.77477502822876 71.6806339263915 29.63551902770996 1.4902678475894833 87.12792205810547 261.4000244140625 240.6227569580078 92126.0 135.57376861572266 456.60699462890625 101.77496337890625 30.396472930908203 +sub-10141_ses-V1_task-rest_run-01_bold 0.000487020316027088 0.008271463792325056 7 44.84233803567877 1.0251813646832573 0.9967050769457014 0.5708770785551429 319.7166442871094 0.28491828046191725 203 45.82392776523702 2.7487124844204005 2.426508236912559 2.9916623811220178 2.827966835226625 0.00917288 -0.002035310724750161 0.12906883656978607 443 90 90 54 2.397802658978256 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.91713070137778 6.646608829498291 27.14942169189453 11.961625099182129 270833.0 7.212189674377441 99.7498870849609 39.88886260986328 0.8601266802281948 87.766357421875 244.47752380371094 230.784423828125 100348.0 110.03171882629394 423.6755218505858 96.24781799316406 29.54905891418457 +sub-10141_ses-V1_task-rest_run-02_bold 0.0010981941309255077 0.01177514993227991 7 46.15383817079184 1.0160805524886882 0.9997945414479649 0.5725751151342948 311.2294006347656 0.3297000189309116 218 49.20993227990971 2.794744429457001 2.453920735823284 3.029224879629418 2.9010876729183 0.0126995 -0.0017942822305485606 0.12956924736499786 443 90 90 54 2.3882844746136858 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 25.448379680298732 7.198820114135742 27.676124572753906 12.309255599975586 270330.0 7.106094837188721 100.78126564025874 40.050052642822266 0.8304365171761856 87.05352020263672 242.32041931152344 228.58352661132812 101010.0 108.146728515625 420.77798767089837 95.70986938476562 26.643779754638672 +sub-10144_ses-V1_task-cuff_run-01_bold 0.0014334311512415351 0.011027421941309254 7 40.85793284167421 1.084997783868777 0.9835668254298641 0.45480701946406915 7243.234375 0.24926946674395695 1 0.22573363431151242 2.4057131876885918 2.440033236375124 2.411670737502148 2.3654355891885017 0.00638779 0.001588983228430152 0.02058994397521019 443 90 90 60 2.6319322211212186 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 45.368941660090954 18.048927307128906 40.68379211425781 12.74717903137207 320392.0 0.04740406572818756 174.8505699157716 88.79800415039062 2.3393757677326867 326.5790710449219 1146.8798828125 1086.4154052734375 96604.0 558.6953643798828 1913.9265014648438 412.7803039550781 31.19563865661621 +sub-10144_ses-V1_task-cuff_run-02_bold 0.0013737697516930023 0.01042141652370203 7 42.35218357070136 1.106512999932127 1.000414820248869 0.45552347801167214 6947.5634765625 0.22685500915422885 0 0.0 2.4056006863174626 2.438933236418834 2.4165874039734443 2.361281418560109 0.00548346 0.0015663550002500415 0.02170395664870739 443 90 90 60 2.5985121784005565 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 44.044149688120996 18.47563362121582 41.81953048706055 13.016929626464844 320766.0 0.04063205420970917 181.98927688598633 90.669189453125 2.5036273526672304 328.1737976074219 1148.39892578125 1085.918701171875 96403.0 559.7088012695312 1927.6853759765622 417.89801025390625 31.377607345581055 +sub-10144_ses-V1_task-rest_run-01_bold 0.0014323076923076926 0.013655041244343892 8 49.28767096585035 1.1178324265079362 0.9961210959863946 0.4517031502925587 7012.962890625 0.3125632439122839 209 47.28506787330317 2.4303548622188296 2.456545735718976 2.4423790696152423 2.3921397813222707 0.00548986 0.0009063337347470224 0.021730957552790642 442 90 90 60 2.5862132285708483 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 45.32449075049678 18.582843780517578 40.887596130371094 13.049774169921875 322017.0 0.031674209982156754 176.62308349609378 89.00830078125 2.425125720746701 335.697021484375 1160.018798828125 1098.064453125 95744.0 552.0750457763672 1946.4593505859375 424.5816650390625 27.44162940979004 +sub-10144_ses-V1_task-rest_run-02_bold 0.0011171266968325792 0.010188617466063348 8 45.256882764852655 1.1299392990929706 0.9998045982993198 0.4547010002882181 7220.82177734375 0.24788152027636157 155 35.067873303167424 2.412403466540247 2.441624902978543 2.4261040702619527 2.369481426380246 0.00452322 0.0014737093588337302 0.02189326472580433 442 90 90 60 2.5825204105415054 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 42.15263089536177 18.119949340820312 41.488529205322266 12.719457626342773 320559.0 0.03846153989434242 180.76493682861323 90.04167938232422 2.537792622175245 328.6899108886719 1145.2410888671875 1083.0328369140625 96706.0 550.2144012451172 1927.0459289550781 419.3683166503906 31.475688934326172 +sub-10144_ses-V3_task-cuff_run-01_bold 0.0010185260770975055 0.008739196077097507 9 45.19161500484091 1.1241053942954542 1.0042192118863638 0.45421134361024607 5815.70849609375 0.2088431052552926 0 0.0 2.4192119254618842 2.451754069242713 2.3979790713795395 2.4079026357634 0.00498683 -0.005949354264885187 0.024669533595442772 441 90 90 60 2.415614060558719 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 42.735007208881704 20.833755493164062 45.098724365234375 14.507936477661133 322195.0 0.02947845868766308 190.20838623046868 92.31314849853516 2.993428302117545 357.6332702636719 1182.4718017578125 1106.626953125 96136.0 564.7046661376953 2046.6162719726562 458.11175537109375 32.18069839477539 +sub-10144_ses-V3_task-cuff_run-02_bold 0.0010766216216216216 0.010011256734234234 6 48.52669092449212 1.120451971896163 0.9735332245146732 0.45511913948984667 5655.1171875 0.22977838081762186 0 0.0 2.443350808505658 2.4684915685776248 2.4290665701442333 2.432494286795116 0.0078566 -0.0068807038478553295 0.025220690295100212 444 90 90 60 2.394701401613574 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 39.31899243350384 21.26399040222168 46.090782165527344 14.731982231140137 322073.0 0.020270271226763725 196.79550476074195 93.50043487548828 3.008466962810764 360.93853759765625 1181.947265625 1106.32666015625 96288.0 555.2592376708984 2050.0178100585936 461.98699951171875 30.667333602905273 +sub-10144_ses-V3_task-rest_run-01_bold 0.001564625850340136 0.008245101088435375 9 38.41545985813636 1.0768839544090907 0.9898677345681823 0.4540848373787184 6138.02734375 0.17350973012993198 51 11.564625850340136 2.4224105371346583 2.4551790691066158 2.4076165709965793 2.4044359713007792 0.00459364 -0.009265978820621967 0.027669398114085197 441 90 90 60 2.427654475981204 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 37.087403844452055 20.18826675415039 45.27645492553711 14.063491821289062 322321.0 0.03628117963671684 196.12925720214844 93.00313568115234 2.9739040561764734 356.9525146484375 1180.8731689453125 1106.67578125 95966.0 561.7279205322266 2037.9591674804688 455.8597717285156 32.7391357421875 +sub-10144_ses-V3_task-rest_run-02_bold 0.005168868778280543 0.008449899977375566 8 38.1884269757823 1.1542388401360544 1.0688394588662138 0.45649091636406486 5622.8271484375 0.14594124843584913 28 6.334841628959276 2.4312494249405088 2.459854068920848 2.4257749036083656 2.4081193022923135 0.007837 -0.008287410251796246 0.027302972972393036 442 90 90 60 2.3952751080013583 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 35.79511454502858 21.11534309387207 47.3306884765625 14.703620910644531 322330.0 0.03393665328621864 205.47082214355464 96.12810516357422 3.0751582822319588 359.517578125 1177.472412109375 1101.597412109375 96188.0 553.9978576660156 2042.8778869628902 459.9019470214844 33.375999450683594 +sub-10145_ses-V1_task-rest_run-01_bold 0.001568081264108352 0.013292618058690746 7 54.497117582058785 1.1115844612669683 0.9978481598642545 0.5128985622820778 556.4468383789062 0.42739550018735 288 65.01128668171557 2.732998594903814 2.4345499032596787 2.974291548478939 2.7901543329728247 0.011761 -0.033263321965932846 0.09167619794607162 443 90 90 54 2.6702427331721057 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 131.08375248844226 3.5475358963012695 20.454116821289062 10.19864559173584 290738.0 7.564334392547607 60.7497741699218 33.549137115478516 0.9145784483301393 83.58964538574219 266.4333801269531 254.60948181152344 84012.0 127.76591682434082 441.0980926513672 95.3501205444336 26.531492233276367 +sub-10145_ses-V1_task-rest_run-02_bold 0.0011746741573033708 0.014504600157303371 5 57.50222871092347 1.106302367725225 0.9961276038513515 0.5143100590963751 541.3349609375 0.48900450446762705 310 69.66292134831461 2.7147097077713576 2.405416571084 2.9174623840704603 2.8212501681596143 0.0106895 -0.03381693735718727 0.09411238133907318 445 90 90 54 2.674144641645261 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 132.34017084776585 3.658196210861206 20.437501907348633 10.184269905090332 291113.0 7.38651704788208 61.25662918090797 34.1480712890625 0.9688707253649782 82.40103149414062 263.88958740234375 252.26742553710938 83890.0 127.4379810333252 436.3959564208984 94.3351821899414 26.589603424072266 +sub-10149_ses-V1_task-cuff_run-01_bold 0.0016384162895927603 0.009062569185520362 8 34.770086855306154 1.091623300136054 1.0395653620408174 0.4537103468387924 4256.49658203125 0.11210338410090656 0 0.0 2.505842476882975 2.5293748994916716 2.5767665642751627 2.411385966882091 0.00584781 0.02984926849603653 0.010114406235516071 442 90 90 60 2.35314629535906 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 52.340530604416536 23.99669075012207 56.19179153442383 16.941177368164062 326105.0 0.031674209982156754 224.19503173828076 136.47669982910156 5.081073264017931 358.8166198730469 1183.9752197265625 1109.6199951171875 91007.0 562.8120300292969 2032.341723632812 471.5447998046875 34.33021926879883 +sub-10149_ses-V1_task-cuff_run-02_bold 0.0018716173120728933 0.020575743530751707 11 59.55404612584471 1.0761975425799084 0.9845229845662109 0.521922453387484 968.3383178710938 0.08579794327615654 0 0.0 2.2314942247378973 3.125274875812734 2.9096873843794113 0.6595204140215467 0.00205267 -0.09188588708639145 0.2055654525756836 439 90 90 60 1.6548589843485995 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 23.655867886454967 32.681419372558594 115.16717529296875 22.389522552490234 316643.0 0.03416856750845909 575.7904663085938 229.90066528320312 2.4941875368028166 388.38275146484375 787.7672729492188 716.5604248046875 95352.0 204.75627593994142 1588.0567565917968 433.00164794921875 16.931442260742188 +sub-10149_ses-V1_task-rest_run-01_bold 0.0010624208144796381 0.008982275837104071 8 35.8090560507256 1.11549394600907 0.9907287047845801 0.4525327958109492 4069.61669921875 0.11504094270978278 4 0.9049773755656109 2.4683702654406328 2.50189990058343 2.5385873991256 2.3646234966128685 0.0058449 0.029003934934735298 0.0109675582498312 442 90 90 60 2.3782455861838177 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 51.21713525014225 24.114091873168945 54.93910598754883 17.18778419494629 326696.0 0.031674209982156754 218.44118118286133 132.5379638671875 5.134344115905451 355.72735595703125 1184.9661865234375 1109.830322265625 90387.0 573.4185791015625 2024.0174926757813 466.65667724609375 34.207122802734375 +sub-10149_ses-V1_task-rest_run-02_bold 0.0023765384615384616 0.010325718687782804 8 39.502338275238124 1.1549020439002267 1.0729375309523819 0.45503900996137797 3792.175048828125 0.16849245903294602 50 11.312217194570136 2.498910537521258 2.5305623994444844 2.5789790641872457 2.3871901489320444 0.00793101 0.02970363013446331 0.009843786247074604 442 90 90 60 2.341420204300999 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 51.857073198113596 25.083484649658203 57.79629898071289 17.891403198242188 326202.0 0.09276018291711807 232.92964477539067 138.21302795410156 5.472182013796097 357.926025390625 1188.8492431640625 1110.1097412109375 90856.0 572.2680969238281 2042.4107666015625 474.1155090332031 31.57772445678711 +sub-10150_ses-V1_task-cuff_run-01_bold 0.0008482993197278911 0.012555561020408163 9 54.19224879497732 1.1694767203636367 0.9733019040227273 0.4317558991130147 13985.759765625 0.3945620661132408 10 2.2675736961451247 2.428217378239745 2.410095737564733 2.4342915699366103 2.440264827217891 0.0132871 0.00910890195518732 0.0004015079466626048 441 90 90 60 2.3064528843974275 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 74.48506089773569 12.859305381774902 30.837947845458984 8.943310737609863 322428.0 0.0022675737272948027 109.43979759216285 89.04816436767578 6.396740542584251 285.6211853027344 1158.7008056640625 1065.9093017578125 94753.0 592.109765625 2036.306616210937 462.1398010253906 30.04784393310547 +sub-10150_ses-V1_task-rest_run-01_bold 0.0008750338600451466 0.012702062799097066 7 61.91263765038461 1.13925470678733 0.9765315925565604 0.4318692198113197 14765.27734375 0.49408184919890213 318 71.78329571106094 2.441045162216081 2.4210415704631183 2.4415707363140293 2.4605231798710947 0.0149699 0.009233474731445312 0.0007779150037094951 443 90 90 60 2.3219303309303694 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 75.07446408451632 12.620525360107422 30.90346908569336 8.753950119018555 322279.0 0.0022573363967239857 109.96907653808579 89.57365417480469 5.953439676315536 287.557861328125 1164.401123046875 1071.7607421875 94691.0 595.2855529785156 2046.6242065429688 461.579345703125 29.440595626831055 +sub-10150_ses-V1_task-rest_run-02_bold 0.0010562331838565022 0.013214826367713007 4 58.16961847377527 1.158050855280899 0.975348765483146 0.43232646093905674 14264.87109375 0.44949157254112976 297 66.59192825112108 2.4385687687096484 2.4170999039530794 2.4523249025533636 2.4462814996225033 0.0164552 0.00899097416549921 0.00045111632789485157 446 90 90 60 2.2906673538457953 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 74.78484263727356 12.768329620361328 31.223445892333984 8.863228797912598 322310.0 0.0044843051582574844 112.29518547058098 89.01046752929688 6.451642803106203 287.0399169921875 1160.3807373046875 1065.926025390625 94799.0 592.1067687988282 2038.0886840820308 465.3318176269531 28.692516326904297 +sub-10150_ses-V3_task-cuff_run-01_bold 0.0009493002257336343 0.007872143431151241 7 42.04328300936653 1.2033768898868773 0.9988240035067876 0.42572698120635605 21892.83203125 0.18459043938585531 0 0.0 2.445916094360577 2.44775823606816 2.498662400712077 2.3913276463014945 0.0192109 7.519560313085094e-05 0.009464961476624012 443 90 90 60 2.135973612195344 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 62.12466994335202 12.493350982666016 34.555049896240234 8.49209976196289 323236.0 0.0 139.94583129882812 92.34403991699219 6.712736142467547 378.91021728515625 1374.2401123046875 1255.515869140625 94522.0 677.1835388183594 2502.3983642578114 587.79248046875 37.94929504394531 +sub-10150_ses-V3_task-rest_run-01_bold 0.0006281363636363637 0.008901192318181818 10 43.01536241159455 1.190114346810934 0.9657785730979497 0.4256379454252238 21784.716796875 0.19300306246176607 48 10.909090909090908 2.4560716473014224 2.453395735844146 2.512362400167688 2.4024568058924323 0.00756199 -0.0002466128207743168 0.00947097223252058 440 90 90 60 2.1441546228451376 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 63.08226498591468 12.544836044311523 34.570411682128906 8.565908432006836 323354.0 0.0022727272007614374 139.0772705078125 92.22904968261719 6.640807833108024 380.2538146972656 1385.90185546875 1265.42724609375 94339.0 686.3651977539063 2520.580932617187 590.1722412109375 35.43299102783203 +sub-10150_ses-V3_task-rest_run-02_bold 0.0006823076923076922 0.007893401696832579 8 42.541392847369615 1.1927221207256244 0.9936519658276639 0.4259125682551024 21998.439453125 0.201041215971979 72 16.289592760180994 2.452042482013443 2.4547749024560095 2.5050290671257547 2.3963234764585644 0.0126702 -0.00023679783043917269 0.009321508929133415 442 90 90 60 2.134603453705746 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 62.065524856265355 12.394152641296387 34.58958435058594 8.44796371459961 323108.0 0.0 141.18246765136712 91.70263671875 6.708586391869323 378.4024658203125 1371.5604248046875 1253.28515625 94593.0 675.9027465820312 2501.494677734374 587.124755859375 37.6479377746582 +sub-10151_ses-V1_task-cuff_run-01_bold 0.0007962696629213483 0.0062641095056179775 5 38.58402221261262 1.0341744960585588 1.0070152472522524 0.5300553651753847 544.0258178710938 0.14280124436340072 0 0.0 2.6289291510180255 2.348595740008524 2.856049886510774 2.6821418265347776 0.0134226 -0.032356854528188705 0.11767411977052689 445 90 90 54 2.6170463562058535 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.85886770068057 3.658196210861206 20.844940185546875 9.134831428527832 287689.0 6.564044952392578 70.61842651367176 32.85255813598633 0.9529176786092237 77.65837097167969 243.30592346191406 228.97528076171875 87059.0 123.98876190185547 405.96629638671857 87.49327850341797 34.28427505493164 +sub-10151_ses-V1_task-cuff_run-02_bold 0.0004765237020316027 0.006426035079006772 7 39.93662920468329 1.0442139130769226 1.005313021764706 0.531980712311897 529.0224609375 0.13880245888170614 0 0.0 2.62400970696871 2.3480874066953894 2.835770720649929 2.6881709935608105 0.0147344 -0.03285329043865204 0.12372929602861404 443 90 90 54 2.602490238017473 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 36.66536632355263 3.7081797122955322 21.08024787902832 9.13769817352295 287823.0 6.52821683883667 72.26185607910156 33.39650344848633 0.9353431033421233 76.72552490234375 240.7548370361328 226.14785766601562 86960.0 123.07596168518066 402.56455688476564 86.8962173461914 34.3603401184082 +sub-10151_ses-V1_task-rest_run-01_bold 0.00043318284424379233 0.007546642799097066 7 39.98848978115386 1.0388538352036203 0.9898818889140272 0.5282580258846276 558.3982543945312 0.1496752181578407 5 1.1286681715575622 2.6350902620998307 2.3570540730057528 2.859566553037701 2.6886501602560378 0.0173405 -0.03189593926072121 0.11769597232341766 443 90 90 54 2.6030773693029206 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.75098208838834 3.6077773571014404 20.66012191772461 9.076749801635742 287788.0 6.537246227264404 70.3860092163086 32.61211013793945 0.9414615674707036 78.29678344726562 244.77142333984375 230.29345703125 86969.0 123.577880859375 408.7485473632812 88.46918487548828 33.33303451538086 +sub-10151_ses-V1_task-rest_run-02_bold 0.0005237078651685393 0.008938192898876405 5 40.79149283117114 1.0282872105405398 0.9866622957207212 0.5327046501109826 516.8926391601562 0.14665335516640693 15 3.3707865168539324 2.645716651486197 2.3651124060188766 2.8556123865281586 2.716425161911557 0.0171111 -0.03307824209332466 0.12290124595165253 445 90 90 54 2.600605431515927 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 36.02107580600348 3.8580968379974365 20.95656394958496 9.182022094726562 287600.0 6.44719123840332 71.53269767761228 32.697933197021484 0.9535964232932388 75.59941101074219 238.78367614746094 224.0494384765625 87207.0 122.6103416442871 399.9633728027344 86.15230560302734 31.491479873657227 +sub-10153_ses-V1_task-cuff_run-01_bold 0.0017478523489932885 0.012894227002237137 3 39.33601607327354 1.2111792786322864 1.0260311233856494 0.47524122372423777 236070.5 0.26910986800743236 1 0.22371364653243847 2.6419104471460018 2.728477746478873 2.8429971830985914 2.354256411860541 0.0126504 -0.007302582263946533 0.028673164546489716 447 96 96 54 4.683464695474393 0.7999997138977051 2.21875 2.21875 2.3999977111816406 6 72.10185920411622 60.7620849609375 708.7996826171875 41.13528823852539 326973.0 0.14735597670078276 3134.2401855468747 1422.553955078125 2.678619445549626 3222.34326171875 20424.3125 20342.48046875 100875.0 13256.670117187501 27409.27597656248 4343.44677734375 43.30577087402344 +sub-10153_ses-V1_task-cuff_run-02_bold 0.0009961830357142856 0.015035456674107144 2 39.16239234975391 1.183085047986576 1.0047911730201333 0.47557380071192623 212282.953125 0.2828301973659612 0 0.0 2.6650818079894325 2.7518332394366194 2.866614084507042 2.376798100024637 0.0181392 -0.007150661200284958 0.028602348640561104 448 96 96 54 4.6735452210464015 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 58.6424383761516 63.87201690673828 714.2071533203125 43.3351936340332 327015.0 0.23964589834213257 3149.6334472656245 1417.1817626953125 2.552841049557136 3222.155029296875 20383.24609375 20306.625 100847.0 13138.58603515625 27409.941210937497 4344.99365234375 40.25054931640625 +sub-10153_ses-V1_task-rest_run-01_bold 0.001260134529147982 0.014476217309417042 4 39.27832519429216 1.1959714254606748 1.0396075325842693 0.4743264919046967 191992.546875 0.30336596883021266 203 45.51569506726457 2.675856758880121 2.7532123943661975 2.879743098591549 2.394614783682617 0.0125959 -0.006754860281944275 0.027653217315673828 446 96 96 54 4.62317866326454 0.7999997138977051 2.21875 2.21875 2.3999977111816406 0 57.42488960401606 68.6026611328125 713.5665893554688 46.444400787353516 327040.0 0.15782334432005884 3150.129699707028 1415.335693359375 2.6190184775444285 3305.22705078125 20711.96484375 20637.09375 100836.0 13207.991943359375 27889.7255859375 4463.81005859375 40.90000915527344 +sub-10153_ses-V1_task-rest_run-02_bold 0.0010949999999999998 0.012994700424107141 2 39.647767256935126 1.1928403453243857 1.0108928051677846 0.4768992015295919 193325.59375 0.3064214878641351 214 47.767857142857146 2.650659330183743 2.733331830985916 2.8581814084507045 2.360464751114608 0.0155082 -0.00735139986500144 0.029407618567347527 448 96 96 54 4.683959917083593 0.7999997138977051 2.21875 2.21875 2.3999977111816406 3 49.14956072265008 66.05657958984375 717.1157836914062 44.7049560546875 326790.0 0.13899230509996413 3183.7809570312493 1410.3602294921875 2.6428483530750597 3176.37841796875 20143.55078125 20068.203125 101008.0 13037.987695312499 27075.13076171875 4284.43115234375 43.21061706542969 +sub-10154_ses-V1_task-cuff_run-01_bold 0.002577194570135747 0.010235167760180996 8 47.29095881122447 1.1058690707482997 1.0763230431519275 0.47478585708323984 3337.3330078125 0.29396176121655127 2 0.45248868778280543 2.460727106474482 2.491158234343599 2.4286999034921366 2.4623231815877107 0.00383733 0.0146804703399539 0.020382100716233253 442 90 90 60 2.5469219912370673 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 71.04988624717356 24.506546020507812 56.23052215576172 17.583711624145508 320274.0 0.14253394305706024 240.0672088623046 118.66909790039062 3.291913979369278 320.865966796875 1073.1370849609375 1019.4310302734375 96272.0 531.1702758789063 1803.0959167480469 400.2579345703125 28.99767303466797 +sub-10154_ses-V1_task-cuff_run-02_bold 0.001436281179138322 0.008614804920634921 9 47.29038392840905 1.0975801784318167 1.0175648724090904 0.4742886046822754 3352.09716796875 0.2662517001980919 1 0.22675736961451248 2.4438270995629856 2.477229068230428 2.4148290707099807 2.439423159748548 0.00349929 0.012786968611180782 0.02002151496708393 441 90 90 60 2.54550934277986 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 60.45575248504933 24.55202865600586 56.40801239013672 17.507936477661133 320406.0 0.11564625799655914 241.78684997558594 117.89442443847656 3.3394143567053653 322.9686584472656 1078.2415771484375 1022.6485595703125 95947.0 535.5414855957032 1812.2290283203124 401.7440490722656 31.224380493164062 +sub-10154_ses-V1_task-rest_run-01_bold 0.0010003401360544218 0.008974138390022675 9 44.46694879506816 1.0631932889090905 1.0443244683863637 0.474784947736121 3228.148681640625 0.23728929122248885 120 27.210884353741495 2.4551840431132494 2.501341567272283 2.426124903594458 2.438085658473007 0.0025973 0.012922698631882668 0.018837468698620796 441 90 90 60 2.5448134533214404 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 64.24769903730571 24.720123291015625 55.940101623535156 17.845806121826172 319807.0 0.17687074840068817 239.22223205566434 116.86734771728516 3.301023568872405 323.2073669433594 1079.534912109375 1023.5691528320312 96373.0 536.6775390625 1815.7991210937491 402.2156677246094 30.08683967590332 +sub-10154_ses-V1_task-rest_run-02_bold 0.0010345701357466063 0.00783652871040724 8 49.755064066757356 1.1118016952154202 1.0088596120181406 0.4742270365332317 3315.591552734375 0.29581902640211305 228 51.58371040723982 2.4422548727797344 2.474991568319338 2.4263124035870076 2.4254606464328576 0.00416455 0.012857017107307911 0.02057448960840702 442 90 90 60 2.5157699885745544 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 54.30650189580563 24.654132843017578 57.21455383300781 17.55203628540039 320745.0 0.10407239943742752 245.41901245117177 119.08826446533203 3.4180587650244103 324.3109130859375 1077.3079833984375 1021.03173828125 95936.0 531.8489990234375 1814.3411560058594 405.8504638671875 32.71364974975586 +sub-10155_ses-V1_task-cuff_run-01_bold 0.0018041309255079007 0.016148386546275394 7 49.24881349981901 1.1460544943891398 1.04986958780543 0.4294564009590927 4984.58349609375 0.3593293532728667 0 0.0 2.517092474579919 2.560704064913429 2.5698457312168386 2.4207276276094896 0.00439185 -0.0030863306019455194 0.024845020845532417 443 90 90 60 3.0915933490680585 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 335.9727418217532 21.479326248168945 42.900428771972656 15.304740905761719 342221.0 0.1264108419418335 158.65011596679688 100.0592041015625 2.978809944297371 276.7277526855469 1090.3177490234375 1062.1671142578125 77453.0 592.2812622070313 1683.2334228515622 343.56402587890625 28.492568969726562 +sub-10155_ses-V1_task-rest_run-01_bold 0.0020722972972972973 0.014893608153153153 6 38.90074373866812 1.0711430305191858 0.9812015906997736 0.4290785404857264 5177.6171875 0.24527209115470816 131 29.504504504504503 2.5057160883865386 2.5427540656266983 2.5649582314110506 2.409435968121867 0.007006 -0.003204669337719679 0.02337716333568096 444 90 90 60 3.088304726843004 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 308.7356216631434 21.297380447387695 42.268333435058594 14.986486434936523 341820.0 0.04279279336333275 158.58829498291007 95.92593383789062 2.8987862883789663 278.363525390625 1097.54345703125 1069.1756591796875 77688.0 593.6938385009765 1696.3427490234371 346.1992492675781 29.224899291992188 +sub-10156_ses-V1_task-cuff_run-01_bold 0.0009415419501133787 0.013080565646258504 9 50.40783416586369 1.0698913361136368 0.9876291847272722 0.49237947720978953 1628.7174072265625 0.31672445267836663 0 0.0 2.481103582047258 2.4614082355257576 2.5356373992428223 2.4462651113731946 0.00251766 -0.048800405114889145 0.09420651942491531 441 90 90 60 2.099801523837107 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 28.13939554606593 31.465795516967773 65.85021209716797 21.368480682373047 321530.0 0.020408162847161293 251.11236495971679 96.72113037109375 10.778971504658102 264.6999816894531 929.39111328125 846.5079345703125 95613.0 459.8961608886719 1654.1161376953123 403.135009765625 25.80674934387207 +sub-10156_ses-V1_task-rest_run-01_bold 0.0009995454545454546 0.011568642659090907 10 50.9937563921868 1.0813106539863324 0.9936040784282472 0.49113137154372855 1762.8583984375 0.3257595760665239 255 57.95454545454545 2.492642467501542 2.4667374019806623 2.5499457320075933 2.46124426851637 0.00369707 -0.0498904287815094 0.09489608556032181 440 90 90 60 2.068551547184568 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 34.85673660368006 30.797693252563477 66.34819030761719 20.89545440673828 321445.0 0.022727271541953087 253.2631713867187 98.51439666748047 10.88229236878774 268.27691650390625 933.5664672851562 848.0045166015625 95584.0 460.8922637939453 1671.5810668945296 409.94873046875 26.656349182128906 +sub-10156_ses-V1_task-rest_run-02_bold 0.0013268181818181818 0.016687827022727274 10 52.5809992917312 1.0467838649886108 0.9713080988382692 0.4944600634176114 1570.3248291015625 0.3703213600457725 289 65.68181818181819 2.4929632965090707 2.457645735675266 2.538291565804022 2.482952588047925 0.00658131 -0.04775729030370712 0.09464063495397568 440 90 90 60 2.1444384298168675 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 27.68370152045205 32.128662109375 65.78407287597656 21.8454532623291 321151.0 0.029545454308390617 249.91136169433594 96.30986785888672 10.502113232793617 259.45037841796875 920.9632568359375 841.10107421875 95764.0 465.50511322021487 1626.918792724609 392.22235107421875 22.65302848815918 +sub-10156_ses-V3_task-cuff_run-01_bold 0.002707782805429864 0.013383212443438913 8 43.27402454811793 1.1049075231519263 1.0776522996371878 0.44187013918740753 5854.3193359375 0.27507905264774024 0 0.0 2.408245135695631 2.406829071027872 2.4414082363204863 2.376498099738534 0.00813174 -0.0026595243252813816 0.017506279051303864 442 90 90 60 2.5037306715564136 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 10 369.3190932428926 18.425189971923828 34.391658782958984 12.859728813171387 324831.0 0.029411766678094864 125.17760848999023 77.4111328125 4.3758050767311625 277.74822998046875 1054.8873291015625 976.00341796875 92106.0 567.0961761474609 1798.3450927734375 389.8175354003906 27.16101837158203 +sub-10156_ses-V3_task-rest_run-01_bold 0.0011036651583710409 0.017399692081447964 8 41.65502531342403 1.008726712834467 0.9376910002267577 0.44149586261150947 5178.6962890625 0.2635736012766146 168 38.009049773755656 2.4357632014012056 2.431016570066747 2.465820735350421 2.4104522987864483 0.0190435 -0.0025980842765420675 0.016213884577155113 442 90 90 60 2.5036813416243193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 15 370.15214431907293 19.639448165893555 34.765708923339844 13.848417282104492 325415.0 0.06108597666025162 124.77964172363275 76.885498046875 4.298562707771084 282.65045166015625 1063.9930419921875 983.5814819335938 91725.0 573.2511596679688 1813.9606689453128 392.8519592285156 23.09314727783203 +sub-10156_ses-V3_task-rest_run-02_bold 0.0021842533936651583 0.016120565384615385 8 44.01238777498863 1.0569524826077097 1.0289898366666657 0.4416095042558564 5360.560546875 0.2922700287223221 222 50.2262443438914 2.4515645932936754 2.4501207359742825 2.4831540679949895 2.4214189759117533 0.00727756 -0.0019329211208969355 0.015577230602502823 442 90 90 60 2.4776766832870356 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 328.0874643692427 19.230224609375 34.755550384521484 13.563348770141602 325011.0 0.06787330657243729 124.60860061645508 75.84097290039062 4.0452297046956005 284.1867370605469 1053.4466552734375 974.4072875976562 92257.0 557.8154296875 1805.8932861328124 393.2724609375 24.048255920410156 +sub-10157_ses-V1_task-cuff_run-01_bold 0.00060941309255079 0.009875923318284425 7 53.25514126255657 1.0596864362217204 0.9990950655656111 0.5618358707673969 363.76727294921875 0.3702415386687216 2 0.45146726862302483 2.7183180402532283 2.4079832376486765 2.9471040495592735 2.799866833551735 0.0109543 -0.020483778789639473 0.17229655385017395 443 90 90 54 2.611228738966332 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 47.09791420041738 5.147273540496826 27.67156219482422 10.774266242980957 282923.0 7.139955043792725 103.37900848388665 47.162742614746094 0.9420699914437232 77.98554229736328 232.0603485107422 219.60496520996094 90747.0 116.59413604736329 384.2158020019531 84.09977722167969 29.45809555053711 +sub-10157_ses-V1_task-cuff_run-02_bold 0.0006334684684684685 0.010483924234234237 6 53.745584337268674 1.0522558955079004 0.990486829480813 0.5619497249925515 361.01593017578125 0.38142037812501184 1 0.22522522522522523 2.733566651507059 2.4188582372165426 2.9593665490720054 2.8224751682326294 0.00929808 -0.019164323806762695 0.17487949132919312 444 90 90 54 2.6079445288765744 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 47.010302044258566 5.215821266174316 27.581764221191406 10.763513565063477 283069.0 7.047297477722168 102.97928314208968 46.853248596191406 0.8386479608046891 77.31905364990234 230.32577514648438 217.83108520507812 90669.0 115.31306457519531 381.47568359375 83.52550506591797 28.821815490722656 +sub-10157_ses-V1_task-rest_run-01_bold 0.0005748081264108351 0.010146244920993228 7 51.74965773918554 1.037756187058822 0.9833713374208151 0.5616741557047087 362.04833984375 0.3695779148065024 279 62.979683972911964 2.735449984915947 2.425962403600915 2.9533707159769254 2.8270168351700007 0.00481855 -0.022602614015340805 0.1674337387084961 443 90 90 54 2.6148451872361407 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 49.930448946182906 5.32465124130249 27.641361236572266 10.905192375183105 282825.0 7.142212390899658 102.72957153320303 46.748538970947266 1.0163044092900444 78.58796691894531 234.4064178466797 221.71444702148438 90684.0 118.57370300292968 387.5190826416014 84.79019165039062 28.675861358642578 +sub-10157_ses-V1_task-rest_run-02_bold 0.0009838148984198645 0.009968417855530471 7 53.39649121891399 1.0658656996380096 1.0024052134615389 0.5621008674711765 360.220947265625 0.3694155403645927 277 62.52821670428894 2.704699985049919 2.395641571472423 2.9242957171322614 2.794162666545073 0.00685724 -0.01879601739346981 0.17511245608329773 443 90 90 54 2.6126447671734403 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 46.94192199835692 5.110459804534912 27.42715835571289 10.681715965270996 283776.0 7.067720413208008 102.58013916015625 46.54252624511719 0.8905271553825655 76.53140258789062 228.53652954101562 215.78781127929688 90104.0 116.25316162109375 378.445045471191 82.59317016601562 29.362838745117188 +sub-10158_ses-V1_task-rest_run-01_bold 0.0003775169300225734 0.004711706501128668 7 45.580775446538496 1.1773721009728504 0.993061842330317 0.5239736282976092 485.6548156738281 0.1564231101880899 0 0.0 2.7560374828321024 2.4310249033997495 3.0482957122049443 2.7887918328916133 0.0135816 -0.023182634264230728 0.08877801895141602 443 90 90 54 2.3370183206445945 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 35.726340200606 6.097745895385742 23.175960540771484 11.05643367767334 286303.0 6.652370452880859 80.68352355957015 33.52187728881836 0.5767119658575384 105.959228515625 276.7245788574219 265.2505798339844 87572.0 108.19932746887207 481.4898681640625 113.4989242553711 38.95135498046875 +sub-10158_ses-V1_task-rest_run-02_bold 0.00043776018099547516 0.005581247375565612 8 46.48074470562361 1.18186197786848 0.9963211714965986 0.5257861443622636 476.8400573730469 0.16701758747498097 11 2.48868778280543 2.7451916496853923 2.4231499037126736 3.031012379558389 2.781412665785114 0.0129213 -0.023673484101891518 0.08998599648475647 442 90 90 54 2.3493731194218337 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 35.52469085793032 6.239004611968994 23.398784637451172 11.110859870910645 286525.0 6.631221771240234 81.23484497070311 33.75032424926758 0.6071651959327755 103.91966247558594 274.48895263671875 263.0871276855469 87476.0 108.45928192138672 477.2800064086914 111.981201171875 37.17897033691406 +sub-10159_ses-V1_task-cuff_run-01_bold 0.001432601809954751 0.007681118416289592 8 30.73028397498866 1.0683895227210876 0.9818826326530616 0.4209292390620465 27550.54296875 0.1445053272182538 0 0.0 2.323948071667416 2.3765582388973936 2.344966573486067 2.250319402618788 0.00737033 -0.00314548728056252 0.013890618458390236 442 90 90 60 2.792919284411291 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 72.49085452425919 10.381570816040039 30.75882911682129 7.049774169921875 332138.0 0.0 130.24955062866195 82.76358795166016 3.9011589735724144 313.41265869140625 1206.99462890625 1150.29638671875 86469.0 635.0742431640625 1942.512329101562 411.8592834472656 39.180084228515625 +sub-10159_ses-V1_task-cuff_run-02_bold 0.001090907029478458 0.006629567981859411 9 30.646228430454535 1.0742300282500001 0.9974702675227263 0.4210423992873305 28580.837890625 0.15355781269717975 0 0.0 2.3170911283679874 2.3651915726823973 2.3401540736772986 2.2459277387442658 0.00635462 -0.0032625969033688307 0.013416851870715618 441 90 90 60 2.7944122557775137 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 75.64585375074502 10.223567962646484 31.054649353027344 6.920635223388672 332229.0 0.0 132.49523925781227 84.0582504272461 3.8538246325320467 314.2679748535156 1208.718017578125 1150.140625 86357.0 638.0925415039063 1945.7873779296867 411.58349609375 40.9486198425293 +sub-10159_ses-V1_task-rest_run-01_bold 0.0018615765765765766 0.007709416734234234 6 31.257315009277633 1.0814321153498878 1.0016998221670432 0.42093458816274537 26826.837890625 0.15615237200366572 25 5.63063063063063 2.3153161308674073 2.36664157262478 2.345604073460735 2.2337027465167067 0.00911314 -0.002985571278259158 0.01278439350426197 444 90 90 60 2.822425765827328 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 69.9734696348338 10.531819343566895 30.805679321289062 7.159910202026367 332472.0 0.0 128.47950363159185 83.03018188476562 3.9075147302738955 310.8840637207031 1208.250732421875 1152.26123046875 86160.0 638.8761596679688 1937.3576416015626 408.2497253417969 37.775394439697266 +sub-10159_ses-V1_task-rest_run-02_bold 0.0021990744920993227 0.008426066388261851 7 31.29410880952488 1.0906638522398195 1.0275260875339365 0.4225923279603237 27778.673828125 0.17792041499824965 40 9.029345372460497 2.3308452921925076 2.3707290724623573 2.3643249060501694 2.257481898064996 0.00877301 -0.0033814639318734407 0.015237689949572086 443 90 90 60 2.8094955892976965 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 93.31699215425239 10.334709167480469 31.9362735748291 7.0248308181762695 332151.0 0.0022573363967239857 135.4548568725586 87.56786346435547 3.8012746179744195 310.452880859375 1203.96240234375 1146.4627685546875 86461.0 637.6614379882812 1936.5057373046875 408.06475830078125 36.728492736816406 +sub-10159_ses-V3_task-cuff_run-01_bold 0.004372902494331065 0.012448872448979593 9 31.36749127979548 1.064791155477274 1.0539888570454543 0.4190364865252645 21773.12890625 0.14626389070153142 0 0.0 2.324048065593707 2.3500374066179033 2.341237406967584 2.2808693831956335 0.00319654 -0.006518049165606499 0.01076870784163475 441 90 90 60 2.789943509803182 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 59.72108478445308 11.531351089477539 32.08988571166992 7.938775539398193 335075.0 0.011337868869304657 138.65669403076166 81.7684326171875 4.1358729143892115 309.11407470703125 1214.07470703125 1155.0362548828125 83955.0 639.6072570800782 1956.7050292968752 413.9974060058594 33.3985710144043 +sub-10159_ses-V3_task-cuff_run-02_bold 0.002091519274376417 0.011017836485260772 9 31.390398693113628 1.0762088362500002 0.9975340423863625 0.4185761696646256 21095.419921875 0.12072881294119792 0 0.0 2.305780014156554 2.3332332406189744 2.3203124077990687 2.263794394051619 0.00623985 -0.0070591820403933525 0.01068558357656002 441 90 90 60 2.78509430854081 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 58.864413427037 11.702808380126953 32.211238861083984 7.997732639312744 335049.0 0.0022675737272948027 140.15555725097624 82.4041519165039 4.247686279643492 309.9210510253906 1216.805908203125 1157.873046875 84018.0 639.927001953125 1961.1038940429685 415.7367858886719 34.16569519042969 +sub-10159_ses-V3_task-rest_run-01_bold 0.0020124830699774264 0.014246659232505643 7 30.54883179712673 1.0052207900452497 0.9748164110859723 0.4192126324112774 21192.669921875 0.13099678339969162 15 3.386004514672686 2.3291300097252825 2.3543790731120477 2.351583239889811 2.2814277161739884 0.00626999 -0.0066830990836024284 0.010937483981251717 443 90 90 60 2.8124463463476497 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 57.63935470154414 11.64997386932373 31.72136688232422 7.997742652893066 334763.0 0.004514672793447971 136.26140441894515 81.24047088623047 4.00184633611186 304.112548828125 1212.7259521484375 1155.533935546875 84178.0 636.0896545410158 1949.3710815429686 410.8619079589844 31.319284439086914 +sub-10159_ses-V3_task-rest_run-02_bold 0.0031958916478555303 0.010126318013544019 7 32.44461057427603 1.1215340993665153 1.0393462176244341 0.41874875839867376 21193.171875 0.1403867150542572 20 4.514672686230249 2.303270295842959 2.3463124067659216 2.31887490785619 2.244623572906766 0.00637893 -0.007407437078654766 0.010312226600944996 443 90 90 60 2.756189029453106 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 54.970523489093495 11.723602294921875 32.90236282348633 8.042889595031738 335463.0 0.004514672793447971 144.06929931640602 83.37950897216797 4.326771303080168 313.9904479980469 1222.4449462890625 1163.2099609375 83941.0 634.2866821289062 1978.7811279296875 422.0331115722656 34.820823669433594 +sub-10160_ses-V1_task-cuff_run-01_bold 0.0005655530474040632 0.006860032279909706 7 45.46791735169688 1.1428277788914027 0.9976883954298645 0.5014025823687583 713.6267700195312 0.19483709633318236 0 0.0 2.670558323544546 2.4005124046122073 2.7021040592946983 2.9090585067267325 0.0146773 -0.02396542578935623 0.08111225813627243 443 90 90 54 2.6471521862249454 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 50.33920112414393 2.8112547397613525 17.699857711791992 8.584650039672852 294611.0 6.555305004119873 57.10158157348633 27.562793731689453 1.091322845551451 78.21479034423828 257.8922119140625 241.51467895507812 81314.0 140.08804321289062 434.5154693603515 91.23509979248047 36.017982482910156 +sub-10160_ses-V1_task-cuff_run-02_bold 0.001255395033860045 0.008236234853273138 7 47.40150544006788 1.1425490055429872 1.0092754144570135 0.5028608031835933 697.1767578125 0.24249907484712233 2 0.45146726862302483 2.677720823515323 2.4073082376754984 2.709083225684038 2.9167710071864335 0.0152434 -0.024295777082443237 0.08247648179531097 443 90 90 54 2.6419040786725256 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 49.813016921944765 2.9350838661193848 17.827077865600586 8.618510246276855 294419.0 6.471783638000488 57.84943618774398 27.656007766723633 1.1089238676530853 77.5655288696289 256.27618408203125 239.5338592529297 81398.0 139.92279891967775 432.5079040527344 90.66657257080078 33.78740310668945 +sub-10160_ses-V1_task-rest_run-01_bold 0.0011917381489841986 0.00771529869074492 7 45.86129085816742 1.1563274230316753 1.0140883382805435 0.501349719448442 711.6467895507812 0.2027223565825533 70 15.801354401805868 2.696902767899004 2.422349903744463 2.7304040581701576 2.9379543417823917 0.017427 -0.024070389568805695 0.0794404000043869 443 90 90 54 2.650212519902227 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 52.003289134074755 2.951817512512207 17.709575653076172 8.672686576843262 294087.0 6.501128673553467 56.57133293151863 27.47174835205078 1.1100704145679252 78.5177001953125 259.3540344238281 243.17156982421875 81651.0 139.8070068359375 436.02935791015625 91.75493621826172 34.172935485839844 +sub-10160_ses-V1_task-rest_run-02_bold 0.000819617117117117 0.007146475225225225 6 47.32820705480808 1.1383600794130924 1.0063762144243786 0.503261651908401 693.6807250976562 0.2656820694890688 193 43.468468468468465 2.670304156867145 2.401566571236985 2.700916559341885 2.9084293400225643 0.0165801 -0.02467586286365986 0.08308064937591553 444 90 90 54 2.6420686440669696 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 48.13468109559256 2.9585258960723877 17.816518783569336 8.60360336303711 294296.0 6.394144535064697 57.91891860961914 27.56382942199707 1.1165606485696236 77.00516510009766 254.79690551757812 238.1531524658203 81523.0 139.47094421386717 429.48335266113276 90.13834381103516 35.010047912597656 +sub-10161_ses-V1_task-rest_run-01_bold 0.0009412698412698413 0.007646876326530612 9 38.70799508515904 1.028135133 0.9991369140227274 0.5188093188756471 720.951416015625 0.2155883866930647 132 29.931972789115648 2.768793044338244 2.4468624027704236 2.8757165523959576 2.98380017784835 0.00686408 -0.02632785029709339 0.09349577128887177 441 90 90 54 2.6044868855123195 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 70.50112036928262 2.810556411743164 17.629634857177734 8.689342498779297 280407.0 6.62358283996582 53.9040824890137 27.390766143798828 1.1319607405711851 85.5841293334961 261.39178466796875 246.88888549804688 93172.0 133.77811584472659 436.3067001342773 94.79316711425781 33.26255416870117 +sub-10161_ses-V1_task-rest_run-02_bold 0.0009210633484162895 0.006499364457013575 8 38.90195017473926 1.0348146180045361 1.0044733141496598 0.519108477531158 719.0732421875 0.2199520580785197 130 29.41176470588235 2.7436513775382667 2.4318707366994725 2.849479053438542 2.9496043424767855 0.00846535 -0.025945037603378296 0.0947038009762764 442 90 90 54 2.618694179442556 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 69.87198325849299 2.767301082611084 17.607324600219727 8.66063404083252 280496.0 6.647058963775635 54.3218355178833 27.46930503845215 1.2013957551546204 84.8638916015625 260.456298828125 245.8371124267578 92945.0 135.62579345703125 433.5783020019532 93.87724304199219 34.99953842163086 +sub-10162_ses-V1_task-cuff_run-01_bold 0.0013216367713004488 0.007813564192825112 4 41.63895672570784 1.081044729325843 1.022408593348315 0.516226311536919 625.1969604492188 0.2406180886429444 6 1.345291479820628 2.793711100291798 2.525483232979646 2.8299290542153894 3.0257210136803594 0.0159128 -0.034972891211509705 0.10612998157739639 446 90 90 54 2.489603899295062 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 37.51209017818118 3.0582821369171143 19.270614624023438 8.827354431152344 289109.0 6.650224685668945 66.15023040771484 30.61665153503418 1.0856422407196344 78.77738189697266 250.9143829345703 233.6053924560547 84007.0 129.35830078125 433.0092010498046 93.83179473876953 32.315818786621094 +sub-10162_ses-V1_task-cuff_run-02_bold 0.0013848314606741572 0.007963893303370786 5 41.92140030220723 1.0722009819594596 1.0133210395270265 0.516126156197567 620.9158935546875 0.24018060031011376 8 1.797752808988764 2.8192416556768456 2.55816656501426 2.8483498868167443 3.0512085151995327 0.0166667 -0.03024221956729889 0.09461111575365067 445 90 90 54 2.4930604520498885 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 37.80427813883918 3.268387794494629 18.595809936523438 8.802247047424316 287601.0 6.285393238067627 63.60000228881836 28.32773208618164 1.1699257565334733 77.11363983154297 247.85910034179688 231.24832153320312 86954.0 127.26359443664552 427.4504577636717 92.75627136230469 32.25321960449219 +sub-10162_ses-V1_task-rest_run-01_bold 0.0010705393258426967 0.00793169975280899 5 41.72731856619372 1.0703196495945948 1.010462535968469 0.5160952342312743 642.2125244140625 0.2407323254769626 108 24.269662921348313 2.7800402670683195 2.5159749000241396 2.8115123882805353 3.0126335129002837 0.016274 -0.0303745586425066 0.09112448245286942 445 90 90 54 2.572554018258839 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 42.90466004491844 3.065154552459717 18.73244285583496 8.835955619812012 287592.0 6.642696857452393 63.411011123657275 29.062265396118164 1.036405472057898 78.47129821777344 251.47421264648438 236.59439086914062 86726.0 128.67247009277344 428.63258361816406 91.96814727783203 32.164180755615234 +sub-10162_ses-V1_task-rest_run-02_bold 0.0014931685393258425 0.007280845842696629 5 41.5916725104955 1.06620399786036 1.007725456351351 0.5167153788126203 616.1305541992188 0.21572295381189513 72 16.179775280898877 2.7737263779785963 2.515587400039538 2.8065998884757404 2.9989918454205102 0.0171903 -0.031154276803135872 0.09831231087446213 445 90 90 54 2.5003706461181054 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 36.94559528132949 3.0518290996551514 18.632312774658203 8.77303409576416 288640.0 6.579775333404541 63.382135200500464 28.283369064331055 1.1706450383377298 76.70217895507812 246.52789306640625 229.889892578125 85435.0 127.3791030883789 425.74606018066413 91.94178771972656 33.296749114990234 +sub-10163_ses-V1_task-rest_run-01_bold 0.0010379909706546276 0.004776764785553047 7 38.24795959445699 1.1179435101131223 1.0068803331900453 0.5248050540346713 668.80859375 0.09076216019859676 1 0.22573363431151242 2.898218037517872 2.7117207255792333 3.049791545478839 2.933141841495544 0.0218141 -0.03288259729743004 0.10772144049406052 443 90 90 54 1.7224838246174872 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 52.82716014983301 3.882209062576294 20.504308700561523 9.501129150390625 257453.0 6.632054328918457 67.0808166503906 33.13842010498047 2.856396685139278 120.41041564941406 307.45562744140625 267.11627197265625 113356.0 132.93397521972656 614.724609375 155.07553100585938 37.281951904296875 +sub-10163_ses-V1_task-rest_run-02_bold 0.00046645454545454545 0.006972907068181819 10 43.33117468120725 1.0474139544419139 0.9821799237813212 0.5405982209512147 371.4373474121094 0.12138520864192008 11 2.5 2.886230440867062 2.6172540626663343 2.8488165534648675 3.1926207064699845 0.0216631 -0.04473075643181801 0.115567646920681 440 90 90 54 1.7497397711109504 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 37.127529372649306 6.007907867431641 22.817075729370117 11.352272033691406 262357.0 6.988636016845703 76.71454010009758 33.26200866699219 6.210996197180874 96.45674133300781 268.2307434082031 235.2613525390625 109295.0 124.74999237060547 519.0599975585933 134.45443725585938 30.762222290039062 +sub-10165_ses-V1_task-rest_run-01_bold 0.000494864864864865 0.00940715722972973 6 38.95483252054174 0.9902062879909695 0.9783048388487587 0.49518158295896664 813.1456909179688 0.20122699405696967 110 24.774774774774773 2.7928944342541815 2.479279068148968 2.8556665531926733 3.0437376814209034 0.00508503 -0.0315784327685833 0.11888451874256134 444 90 90 54 2.5123710453444685 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 78.49735642453813 3.599651575088501 19.196630477905273 8.033783912658691 296558.0 5.418919086456299 63.20112667083725 36.48931121826172 0.8592120995109038 88.5554428100586 259.63427734375 244.12388610839844 79743.0 131.99369201660156 440.64526672363274 97.1681137084961 30.1624755859375 +sub-10165_ses-V1_task-rest_run-02_bold 0.0011630090497737557 0.01209376076923077 8 41.11579417535147 1.001274160725624 0.9889115340589568 0.4919758731556515 841.453857421875 0.2728830275190993 156 35.294117647058826 2.817761101329444 2.499599900674824 2.8677665527118625 3.0859168506016443 0.00299721 -0.028365131467580795 0.11855189502239227 442 90 90 54 2.53463975242441 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 78.22670279867192 3.6595451831817627 18.637821197509766 7.86651611328125 297465.0 5.042986869812012 61.4543014526367 35.72293472290039 0.8939397973868406 87.17835235595703 258.4742736816406 243.39593505859375 78973.0 131.82217102050782 437.6787414550781 96.02721405029297 26.609107971191406 +sub-10166_ses-V1_task-cuff_run-01_bold 0.001397078651685393 0.015173831056179773 5 63.89326583576573 1.0501907012837832 0.9769002074999993 0.5481492059626868 487.2110290527344 0.6010176813726459 87 19.55056179775281 2.7945041534922255 2.4836749013076265 2.9442873830045313 2.9555501761645186 0.0125964 -0.006524884141981602 0.11431794613599777 445 90 90 54 2.564933828819542 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 22.68284536711906 4.674361228942871 24.423715591430664 10.103370666503906 282529.0 6.6764044761657715 93.09213256835938 37.99774169921875 0.8811428072324872 84.18849182128906 246.90499877929688 237.20225524902344 91571.0 111.05955123901367 414.8056182861328 92.4783935546875 23.907424926757812 +sub-10166_ses-V1_task-cuff_run-02_bold 0.0009870720720720721 0.016414778288288287 6 75.47463002424385 1.0862137979006776 0.9750373122347631 0.5503220993550894 472.5369873046875 0.6812337899969257 134 30.18018018018018 2.77232915397988 2.4482582360482916 2.9250623837684637 2.9436668421228833 0.013264 -0.007582565303891897 0.11405771970748901 444 90 90 54 2.564167074481789 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 22.275957762767355 4.624784469604492 24.66974449157715 10.14639663696289 282169.0 6.887387752532959 94.449101257324 38.16646194458008 0.9364607520553774 83.25279235839844 244.86634826660156 234.95721435546875 91663.0 110.72612838745117 410.83515014648435 91.63050842285156 23.72589874267578 +sub-10166_ses-V1_task-rest_run-01_bold 0.0006536486486486486 0.013365001891891892 6 58.25414094426637 1.0600893903837472 0.9766894458690738 0.5476656523464164 498.0013122558594 0.5111702667382515 299 67.34234234234235 2.760470819568861 2.4572790690231696 2.9272415503485383 2.8968918393348755 0.0129387 -0.007780587300658226 0.11405796557664871 444 90 90 54 2.585061285147776 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.12097103736985 4.53462553024292 24.53992462158203 10.08108139038086 282422.0 6.828828811645508 94.4390808105469 38.34992599487305 0.8639423766196619 84.59180450439453 249.14913940429688 239.44369506835938 91475.0 112.87229843139647 416.92478637695314 92.62541961669922 27.111591339111328 +sub-10166_ses-V1_task-rest_run-02_bold 0.0013254504504504505 0.01594058117117117 6 62.70346912352153 1.0529342874943575 0.9803132525507903 0.5501656705844328 474.6500244140625 0.5658568137686175 291 65.54054054054055 2.7809819319606164 2.452370735884876 2.930395716889869 2.9601793431071046 0.00728749 -0.007736467756330967 0.11527497321367264 444 90 90 54 2.5647694281478746 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 23.415701988968674 4.658176898956299 24.66376304626465 10.141892433166504 282101.0 6.815315246582031 93.28829193115234 38.10981750488281 0.891981614821515 83.18598175048828 243.79501342773438 233.8446044921875 91745.0 111.3427963256836 410.0567687988282 91.17518615722656 23.966251373291016 +sub-10167_ses-V1_task-cuff_run-01_bold 0.000485158371040724 0.007365364276018099 8 40.68234818648528 1.03067073185941 0.994434700068027 0.5207652469273534 659.639404296875 0.2299953500131001 0 0.0 2.6873513738202064 2.420308237158925 2.8719832192109735 2.76976266509072 0.0080332 -0.02337520942091942 0.11539071053266525 442 90 90 54 2.450586999060036 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 61.645894223338914 3.743403196334839 19.89519691467285 8.963801383972168 281268.0 6.27375602722168 62.969800758361735 33.97323989868164 2.0509518087407574 92.07732391357422 260.3077392578125 246.60748291015625 92696.0 125.43778800964355 439.0712890625 100.63146209716797 33.289039611816406 +sub-10167_ses-V1_task-cuff_run-02_bold 0.00039581818181818175 0.006021424409090909 10 40.0336889905923 1.0278258719134394 0.991048136879271 0.5215135698800041 657.39892578125 0.2228801086274538 0 0.0 2.665208318176927 2.4027707378558025 2.852312386659289 2.740541830015689 0.00660408 -0.024061324074864388 0.11636944115161896 440 90 90 54 2.4551495347096957 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 63.00506508396032 3.6997668743133545 19.911020278930664 8.931818008422852 280959.0 6.2909088134765625 62.6618164062499 34.34429931640625 2.16724331243436 91.13287353515625 259.3009948730469 245.2931671142578 92759.0 127.05886306762697 437.6233917236328 99.90912628173828 34.62190628051758 +sub-10167_ses-V1_task-rest_run-01_bold 0.00045753950338600445 0.0073485445823927775 7 38.704891213506755 1.0004920510859736 0.9814790362895923 0.5190832965916955 663.9883422851562 0.20354372994476785 114 25.733634311512414 2.7135708183174665 2.4392415697399152 2.8986498848180022 2.8028210003944833 0.00601591 -0.021884361281991005 0.10826709866523743 443 90 90 54 2.4300060143744266 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 59.15784898552947 3.74499249458313 19.425649642944336 8.972911834716797 281174.0 6.2505645751953125 60.87212448120112 32.004547119140625 2.3370934284569307 92.79315948486328 260.94525146484375 247.2076873779297 92798.0 124.81422576904296 441.0247283935545 101.73075866699219 32.26313018798828 +sub-10167_ses-V1_task-rest_run-02_bold 0.0005079185520361991 0.005622841334841628 8 38.96695108052155 1.0359870441950096 1.0045983925396833 0.5223369240743942 639.6741943359375 0.19031792318303434 98 22.171945701357465 2.6633124849734267 2.40150823790597 2.846241553567189 2.7421876634471216 0.00580363 -0.0232135858386755 0.11181428283452988 442 90 90 54 2.4400703076416113 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 58.770685316956374 3.844032049179077 19.82697105407715 9.011312484741211 280788.0 6.251131534576416 63.07228851318335 33.02298355102539 2.362599341139119 90.92510223388672 257.8797607421875 243.86199951171875 92995.0 126.41177368164062 435.96042785644534 99.94002532958984 34.67744064331055 +sub-10168_ses-V1_task-cuff_run-01_bold 0.000956463963963964 0.007678158175675675 6 45.438935729706515 1.0457699315124156 1.0042033080812653 0.5286979818020995 582.1510620117188 0.28690169609388366 0 0.0 2.6874902636776703 2.3757499055961806 2.8875415519260743 2.7991793335107564 0.00812228 -0.02505052089691162 0.1259000301361084 444 90 90 54 2.5736303037932027 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 44.03052971563916 4.9253106117248535 21.731473922729492 9.10360336303711 286189.0 5.599099159240723 76.65450744628902 35.72328567504883 1.7939227330609455 84.044189453125 247.14776611328125 233.78717041015625 87736.0 127.76970863342285 410.09741973876953 90.83893585205078 29.95268440246582 +sub-10168_ses-V1_task-cuff_run-02_bold 0.0003246726862302483 0.00751811749435666 7 45.93365666674207 1.0319971626696829 0.9889090832579178 0.5287595415254356 586.2820434570312 0.30949383781175216 0 0.0 2.6687152637425453 2.3603874062066312 2.8671498860697 2.778608498951306 0.00628119 -0.023896249011158943 0.12592767179012299 443 90 90 54 2.5840020270410347 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 40.91162283988366 4.866147994995117 21.595298767089844 9.011286735534668 286573.0 5.55981969833374 76.91151275634749 35.32753372192383 1.7344138951679255 83.6482162475586 246.18121337890625 232.79232788085938 87543.0 127.64018630981445 408.4151214599605 90.08932495117188 30.346729278564453 +sub-10168_ses-V1_task-rest_run-01_bold 0.0004486067415730337 0.008099721325842696 5 46.64038735477477 1.0418384048423432 0.9926154576801804 0.5273482720785376 599.013427734375 0.31491480995625176 214 48.08988764044944 2.6925652635382344 2.3745207389783567 2.902116551346916 2.8010585002894306 0.00832511 -0.02524140663444996 0.12441761791706085 445 90 90 54 2.58054563834244 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 42.08095963106719 4.83095121383667 21.637365341186523 9.035955429077148 286537.0 5.597753047943115 77.09258270263675 35.47507858276367 1.7813201458832273 84.7398681640625 249.66323852539062 235.86517333984375 87426.0 129.8050537109375 413.77864837646484 91.4007568359375 29.765317916870117 +sub-10168_ses-V1_task-rest_run-02_bold 0.00043891647855530473 0.007359103182844244 7 46.339221393461514 1.0414779507466072 0.9972438227149318 0.529127365135508 589.4588623046875 0.2981355712106839 201 45.372460496613996 2.64637637486119 2.34190407360776 2.8451957202754135 2.752029330700397 0.00552047 -0.02447882853448391 0.1266690343618393 443 90 90 54 2.594409053188373 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 41.426566996984526 4.7657470703125 21.510940551757812 8.934537887573242 286719.0 5.580135345458984 76.56456451416011 35.186744689941406 1.7135109845391874 82.99392700195312 245.1416473388672 231.7550811767578 87416.0 128.1472930908203 405.7708969116211 89.3281478881836 30.90520668029785 +sub-10169_ses-V3_task-rest_run-01_bold 0.0006888914027149322 0.009970738484162897 8 35.95436090988664 1.105100907845805 0.9751115531292512 0.4287395947199443 14926.6259765625 0.17177016590740976 23 5.203619909502263 2.327593905436194 2.2975707420360747 2.4378124031300383 2.2473985711424693 0.00533574 -0.005174841266125441 0.01763702742755413 442 90 90 60 2.8067853439727966 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 531.6209404988189 13.024761199951172 27.139163970947266 8.92760181427002 327210.0 0.0 109.73552818298334 76.24266052246094 3.1393864194872414 280.8692321777344 1138.815185546875 1076.52490234375 91421.0 610.015869140625 1843.911865234375 383.5416259765625 38.695343017578125 +sub-10169_ses-V3_task-rest_run-02_bold 0.0008525396825396826 0.010918246780045352 9 38.24196279704546 1.1306667915227269 0.9758082692954548 0.42960510595852053 15520.626953125 0.16415021066829427 31 7.029478458049887 2.3289327916368605 2.299916575276193 2.4262207369239834 2.2606610627104042 0.00904849 -0.006268227007240057 0.01686622016131878 441 90 90 60 2.8263795378300487 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 304.81593210454196 12.825685501098633 26.92792320251465 8.809523582458496 327120.0 0.0022675737272948027 110.5873031616211 67.56968688964844 3.2204293317220314 278.5729064941406 1138.787841796875 1076.452392578125 91382.0 620.778564453125 1841.8217285156245 380.8570251464844 36.769535064697266 +sub-10170_ses-V1_task-cuff_run-01_bold 0.0004374266365688487 0.008496733002257338 7 38.635792564027135 0.9890320536877824 0.9730011529638006 0.5308496163426759 516.000732421875 0.24923719178993645 0 0.0 2.576468038032237 2.390599905006095 2.776229056349236 2.5625751527413816 0.0378503 -0.02959001250565052 0.11420666426420212 443 90 90 54 2.344266445969241 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 64.08197370220101 5.013404369354248 22.695045471191406 10.069977760314941 280484.0 6.52821683883667 77.21218872070312 37.856929779052734 1.302770524586693 89.89322662353516 263.283935546875 246.958251953125 92192.0 116.61016273498535 460.07991333007806 105.3450698852539 29.447154998779297 +sub-10170_ses-V1_task-cuff_run-02_bold 0.007813828828828829 0.012642825 6 36.576413630225694 1.0098048992325066 1.0242248268848753 0.5299396351691866 518.9815063476562 0.1980678700234488 6 1.3513513513513513 2.5736555381037074 2.384579071912008 2.775029056396919 2.561358486002196 0.00599993 -0.029410988092422485 0.11297453194856644 444 90 90 54 2.352796035784229 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 66.59197220950794 4.978738307952881 22.446277618408203 10.04054069519043 280759.0 6.495495796203613 75.52748107910146 37.36130905151367 1.2845474805008221 88.39347839355469 261.5470886230469 245.07884216308594 92078.0 117.19234352111818 457.8224212646484 104.16436767578125 26.67959213256836 +sub-10170_ses-V1_task-rest_run-01_bold 0.0005711337868480726 0.008567180544217687 9 36.52984489954546 0.9564924065681815 0.9575834919545465 0.5289813384233653 535.58740234375 0.18453960302699093 95 21.541950113378686 2.6020110939023176 2.4120582374867503 2.7912498890856945 2.6027251551345083 0.0142258 -0.030818624421954155 0.11261064559221268 441 90 90 54 2.3370226844766426 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 63.61421760316877 4.965540885925293 22.57503318786621 10.052154541015625 280449.0 6.523809432983398 76.39909362792969 37.48573684692383 1.3144304242772797 91.24728393554688 266.6906433105469 249.96485900878906 92272.0 118.79864044189453 466.78889770507817 106.95809936523438 29.63427734375 +sub-10170_ses-V1_task-rest_run-02_bold 0.003277900677200903 0.011198405462753951 7 40.09560086619907 0.9985864305656105 0.9968142747511309 0.5304788937982635 502.0372619628906 0.23329319919612454 109 24.604966139954854 2.5530138720431315 2.365208239348402 2.7389415578309073 2.554891818950086 0.00887736 -0.028584958985447884 0.11273802071809769 443 90 90 54 2.359527725291535 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 61.537544586873395 5.056911945343018 22.32677459716797 10.090293884277344 281097.0 6.510158061981201 74.86320800781255 36.89442443847656 1.243787136258521 87.37313079833984 260.76123046875 244.23477172851562 91820.0 117.47799682617188 455.8512390136719 103.50946044921875 27.761260986328125 +sub-10171_ses-V1_task-rest_run-01_bold 0.0035933333333333334 0.023791736914414413 6 49.162006533205435 0.9938712895936791 0.9610240660722345 0.5724846229094092 272.8224182128906 0.25866172749352023 79 17.792792792792792 2.933243040342029 2.5789082308567273 3.160362374418482 3.0604585157508764 0.0155462 -0.012631176970899105 0.1506691873073578 444 90 90 54 2.0460471778202853 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 14.776960055063011 10.08102798461914 33.78687286376953 13.939189910888672 268139.0 6.698198318481445 136.29076843261714 50.30816650390625 0.5385539653962805 112.49578857421875 270.0097961425781 249.43356323242188 103182.0 105.96407890319824 502.66048126220693 121.90938568115234 23.009830474853516 +sub-10171_ses-V1_task-rest_run-02_bold 0.0033730405405405406 0.02360543770270271 6 53.72759017756213 1.0653597912415342 0.9995252852595935 0.5735814432431995 258.85858154296875 0.3801661768709153 167 37.612612612612615 2.90369581916435 2.553995731846661 3.100545710128716 3.056546015517673 0.00651056 -0.01214585080742836 0.15363709628582 444 90 90 54 2.0337815251064764 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 14.76700433569713 10.328128814697266 33.97324752807617 14.11486530303955 269054.0 6.704955101013184 136.49572372436492 50.424171447753906 0.5651436427374996 111.54244995117188 268.236083984375 247.45045471191406 102525.0 105.18919372558594 500.51533203124984 121.6695327758789 23.057144165039062 +sub-10173_ses-V1_task-cuff_run-01_bold 0.0026798871331828442 0.015592648916478555 7 47.71766498615387 1.0881260971040723 1.0610680832352937 0.45402877880339454 2462.02880859375 0.4003527414561122 2 0.45146726862302483 2.4955355371536965 2.493583234247238 2.6033082298871584 2.3897151473266933 0.0224576 0.021924927830696106 0.008351700380444527 443 90 90 60 2.317751167728789 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 130.32413445864054 31.228355407714844 61.86762619018555 22.69977569580078 329511.0 0.1241535022854805 237.13883209228516 139.42129516601562 3.5561985607089364 319.91741943359375 1214.2518310546875 1103.8555908203125 89663.0 658.942919921875 2200.2671630859368 476.2588195800781 25.851163864135742 +sub-10173_ses-V1_task-rest_run-01_bold 0.003831179138321995 0.01226830492063492 9 41.530940753818165 1.088690620159091 1.154312613522727 0.45294815348021433 2677.43212890625 0.3218823260097694 216 48.97959183673469 2.4858383149724257 2.47894573482888 2.587120730530392 2.391448479558004 0.0204886 0.021477719768881798 0.009974946267902851 441 90 90 60 2.3102202918132697 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 135.40618347685182 30.226930618286133 62.01352310180664 21.8344669342041 330238.0 0.12018140405416489 239.85340423583912 140.8992919921875 3.56578114274814 319.99151611328125 1211.0330810546875 1100.3050537109375 89204.0 654.1506774902344 2196.8838134765565 476.2744445800781 27.668487548828125 +sub-10173_ses-V1_task-rest_run-02_bold 0.002138284424379232 0.016056075033860046 7 48.11012287083709 1.0753881416063347 1.0422953264705868 0.4541047895243251 2434.671875 0.4226500412058841 286 64.55981941309255 2.4898480376785486 2.484195734620264 2.597137396799032 2.3882109816163495 0.0234349 0.02221805974841118 0.008949236012995243 443 90 90 60 2.314738635093039 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 127.46666512578136 31.184846878051758 62.06459426879883 22.71331787109375 330051.0 0.15124154090881348 237.82957458496094 140.26498413085938 3.5619076014233118 318.4382019042969 1211.5662841796875 1100.72802734375 89352.0 656.5114349365235 2195.105383300781 475.5274963378906 25.02374267578125 +sub-10173_ses-V3_task-cuff_run-01_bold 0.0011185941043083901 0.011634318866213153 9 37.99827202027276 1.0377694873863639 0.9837281539545455 0.4501880710106185 2726.458740234375 0.21004181453668203 0 0.0 2.4436813798159798 2.4394665697309748 2.5384457324645626 2.3531318372524024 0.00867516 0.021054105833172798 0.009954677894711494 441 90 90 60 2.3420955833155443 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 162.51809010598467 29.931081771850586 57.782676696777344 21.424036026000977 330523.0 0.043083902448415756 218.5024963378903 130.03211975097656 3.3949152370506335 318.65179443359375 1206.5498046875 1101.0975341796875 88851.0 648.2947692871094 2178.28466796875 470.1308288574219 29.185781478881836 +sub-10173_ses-V3_task-rest_run-01_bold 0.0007551927437641723 0.00991111866213152 9 37.75129492056816 1.0532076935454548 0.9868821656136362 0.44910193611371846 2706.5927734375 0.2024616397305912 103 23.356009070294785 2.4226147172638526 2.42408323700892 2.5071249003758074 2.3366360144068308 0.00436145 0.02173626236617565 0.010538333095610142 441 90 90 60 2.3361592856293707 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 158.56831460848903 29.737773895263672 56.88154983520508 21.293651580810547 330936.0 0.0317460335791111 214.43763732910156 128.1641845703125 3.3383455188657294 317.9458923339844 1203.0308837890625 1098.1383056640625 88551.0 644.0589599609375 2174.8287353515625 470.0587463378906 32.41440200805664 +sub-10173_ses-V3_task-rest_run-02_bold 0.0019549887133182846 0.013803644695259592 7 39.17386561178738 1.0469156787330316 0.9977910742760184 0.4517006897062372 2474.01806640625 0.23510837923332276 146 32.957110609480814 2.4533147116340315 2.453458235841662 2.5476540654319897 2.358831833628442 0.0153662 0.021768152713775635 0.010405734181404114 443 90 90 60 2.352755720403136 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 162.79061097668296 30.870256423950195 58.72187805175781 22.41534996032715 330585.0 0.1151241585612297 219.20812683105447 132.11236572265625 3.3591919143949838 315.6403503417969 1200.853271484375 1095.4808349609375 88847.0 650.5805908203125 2164.9957031249996 465.6134338378906 26.699634552001953 +sub-10174_ses-V1_task-cuff_run-01_bold 0.0010105895691609977 0.014927127528344668 9 45.05579182020453 1.0982584783636369 0.9732308721818187 0.4202483787795943 9419.791015625 0.30550216204394837 2 0.45351473922902497 2.334230000132418 2.3077624082977612 2.3662374059741733 2.328690186125319 0.00588773 -0.0031545436941087246 0.015280005522072315 441 90 90 60 2.9484132494812925 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 327.05711279282906 13.925031661987305 26.871152877807617 9.725624084472656 336515.0 0.01814058981835842 100.47982177734369 63.05400085449219 4.651037286702036 216.1774139404297 981.0571899414062 935.408203125 82719.0 549.671875 1552.0619262695307 317.2562561035156 30.251853942871094 +sub-10174_ses-V1_task-cuff_run-02_bold 0.0009516515837104073 0.01607071269230769 8 47.32672810287985 1.1117252330158727 0.9798390529931968 0.42073041298907055 9483.4072265625 0.33854882607795983 3 0.6787330316742082 2.3455508299098398 2.311541574814257 2.3807874053960085 2.344323509519253 0.0089012 -0.003348470199853182 0.016211044043302536 442 90 90 60 2.9493312012157706 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 324.09941207847123 13.849920272827148 26.99485969543457 9.696832656860352 336517.0 0.031674209982156754 101.03439483642582 63.736610412597656 4.578834752509671 215.7387237548828 976.291748046875 932.219482421875 82839.0 543.5683227539063 1543.844848632812 316.07635498046875 28.797313690185547 +sub-10174_ses-V1_task-rest_run-01_bold 0.0021903160270880357 0.01699667374717833 7 44.18459077536202 1.099932554140272 0.9997049513574657 0.4204794866752878 9411.5654296875 0.29664315146185644 159 35.89164785553047 2.3535911034184926 2.3173749079157946 2.3791957387925886 2.364202663547094 0.00965328 -0.0023418888449668884 0.016058914363384247 443 90 90 60 2.9336569081117347 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 342.89468136680716 13.955872535705566 27.017459869384766 9.765236854553223 336149.0 0.022573363035917282 100.60948181152344 65.00834655761719 4.827582198732041 217.09915161132812 985.4351196289062 940.559814453125 82988.0 549.8856781005859 1564.5507080078123 320.60809326171875 28.519855499267578 +sub-10174_ses-V1_task-rest_run-02_bold 0.0028889592760181 0.016589597036199097 8 41.40056398188209 1.0972950197505658 1.0122647812925172 0.42236191544772106 9513.728515625 0.24567846480097771 116 26.244343891402714 2.347977218783441 2.3183374078775483 2.3816790720272434 2.343915176445531 0.00666066 -0.004235533997416496 0.01429060474038124 442 90 90 60 2.9664332517995 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 201.89328553378718 13.950550079345703 27.535263061523438 9.787330627441406 335792.0 0.04072398319840431 104.25893898010257 61.1782112121582 4.866293428091349 216.46331787109375 990.1455688476562 943.7772216796875 82992.0 560.2040985107421 1562.4820556640618 318.1502685546875 28.553592681884766 +sub-10174_ses-V3_task-cuff_run-01_bold 0.002461156462585034 0.017073587188208617 9 36.38684992336361 0.992078985068182 0.941977077318182 0.4261593490158435 9313.876953125 0.23780583292121232 4 0.9070294784580499 2.3984673699017085 2.385070738559137 2.39881657134626 2.411514799799728 0.0105934 -0.00780284870415926 0.020873229950666428 441 90 90 60 3.01402442399761 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 138.18976312254534 15.384100914001465 31.711734771728516 10.85714340209961 335147.0 0.054421767592430115 126.25510559082045 69.76546478271484 2.681572660399861 259.9259338378906 1067.0081787109375 1030.990966796875 83885.0 571.9982055664062 1682.2317626953127 342.0625305175781 26.654233932495117 +sub-10174_ses-V3_task-cuff_run-02_bold 0.002021065759637188 0.019232185941043086 9 38.306903318886384 0.9953380577727277 0.9613963234090909 0.4265606652957742 9302.8515625 0.2682462355798611 7 1.5873015873015872 2.407960428322429 2.3921332382784986 2.4104415708843243 2.421306475804465 0.00355117 -0.007452474907040596 0.021860724315047264 441 90 90 60 3.044306351419116 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 152.0726517122984 15.37065315246582 31.08621597290039 10.798186302185059 335121.0 0.054421767592430115 121.90249633789062 68.04217529296875 2.655595362474882 258.17449951171875 1054.1171875 1020.7142944335938 84049.0 566.8462524414062 1657.5488281249975 335.2843322753906 24.473464965820312 +sub-10174_ses-V3_task-rest_run-01_bold 0.0018827891156462586 0.020090180952380954 9 37.34131488820453 1.0259679903181815 0.9716315185909083 0.4268180640214025 9072.75 0.24471499880084968 100 22.675736961451246 2.3971868115685737 2.3876332384573127 2.4009540712613235 2.4029731249870854 0.0085359 -0.007519465871155262 0.02227814868092537 441 90 90 60 3.039642047793013 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 116.21809694433 15.649691581726074 31.9710750579834 11.03628158569336 335489.0 0.06122449040412903 125.90294952392567 68.91862487792969 2.671174206220348 259.7143859863281 1070.09521484375 1033.5079345703125 83761.0 577.1134033203125 1685.3355712890625 340.0077209472656 24.928024291992188 +sub-10174_ses-V3_task-rest_run-02_bold 0.0009383636363636364 0.014441270818181818 10 34.74399825603643 0.9766084710706141 0.9346472311161732 0.4261042265331419 10200.3837890625 0.20308613006373766 64 14.545454545454545 2.387277088915045 2.369658239171575 2.3916915716293823 2.400481455944178 0.00230641 -0.007824546657502651 0.02107010781764984 440 90 90 60 3.0346470771843137 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 137.43109544657892 14.829391479492188 31.024150848388672 10.22499942779541 334934.0 0.0022727272007614374 125.3416999816894 68.31121826171875 2.6652072266384703 258.43280029296875 1054.3857421875 1020.9522705078125 84110.0 565.0411071777344 1657.6726501464848 336.4299621582031 29.502946853637695 +sub-10175_ses-V1_task-cuff_run-01_bold 0.0006484389140271493 0.007925526244343891 8 44.335947923265344 1.058520313424035 0.999113476893424 0.5431828198617372 506.7818603515625 0.27074040930004045 0 0.0 2.682379151245737 2.37514157228702 2.918837384015823 2.7531584974343675 0.00994709 -0.021909696981310844 0.1246500164270401 442 90 90 54 2.444340076162171 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 34.53933232418923 4.1123762130737305 22.575443267822266 9.859728813171387 277645.0 6.884615898132324 78.75791931152344 35.78369903564453 1.437700968449926 87.39639282226562 251.27902221679688 237.16064453125 94941.0 119.43891906738281 429.7692565917969 97.02389526367188 30.889732360839844 +sub-10175_ses-V1_task-cuff_run-02_bold 0.0010861085972850677 0.007607098235294117 8 44.26827336861677 1.0691328776190474 1.0156792695011339 0.5436735923929326 503.96368408203125 0.2649901739394783 0 0.0 2.6726847064123445 2.375479072273609 2.9127957175892307 2.729779329374194 0.0101444 -0.022124256938695908 0.1268804371356964 442 90 90 54 2.4346707947492217 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 35.101562665013 4.129148960113525 22.650787353515625 9.830317497253418 277666.0 6.8235297203063965 79.2126693725586 36.067928314208984 1.4711300176719337 86.57291412353516 249.0747528076172 235.08145141601562 95078.0 117.54129447937012 427.02705688476544 96.55523681640625 31.382099151611328 +sub-10175_ses-V1_task-rest_run-01_bold 0.0004224660633484163 0.007217917986425338 8 46.21178291834469 1.0687740773696146 0.9966039125850341 0.5429044084814043 508.8847961425781 0.2903622048595079 203 45.92760180995475 2.694287484754214 2.383245738631656 2.9268790503629427 2.7727376652680435 0.00582292 -0.023658405989408493 0.12363763898611069 442 90 90 54 2.432899403347604 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.61667097902449 4.102313995361328 22.502727508544922 9.871041297912598 277147.0 6.947964191436768 78.44049987792971 35.479827880859375 1.377506444297925 88.80184936523438 252.565673828125 238.4841766357422 95342.0 118.47082252502442 433.2348678588867 98.02416229248047 32.26824188232422 +sub-10175_ses-V1_task-rest_run-02_bold 0.0005128668171557562 0.006775467878103838 7 44.67476295020361 1.0636158567647056 1.0012954065837096 0.5446305817762085 496.9256591796875 0.26633144447982837 175 39.503386004514674 2.6429194288339937 2.351158239906699 2.877516552324432 2.7000834942708507 0.00895561 -0.022757038474082947 0.12883353233337402 443 90 90 54 2.438965093684569 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.29841496497018 4.109786510467529 22.71361541748047 9.823927879333496 277892.0 6.862302780151367 79.73916778564455 36.1643180847168 1.5060473035673176 86.20010375976562 248.4833984375 234.14785766601562 94754.0 119.20011444091797 426.44628295898434 96.00244903564453 33.057491302490234 +sub-10177_ses-V1_task-cuff_run-01_bold 0.0005154072398190046 0.005717536832579186 8 34.49879337510206 1.015862132108844 0.997086254920634 0.5633144409644613 450.81854248046875 0.0717049970431718 0 0.0 2.6885694253494403 2.4873207344960875 2.928754050288437 2.6496334912637964 0.0104089 -0.046065304428339005 0.17629815638065338 442 90 90 54 2.150355681590345 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.31364804371468 5.719089031219482 27.01629638671875 10.789593696594238 261490.0 6.714932441711426 99.80893974304198 43.89448165893555 2.02614925484389 99.73185729980469 271.16448974609375 250.60748291015625 108206.0 116.2268123626709 489.70645904541016 116.54180145263672 35.057281494140625 +sub-10177_ses-V1_task-cuff_run-02_bold 0.0006769525959367946 0.004962550993227992 7 35.5263447825339 1.0327713953846154 1.0033029218552036 0.5651470222020959 439.8466491699219 0.07709999909810739 0 0.0 2.6974472031576 2.494862400863075 2.9362748833229193 2.661204325286805 0.0128099 -0.04722639545798302 0.17893651127815247 443 90 90 54 2.13084095107822 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.5720269902908 5.7831525802612305 27.313629150390625 10.828442573547363 260575.0 6.715575695037842 101.48758697509766 44.250526428222656 2.0192253572757997 99.94344329833984 269.43670654296875 248.89390563964844 109021.0 113.92325592041016 488.58013916015625 116.80494689941406 35.837440490722656 +sub-10177_ses-V1_task-rest_run-01_bold 0.00036766439909297055 0.0048995935374149665 9 34.32487932543184 1.0192744602272736 0.9946680868636367 0.5614196747431426 459.8495178222656 0.0738942136961358 0 0.0 2.6965499807800746 2.4926374009514887 2.941574883112316 2.6554376582764183 0.0115216 -0.046079471707344055 0.17534883320331573 441 90 90 54 2.1466302483410287 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.80422021952927 5.661456108093262 27.100221633911133 10.770975112915039 262158.0 6.759637355804443 100.0360534667968 44.50832748413086 1.9420220474056524 101.57001495361328 273.4022216796875 253.16099548339844 107651.0 116.25170135498047 493.4909362792969 117.93359375 36.24313735961914 +sub-10177_ses-V1_task-rest_run-02_bold 0.0005314898419864559 0.004815649525959368 7 35.930029329683244 1.0321408535294123 1.000623809728507 0.5667337624393345 418.3482971191406 0.08326677102902184 2 0.45146726862302483 2.6769972030426126 2.4842749012837846 2.913524884226923 2.6331918236171297 0.0132256 -0.047267645597457886 0.17939044535160065 443 90 90 54 2.131679560839409 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.17319430982917 6.141253471374512 27.639564514160156 11.051918983459473 261114.0 6.629796981811523 102.9053073883055 44.22703170776367 2.1090997449889253 98.927734375 267.84698486328125 247.3160400390625 108672.0 114.27438201904297 486.16705322265625 116.018798828125 35.99738693237305 +sub-10179_ses-V1_task-cuff_run-01_bold 0.0034055180180180182 0.022612351126126126 6 40.4968577918736 0.9246895403160265 0.9434738821670425 0.5208104361979463 706.0955810546875 0.30540965530710845 17 3.828828828828829 2.839565263736365 2.511774900191033 3.023479046524404 2.983441844493658 0.00691232 -0.033050742000341415 0.10404340922832489 444 90 90 54 2.854242263788566 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.225219658378364 3.2356796264648438 18.25174331665039 8.502252578735352 285257.0 6.096847057342529 59.215317535400466 29.662822723388672 0.3852928208296884 78.07038116455078 243.5198516845703 237.09910583496094 88515.0 116.82905731201171 389.8160064697266 83.06855010986328 21.767610549926758 +sub-10179_ses-V1_task-cuff_run-02_bold 0.0010536404494382024 0.01231956247191011 5 37.13571500346844 0.974985333536036 0.9695541056756747 0.5188554744576868 723.0398559570312 0.20186122653042574 3 0.6741573033707865 2.765783319908966 2.4597707355908263 2.9240415504756947 2.913537673660378 0.00525171 -0.032506126910448074 0.10528451204299927 445 90 90 54 2.8544820509058435 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 53.0808036310191 3.0318381786346436 18.01974868774414 8.307865142822266 285947.0 6.013483047485352 59.289886474609375 30.119951248168945 0.4417844418893746 77.54510498046875 242.95989990234375 236.37753295898438 87939.0 118.22809371948243 390.04763183593747 82.80878448486328 27.71553611755371 +sub-10179_ses-V1_task-rest_run-01_bold 0.0030260135135135135 0.01759678283783784 6 38.58585766688489 0.9878866159367945 0.9861353409932271 0.5213783431193237 708.037841796875 0.23241566231300867 79 17.792792792792792 2.831594430608971 2.5134915667894853 3.0011957140765304 2.9800960109608976 0.0050556 -0.035100337117910385 0.10841118544340134 444 90 90 54 2.812228478796213 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 34.835279265415814 3.2223222255706787 18.51197052001953 8.486486434936523 285895.0 6.085585594177246 61.93310928344724 28.703655242919922 0.40776181634092934 79.27080535888672 246.27162170410156 238.7015838623047 88098.0 118.81171302795411 398.6380676269531 84.87938690185547 24.073562622070312 +sub-10179_ses-V1_task-rest_run-02_bold 0.0005104954954954956 0.014928594234234234 6 38.218319731331825 0.9584969901805872 0.9487989878555309 0.5238092416679802 670.5711059570312 0.20384388416279212 85 19.144144144144143 2.7887666532174364 2.4865290678608787 2.939404049865244 2.9403668419261875 0.0125009 -0.035432957112789154 0.1055452823638916 444 90 90 54 2.8159115721393237 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.13771714747356 3.3625688552856445 18.620397567749023 8.574324607849121 284686.0 6.033783912658691 62.53603649139404 28.732664108276367 0.4486740054106937 78.79496002197266 243.6704559326172 236.3468475341797 88851.0 119.48198699951172 394.0574493408203 83.9321517944336 26.209461212158203 +sub-10180_ses-V1_task-rest_run-01_bold 0.0014354260089686098 0.010250947511210761 4 41.934315259550544 1.0659262444269662 1.0143430065393255 0.5107156078822601 634.9788818359375 0.16387108145039972 45 10.089686098654708 2.667393042296812 2.433712403292958 2.7679957233430654 2.8004710002544124 0.0235288 -0.015102172270417213 0.08026426285505295 446 90 90 54 2.5504465290537928 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 55.53670824246456 3.866067886352539 19.14488983154297 8.926009178161621 289820.0 6.118834495544434 59.95762557983393 32.40007400512695 0.8308107339230162 83.22516632080078 251.74514770507812 237.865478515625 84235.0 122.60942230224609 426.23678894042973 93.2636947631836 30.39082908630371 +sub-10180_ses-V1_task-rest_run-02_bold 0.001515977528089888 0.008495849280898875 5 42.12492776968468 1.0533879013963963 1.0230493695045058 0.5134133220738898 525.6917724609375 0.10921654472574441 14 3.146067415730337 2.6920248930285418 2.477824901540085 2.829504054232277 2.768745723313263 0.0140988 -0.016769876703619957 0.08078461140394211 445 90 90 54 2.449907374358068 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 57.59504080965767 4.1379594802856445 18.790771484375 9.384269714355469 287474.0 6.388763904571533 56.44348335266108 30.63408088684082 0.8720533226808551 81.3465576171875 244.46286010742188 229.06292724609375 85770.0 117.76359634399414 422.39102630615247 93.49806213378906 30.457294464111328 +sub-10182_ses-V1_task-cuff_run-01_bold 0.03311689655172413 0.011835655172413792 6 53.197199686071436 1.2664436696428572 1.2213910175 0.5183224115902384 617.5827026367188 0.5221670327029108 5 17.24137931034483 2.7546180379691556 2.5353123992557367 2.954091549281615 2.7744501653701166 0.0109605 -0.014150252565741539 0.0810348317027092 29 90 90 54 2.604255855098471 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 37.939667099100454 4.856801509857178 21.181764602661133 9.896552085876465 287438.0 6.448276042938232 71.44827270507812 32.385643005371094 1.168710426697662 87.01338958740234 274.1148681640625 263.5517272949219 86720.0 123.37931060791016 458.0689697265625 101.19981384277344 28.68964385986328 +sub-10182_ses-V1_task-cuff_run-02_bold 0.0008930316742081447 0.004866911244343891 8 36.017956376802765 1.071401185646258 1.0102343866893417 0.5178822283053673 640.81396484375 0.15177531735159197 0 0.0 2.7338652599590034 2.5290290661720807 2.930037383570775 2.742529330134153 0.00353222 -0.013827580958604813 0.07941452413797379 442 90 90 54 2.6210147664661876 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 36.35214686848501 4.789945602416992 21.453584671020508 9.841629028320312 287739.0 6.3416290283203125 74.59977493286128 33.37686538696289 1.1031661342514587 87.6932373046875 275.3974304199219 265.46380615234375 86484.0 123.67229118347169 457.77953186035154 101.2822494506836 39.075077056884766 +sub-10182_ses-V1_task-rest_run-01_bold 0.0009504977375565612 0.00549459814479638 8 37.73850166322 1.0778554663945583 1.004461611927437 0.5165442848447146 640.1835327148438 0.17691753248283568 44 9.95475113122172 2.7306999820750684 2.5295832328167265 2.9269915503584722 2.735525163050006 0.00732266 -0.014320681802928448 0.07971447706222534 442 90 90 54 2.5839718962265024 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 37.665658720015195 4.742986679077148 20.952621459960938 9.744344711303711 287277.0 6.266968727111816 70.8000030517579 32.60888671875 1.2248392269016035 87.31922149658203 273.29638671875 263.0837097167969 86906.0 120.6436710357666 456.47174072265625 101.81310272216797 37.34237289428711 +sub-10182_ses-V1_task-rest_run-02_bold 0.0012517647058823528 0.006737503733031675 8 38.47033095433105 1.0629611638548757 1.0054972507256241 0.5195611091811358 609.69677734375 0.19762474228321347 71 16.063348416289593 2.7507249823380184 2.5430082322832654 2.941670716441841 2.767495998288949 0.00313792 -0.013268121518194675 0.07939412444829941 442 90 90 54 2.617025744322195 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.8069485168942 5.098540782928467 21.437501907348633 10.013575553894043 287361.0 6.233031749725342 73.8846206665039 32.7635498046875 1.0892471372821282 86.98715209960938 273.947509765625 263.8133544921875 86904.0 122.76640663146974 455.179553222656 100.80597686767578 34.910099029541016 +sub-10182_ses-V3_task-cuff_run-01_bold 0.0009176539589442818 0.006212521906158358 7 39.476656409 1.072834451558824 1.002941278676471 0.5312187473152937 476.2979431152344 0.15521747521580972 0 0.0 2.7430777652659963 2.501262400608762 2.8141207215102226 2.9138501736790046 0.00862371 -0.009199059568345547 0.07269226759672165 341 90 90 54 2.6623394998874783 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 41.03966272245386 3.9521565437316895 21.426881790161133 10.258064270019531 286436.0 7.334311008453369 71.5197925567627 33.26857376098633 0.9893628925526738 77.80401611328125 249.1424102783203 237.1964874267578 87282.0 120.85058746337891 413.28416137695314 89.09274291992188 36.63526916503906 +sub-10182_ses-V3_task-cuff_run-02_bold 0.0008614578587699316 0.006739758428246014 11 39.61069423216896 1.07240263954338 1.0017813226484014 0.5322629320961668 466.4344482421875 0.14794568506770067 0 0.0 2.7362666542890786 2.4966165674600376 2.8024540553071478 2.9097293401000504 0.00454179 -0.010164530016481876 0.07183897495269775 439 90 90 54 2.660932346943809 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 40.058577717036805 3.9851269721984863 21.530237197875977 10.314351081848145 286133.0 7.419134616851807 72.2742630004882 33.26124954223633 1.071760677765858 77.50397491455078 249.0256805419922 236.4237060546875 87365.0 122.78178253173829 413.39729003906257 88.84944152832031 35.91127395629883 +sub-10182_ses-V3_task-rest_run-01_bold 0.000886036036036036 0.008340301013513515 6 38.81165437735891 1.0377741543566599 0.9774528185327302 0.5294888793002523 491.71051025390625 0.15340404215005565 25 5.63063063063063 2.7496277654755232 2.504908233797223 2.8159373881047016 2.9280376745246453 0.00676942 -0.008332985453307629 0.07123884558677673 444 90 90 54 2.698625747951058 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.25886844694638 3.863447904586792 21.11121940612793 10.17792797088623 286981.0 7.299549579620361 69.56756591796875 32.723426818847656 0.9951466919424221 77.66966247558594 250.68186950683594 238.90090942382812 86838.0 123.82252273559571 413.5618331909179 88.5263671875 33.519012451171875 +sub-10182_ses-V3_task-rest_run-02_bold 0.0005246501128668172 0.008648927336343116 7 39.58192853794118 1.0355359077828061 0.9674085289592764 0.5337001214265749 461.8285827636719 0.15217204215731986 20 4.514672686230249 2.771219432330193 2.5210832331544863 2.8329498874286854 2.9596251764074073 0.00697367 -0.010452871210873127 0.07148061692714691 443 90 90 54 2.632321272575017 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.31484056385683 3.9959986209869385 21.776037216186523 10.347630500793457 285641.0 7.471783638000488 72.69075012207031 33.304351806640625 1.1042963148565441 77.30950927734375 248.02259826660156 235.65237426757812 87966.0 120.2263011932373 412.98252868652344 89.52214050292969 32.896949768066406 +sub-10185_ses-V1_task-cuff_run-01_bold 0.0018593212669683259 0.0044452521040723985 8 42.17477040721091 1.1926238709977321 1.0219216645351472 0.49562511991297603 756.861083984375 0.13714090304449927 1 0.22624434389140272 2.8043360932817674 2.5584582316693374 3.027774879687036 2.8267751684889295 0.0136497 -0.022452017292380333 0.0884322077035904 442 90 90 54 2.080211719784749 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 8 60.74120559822584 3.810488700866699 19.289775848388672 9.217194557189941 284435.0 6.47963809967041 60.86719856262204 31.007678985595703 0.9797034741611683 112.52685546875 301.91473388671875 274.17083740234375 89646.0 132.04751586914062 557.9989166259766 131.7987518310547 38.42771911621094 +sub-10185_ses-V1_task-cuff_run-02_bold 0.00038490950226244345 0.005780234208144796 8 41.208308057596355 1.1170241759637187 0.9649332493650797 0.4948799232620644 760.8971557617188 0.1327369336845385 0 0.0 2.8314110939515476 2.5657665647122636 3.0489748788446236 2.8794918382977546 0.0046635 -0.020749054849147797 0.0878857895731926 442 90 90 54 2.076505391629135 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 55.856125593303595 3.7299866676330566 18.994108200073242 9.124434471130371 284961.0 6.4095025062561035 59.398193359375 29.73842430114746 0.9808938741617435 110.95030212402344 299.16961669921875 271.4841613769531 89409.0 130.28914489746094 551.3769653320312 130.7401580810547 35.455467224121094 +sub-10185_ses-V1_task-rest_run-01_bold 0.0004655530474040632 0.004161283702031603 7 41.724775116040696 1.1743119251131229 0.9926998853619905 0.49398881358270963 781.6524047851562 0.1263346472021366 8 1.8058690744920993 2.8229166485835617 2.575441564327814 3.0518998787283946 2.8414085026944775 0.00579679 -0.021693948656320572 0.08577948808670044 443 90 90 54 2.08037040862607 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 58.74609735929588 3.6646718978881836 18.990562438964844 9.126411437988281 284311.0 6.487584590911865 60.106096267700195 30.501794815063477 0.8988692768717916 114.7259750366211 302.54901123046875 275.85101318359375 89878.0 130.3318328857422 559.9733520507812 132.59632873535156 39.97787094116211 +sub-10185_ses-V1_task-rest_run-02_bold 0.00240578231292517 0.00600283015873016 9 41.65862697254547 1.1202524404772727 0.9792812059090914 0.4957751823964548 758.2673950195312 0.1438899806470908 25 5.668934240362812 2.8255472049856416 2.561212398226563 3.045299878990655 2.8701293377397064 0.00825359 -0.021661104634404182 0.0881565511226654 441 90 90 54 2.0676313731433793 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 50.93943848934045 3.758615016937256 19.136476516723633 9.131519317626953 284927.0 6.387755393981934 60.7158729553223 29.571712493896484 1.0594591496044181 110.22525024414062 297.6966247558594 269.91949462890625 89538.0 129.9384407043457 550.2372039794922 130.54454040527344 34.84208679199219 +sub-10185_ses-V3_task-cuff_run-01_bold 0.004541955056179775 0.00846414195505618 5 46.546313406283794 1.1274085519819816 1.0359743971621624 0.5041598668189811 599.7702026367188 0.2600496731753847 12 2.696629213483146 2.76813193000426 2.4955957341672685 2.9231207171789517 2.8856793386665585 0.0107263 -0.013038504868745804 0.0743284747004509 445 90 90 54 2.1903998170315524 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 8 62.33081424513453 2.9918582439422607 18.284626007080078 9.588764190673828 283613.0 7.292134761810303 53.36539382934539 28.03199005126953 0.7873245136216802 98.528076171875 273.0423278808594 249.5550537109375 90326.0 123.7809009552002 493.37135314941406 113.93064880371094 30.415678024291992 +sub-10185_ses-V3_task-cuff_run-02_bold 0.0006245823927765237 0.005100618939051918 7 42.95859707099548 1.1395049154977384 1.0016107293891394 0.5060356478624657 590.1226196289062 0.1419866897481276 0 0.0 2.7240958188932036 2.4606082355575465 2.8788415522717816 2.8328376688502828 0.00724356 -0.013894480653107166 0.07618114352226257 443 90 90 54 2.1949725716145174 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 55.38518129782178 2.9083096981048584 18.460384368896484 9.584650039672852 283937.0 7.487584590911865 55.060951232910156 28.238384246826172 0.8049118294595123 97.48026275634766 273.9440612792969 249.9887237548828 89935.0 126.15598754882814 495.6941528320313 113.890869140625 37.6608772277832 +sub-10185_ses-V3_task-rest_run-01_bold 0.00041873015873015876 0.005323590839002267 9 42.81340843552278 1.1533122412727281 0.9908178499999999 0.5034141017495715 606.166748046875 0.11723149881448305 0 0.0 2.728673596329717 2.470004068517523 2.887991551908193 2.8280251685634354 0.00883783 -0.015866460278630257 0.07588894665241241 441 90 90 54 2.194238755119115 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 67.09165905251756 2.860985279083252 18.122188568115234 9.57369613647461 283691.0 7.514739513397217 52.30158615112305 28.044326782226562 0.7584985761249485 99.30577850341797 277.1302490234375 253.23696899414062 90032.0 126.755330657959 501.8015853881835 115.4093017578125 37.755592346191406 +sub-10185_ses-V3_task-rest_run-02_bold 0.0010562217194570135 0.006714023868778281 8 44.22434752768708 1.146834767913832 1.006225430408163 0.5068248969469743 582.4496459960938 0.14758363928609416 27 6.108597285067873 2.723590263258396 2.4600624022459026 2.880870718857816 2.8298376686714692 0.00705017 -0.016101423650979996 0.08213650435209274 442 90 90 54 2.1918838951624697 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 81.2125372750815 2.8880553245544434 18.66902732849121 9.563348770141602 283762.0 7.4773759841918945 55.15599937438967 30.164215087890625 0.8678758499591432 96.63751220703125 271.3671875 247.53848266601562 90034.0 125.2828140258789 490.2927841186522 112.9334945678711 35.192569732666016 +sub-10188_ses-V1_task-cuff_run-01_bold 0.0017679909706546275 0.020834265237020314 7 63.43978872312217 1.169962538144797 0.9834609837782806 0.4434552381974956 9708.6474609375 0.507455677769886 56 12.641083521444695 2.4461910837102274 2.3982082380371 2.4954874008382397 2.444877612255343 0.0251009 -0.00023929723829496652 0.012071694247424603 443 90 90 60 2.8949328680350797 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 20 42.87547721194155 16.362173080444336 45.14516830444336 11.455982208251953 330069.0 0.06320542097091675 195.6993316650389 112.80158233642578 3.292321822469063 296.2862243652344 1159.760498046875 1120.3375244140625 87976.0 602.5084991455078 1845.1371459960938 386.9972839355469 24.404911041259766 +sub-10188_ses-V1_task-rest_run-01_bold 0.0027884841628959276 0.01894418371040724 8 54.65148741993198 1.1612115920408166 1.0354381958049885 0.4431759349045055 10093.4765625 0.41089729715519213 257 58.1447963800905 2.446750805421782 2.399570737982959 2.493345734256675 2.447335944025711 0.0140001 0.0007170639582909644 0.013263988308608532 442 90 90 60 2.876421379908155 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 45 43.140388324831584 16.231477737426758 44.90606689453125 11.319005012512207 329965.0 0.05656109005212784 193.06154479980458 111.48358154296875 3.296661063967508 298.5632019042969 1165.0977783203125 1124.176513671875 88121.0 603.4864501953125 1860.6041259765625 390.8224792480469 25.265472412109375 +sub-10188_ses-V3_task-rest_run-01_bold 0.002652927927927928 0.012960157905405407 6 37.36816428209928 1.0450248183972923 0.9897822655756208 0.4396875456292587 9046.65625 0.19988728009270237 90 20.27027027027027 2.378520260448584 2.3638249060700374 2.364016572729088 2.4077193025466266 0.00471947 -0.006647154688835144 0.015910297632217407 444 90 90 60 2.9269025263764608 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 46.544498213312544 15.73094367980957 36.962772369384766 11.006756782531738 329427.0 0.03153153136372566 158.12049255371107 85.87095642089844 3.31111609967292 269.1675109863281 1092.1060791015625 1050.1588134765625 88058.0 583.5424652099609 1733.4150268554683 358.7932434082031 31.13909339904785 +sub-10189_ses-V1_task-rest_run-01_bold 0.0008495454545454546 0.00940687256818182 10 38.81990100359907 1.0901122753758548 0.9942254225740316 0.427351690307119 7136.681640625 0.19989480908628607 62 14.090909090909092 2.380549449630559 2.4205540704824897 2.427104070222216 2.2939902081869707 0.00908421 -0.010568874888122082 0.0237681046128273 440 90 90 60 2.5792738887174895 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 216.12126080370635 17.57220458984375 38.32203674316406 12.26136302947998 335288.0 0.013636363670229912 150.48397140502905 93.3026123046875 4.09398435089598 286.728515625 1099.964111328125 1032.09423828125 83896.0 577.6244354248047 1849.0465698242188 400.1467590332031 34.0583381652832 +sub-10189_ses-V1_task-rest_run-02_bold 0.0013852821670428893 0.013358708916478557 7 43.2751715388688 1.0996087096606322 0.9981421653619913 0.42800141882350395 6794.8388671875 0.27953003571203056 157 35.44018058690745 2.3967327780839303 2.4320415700260174 2.442841569596864 2.3153151946289094 0.0086466 -0.010365253314375877 0.02559959888458252 443 90 90 60 2.6070346098465764 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 230.90631106963042 17.834733963012695 38.237892150878906 12.51015853881836 335507.0 0.03611738234758377 148.77810058593752 93.26466369628906 4.026740739891737 282.4791259765625 1093.669677734375 1026.64892578125 83776.0 577.5090637207031 1828.9024047851562 393.7971496582031 29.336576461791992 +sub-10190_ses-V1_task-rest_run-01_bold 0.0007883820224719101 0.014660779123595508 5 47.90040355549545 1.0773398696396401 0.9875210285360352 0.5864356023157014 211.6887969970703 0.16375739161290737 13 2.9213483146067416 2.8455833226739045 2.482158234701227 2.961795715642146 3.0927960176783413 0.00486598 -0.03681512922048569 0.15310585498809814 445 90 90 54 2.1007015261896456 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 14.614812375079023 10.518147468566895 35.90937805175781 15.085392951965332 271697.0 7.4337077140808105 144.0346130371089 51.50464630126953 1.736133843692845 95.36630249023438 256.2646484375 233.64944458007812 100337.0 118.69078979492188 468.0539489746093 111.22393035888672 28.817468643188477 +sub-10190_ses-V1_task-rest_run-02_bold 0.0007567727272727271 0.010406836499999999 10 43.457087219157124 1.0498062640774493 0.9869706706378135 0.5845864800997741 212.20042419433594 0.14969439769835466 16 3.6363636363636362 2.7529860017172756 2.4686207352391585 2.9442623830055243 2.846074886907145 0.00494063 -0.03779326379299164 0.13684265315532684 440 90 90 54 2.1416805938228625 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 14.824353705339973 11.463211059570312 35.09109115600586 15.168181419372559 272409.0 6.813636302947998 138.3400024414062 49.43529510498047 1.6172860245236986 95.43241119384766 259.74066162109375 238.70681762695312 99851.0 115.48067855834961 471.6761169433594 111.4571533203125 32.0245361328125 +sub-10191_ses-V1_task-cuff_run-01_bold 0.0008551020408163265 0.0061873770068027216 9 43.24277004799997 1.0856690077727271 1.0135443441818184 0.555175029123833 499.92950439453125 0.13910984649411637 0 0.0 2.755338874326515 2.491629067658223 2.907749884456401 2.86663767086492 0.0171344 -0.014401302672922611 0.16532063484191895 441 90 90 54 2.263072553293772 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 20.949442529588364 6.512020111083984 28.534610748291016 10.240363121032715 272571.0 5.643990993499756 118.55555725097656 47.018863677978516 2.2363864700727287 98.27534484863281 267.6704406738281 248.23809814453125 99306.0 126.84070587158203 469.267578125 109.690185546875 33.639427185058594 +sub-10191_ses-V1_task-cuff_run-02_bold 0.0010960948081264108 0.008540449548532732 7 44.108623703167396 1.0807301736877832 1.00861049760181 0.5559245457553296 489.1280822753906 0.15732010041429847 1 0.22573363431151242 2.7649305410459704 2.496574900795027 2.9184748840302275 2.8797418383126563 0.0188706 -0.012687803246080875 0.16353081166744232 443 90 90 54 2.26118694914326 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 20.18594850496582 6.579675197601318 28.334918975830078 10.266366004943848 272581.0 5.625282287597656 117.13544464111328 46.031089782714844 2.249595945839764 97.66935729980469 266.1776428222656 246.66592407226562 99260.0 126.61388549804688 466.2034103393554 109.08637237548828 31.073150634765625 +sub-10191_ses-V1_task-rest_run-01_bold 0.00038398190045248865 0.005955042352941176 8 42.25353437367349 1.0651753724943307 0.9947575266213162 0.5530952995232569 520.15576171875 0.11729627101188718 5 1.1312217194570136 2.7709902632045584 2.503254067196287 2.9246248837858486 2.8850918386315407 0.0108596 -0.013121174648404121 0.16001541912555695 442 90 90 54 2.253801182981327 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.901155831691405 6.279256820678711 27.951444625854492 10.081448554992676 272535.0 5.631221771240234 115.57987060546873 45.75593566894531 2.129311633218384 99.8106460571289 269.47613525390625 250.0226287841797 99365.0 126.52082214355468 473.2050109863275 110.93319702148438 33.76883316040039 +sub-10191_ses-V1_task-rest_run-02_bold 0.0013791176470588236 0.007888352285067873 8 44.70769023260769 1.1021641670294786 1.0250743322222224 0.5567503441492613 481.139892578125 0.1598306737370848 45 10.180995475113122 2.7537319299475804 2.489254067752597 2.905254051222243 2.8666876708679 0.0211214 -0.012266785837709904 0.16286365687847137 442 90 90 54 2.257974998835051 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 19.63213053411783 6.624749660491943 28.35894012451172 10.307692527770996 272288.0 5.599547863006592 116.98031959533688 45.88898468017578 2.2435510841886135 96.74484252929688 264.5478515625 244.95249938964844 99483.0 125.38982391357422 463.8841888427734 108.48271942138672 31.3563289642334 +sub-10192_ses-V1_task-cuff_run-01_bold 0.0005138009049773756 0.00978122273755656 8 40.895878495668946 1.016874333492063 0.9948352390249431 0.5681886864268809 307.39794921875 0.12216823241556436 0 0.0 2.6778208201864593 2.4350582365728126 2.7820415561182674 2.8163626678682965 0.00699687 -0.009081228636205196 0.13664019107818604 442 90 90 54 2.314849455238968 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 20.370657623783774 6.862905979156494 30.211788177490234 12.033937454223633 279044.0 7.081448078155518 124.64027404785156 46.57723617553711 1.4186704370019205 86.47061920166016 239.76168823242188 225.26470947265625 93515.0 106.47217712402343 420.8819213867189 97.3123779296875 30.666404724121094 +sub-10192_ses-V1_task-cuff_run-02_bold 0.0026025056433408573 0.011361536275395033 7 41.774435966719466 1.0171882731674216 1.0061852717647057 0.5696081979420002 302.35626220703125 0.13634963134995265 3 0.6772009029345373 2.6979694311650047 2.452129069227812 2.8052415551963823 2.83653766907082 0.00572142 -0.009994164109230042 0.13986022770404816 443 90 90 54 2.298362721183098 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 5 19.841193932847787 6.900960922241211 30.294921875 12.036117553710938 278549.0 7.0361175537109375 124.8139999389648 46.401275634765625 1.4056379385747144 85.86711883544922 237.1597442626953 222.95034790039062 94035.0 102.97833023071288 417.3022644042969 97.00347137451172 28.952980041503906 +sub-10192_ses-V1_task-rest_run-01_bold 0.0005169909502262443 0.007085899004524887 8 40.43921514326529 1.0322117885714286 1.0062226503854883 0.5631264081253143 344.25860595703125 0.11031592799723185 1 0.22624434389140272 2.6732235979478176 2.4264915702465544 2.782829056086975 2.8103501675099234 0.00797304 -0.006454805843532085 0.1355738639831543 442 90 90 54 2.3175073332993525 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.633354688585648 6.859551429748535 29.50360870361328 11.409502983093262 279693.0 6.4773759841918945 124.2054321289057 46.484840393066406 1.2742140709880525 87.17835235595703 240.70947265625 226.29638671875 93038.0 106.17387084960937 422.6325851440429 97.64593505859375 32.72072982788086 +sub-10192_ses-V1_task-rest_run-02_bold 0.0009142889390519188 0.013654925507900678 7 40.08419042031669 0.98288105662896 0.9765720586877829 0.569998076189796 299.18560791015625 0.1176169772156836 5 1.1286681715575622 2.692511097974336 2.443962402885659 2.7992748887668095 2.83429600227054 0.0035948 -0.009257272817194462 0.1408679485321045 443 90 90 54 2.3163201598872574 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.72639678802755 7.0482177734375 30.194101333618164 12.060948371887207 279127.0 6.950338840484619 124.02754364013688 46.12105941772461 1.379366042916442 85.1910400390625 236.53265380859375 222.09481811523438 93497.0 105.65327758789063 415.8429077148437 95.88209533691406 27.641366958618164 +sub-10192_ses-V3_task-cuff_run-01_bold 0.0004064172335600907 0.0055355131746031745 9 34.3249704318182 1.0165036286590912 1.0015020596818176 0.561832687623808 317.86541748046875 0.11866114683415761 0 0.0 2.6295222053380534 2.437066569826342 2.8059582218345716 2.6455418243532476 0.0104556 -0.016181152313947678 0.12589608132839203 441 90 90 54 2.2515984523438104 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 18.46838922692419 6.821315765380859 31.496177673339844 12.938776016235352 280637.0 8.03628158569336 128.53060913085938 46.8625602722168 1.3856446927642816 95.18407440185547 265.2035827636719 248.30499267578125 92212.0 112.49002609252929 471.44876251220705 110.2788314819336 38.01626968383789 +sub-10192_ses-V3_task-cuff_run-02_bold 0.0008006320541760722 0.006605444424379233 7 35.04746859135745 1.0166735438914027 1.003387181651583 0.5621574251117301 321.82513427734375 0.12499393793396876 0 0.0 2.641901372102654 2.4487290693629156 2.813620721530091 2.6633543254149554 0.021989 -0.015001201070845127 0.12718503177165985 443 90 90 54 2.263990037055193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 17.789699614656758 6.663343906402588 31.243465423583984 12.738149642944336 280737.0 7.9819416999816895 127.94221649169927 46.339176177978516 1.3189387291198091 94.2590560913086 262.6091003417969 245.9018096923828 92108.0 111.35294036865236 464.62666015624995 108.61376190185547 35.38313293457031 +sub-10192_ses-V3_task-rest_run-01_bold 0.0015724886877828052 0.007340091923076924 8 33.44779130077098 1.0237115819954654 1.0212284835827663 0.5606441813862862 334.88226318359375 0.10764671387052649 0 0.0 2.668201371624106 2.469129068552293 2.8550123865520005 2.6804626597680246 0.0158731 -0.016390757635235786 0.12522095441818237 442 90 90 54 2.257830879883535 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 17.617573481244346 6.64823055267334 31.461711883544922 12.7647066116333 280326.0 7.997737884521484 128.57749557495117 46.83949661254883 1.2854639349174564 97.06683349609375 267.76220703125 250.9389190673828 92455.0 112.57217559814453 474.2755859375002 111.1409912109375 34.94959259033203 +sub-10192_ses-V3_task-rest_run-02_bold 0.00034443438914027145 0.006954762466063348 8 34.69932860206353 1.0106598702040814 0.9970645516780046 0.5623994008663395 318.2528991699219 0.11694553747937624 3 0.6787330316742082 2.6204999838165173 2.424629070320564 2.780995722826492 2.6558751583024955 0.00977068 -0.01277481485158205 0.12766322493553162 442 90 90 54 2.2750333145153987 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 17.31077722018421 6.574436664581299 30.96267318725586 12.65158462524414 281487.0 7.970588684082031 126.86131973266605 45.953250885009766 1.3004434682919124 92.50835418701172 259.80621337890625 243.10633850097656 91528.0 111.71063728332521 459.6010467529297 106.85778045654297 36.139625549316406 +sub-10194_ses-V1_task-cuff_run-01_bold 0.00039932279909706545 0.005555666139954853 7 36.6420267331674 1.0398711564253393 0.9885296241628961 0.5187826032062399 731.8412475585938 0.208248057954611 0 0.0 2.724151371607466 2.4960832341478967 2.929270716934573 2.7471001637399297 0.0158149 -0.029897449538111687 0.11253807693719864 443 90 90 54 2.4268906089954188 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 76.1065853991263 3.5575759410858154 20.496416091918945 9.018058776855469 279098.0 6.478555679321289 69.74560279846176 34.8785285949707 1.2346388274499018 94.50836181640625 280.5367126464844 262.3724670410156 93981.0 135.17832946777344 484.3250732421875 108.10997009277344 36.30024719238281 +sub-10194_ses-V1_task-cuff_run-02_bold 0.0006233483146067415 0.005221209775280899 5 36.297709860180156 1.0358646483108116 0.9845331831981983 0.5185346022155514 713.8851318359375 0.1936174658665636 0 0.0 2.7184666490777283 2.5003499006450216 2.924058217141699 2.730991829446465 0.0173807 -0.02909705601632595 0.11127059161663055 445 90 90 54 2.4265748269634986 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 69.59370150081268 3.791463851928711 20.27676010131836 9.087640762329102 279343.0 6.316854000091553 68.85820388793937 33.95450973510742 1.2660927349217266 93.89039611816406 279.21917724609375 261.3056335449219 93875.0 134.82427062988282 481.7692230224609 107.68439483642578 36.86992263793945 +sub-10194_ses-V1_task-rest_run-01_bold 0.00034060948081264113 0.0049871419864559825 7 35.477987777126714 1.040662169298643 0.9865066446832578 0.5181272166780163 738.231201171875 0.16728907196101983 38 8.577878103837472 2.7280319268090367 2.5072124003723304 2.9358165500077984 2.7410668300469814 0.0168249 -0.028065722435712814 0.10602107644081116 443 90 90 54 2.4156205257939813 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 35.022527273289086 3.5374956130981445 20.154661178588867 9.029345512390137 279277.0 6.52821683883667 69.90789947509768 31.405088424682617 1.2099354166735221 96.05120849609375 282.990478515625 264.99774169921875 93776.0 135.93905639648438 489.4085922241211 109.70114135742188 38.6644172668457 +sub-10194_ses-V1_task-rest_run-02_bold 0.0008948198198198198 0.005804238648648649 6 35.59859762787809 1.0319822790067725 0.990441070586908 0.520139418161027 710.5942993164062 0.17750484257935473 41 9.234234234234235 2.7346110937021457 2.508574900318189 2.9394582165297582 2.75580016425849 0.00900207 -0.028320690616965294 0.10856446623802185 444 90 90 54 2.4260797451516654 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.380826405692915 3.820038318634033 20.06134796142578 9.060811042785645 278936.0 6.213963985443115 69.0726375579834 31.286283493041992 1.2939561738017709 93.13512420654297 277.56842041015625 259.6914367675781 94204.0 134.47849197387694 480.38435058593734 107.04102325439453 36.48439407348633 +sub-10195_ses-V1_task-rest_run-01_bold 0.0009466591422121897 0.010648710812641082 7 63.94424750904982 1.1494249475339362 0.9883802132126699 0.4491349400650303 4172.40869140625 0.4453779374355024 311 70.20316027088036 2.403977102780092 2.366391572634714 2.4011832379188838 2.444356497786679 0.0172829 0.010924889706075191 0.009624037891626358 443 90 90 60 2.4523587481645173 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 36.46576335542152 22.031536102294922 43.9060173034668 15.629796981811523 328460.0 0.018058691173791885 190.81986389160147 85.50949096679688 2.849936464431453 310.79595947265625 1067.835693359375 1006.9063720703125 90314.0 496.0207672119142 1847.9390869140616 410.5846252441406 28.5367431640625 +sub-10196_ses-V1_task-rest_run-01_bold 0.0022255227272727275 0.01030663065909091 10 37.61777173952162 1.0998815778132118 0.9959586805466971 0.4557179713130821 9700.693359375 0.22198366263793226 87 19.772727272727273 2.335675821844178 2.27076657643451 2.349366573311227 2.386894315786797 0.00626162 0.021926945075392723 0.008734147995710373 440 90 90 60 3.081272156373021 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 47.36487796107545 15.93460464477539 40.944183349609375 11.17727279663086 321703.0 0.004545454401522875 161.5836364746092 112.03009796142578 2.812736333183178 270.6154479980469 1134.57421875 1090.102294921875 95661.0 620.8045043945312 1774.4818115234375 353.7813415527344 35.086875915527344 +sub-10196_ses-V1_task-rest_run-02_bold 0.0012142437923250565 0.011295366907449209 7 36.78646642158373 1.0846195656108593 1.0162483936877822 0.4558057500555501 10446.09765625 0.19976463059464458 74 16.704288939051917 2.359084149225659 2.292237408914669 2.372845739044915 2.4121692997173945 0.00702613 0.021322190761566162 0.009389922022819519 443 90 90 60 3.060554398040641 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 46.917288045682064 15.582385063171387 41.08525848388672 10.941309928894043 321675.0 0.011286681517958641 162.80136108398438 111.16645050048828 2.8944699066995963 272.92767333984375 1135.1552734375 1091.012451171875 95816.0 617.4068908691406 1778.5525207519531 356.47357177734375 34.09822082519531 +sub-10196_ses-V3_task-rest_run-01_bold 0.0010135746606334843 0.009786942420814479 8 32.65999601569161 1.0154934211791382 0.9588993117006809 0.4593362100077933 9290.0908203125 0.1942519994366729 71 16.063348416289593 2.400531368625382 2.358412406285111 2.4250957369686867 2.4180859626223485 0.0025064 0.018866989761590958 0.01351557020097971 442 90 90 60 2.900488070488163 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 45.101637896865 16.15097427368164 42.72792434692383 11.375566482543945 319152.0 0.029411766678094864 168.82682189941409 113.59903717041016 2.964642019284553 292.2637939453125 1133.429931640625 1089.7398681640625 97736.0 594.7076110839844 1815.7597045898438 375.70721435546875 34.20899200439453 +sub-10196_ses-V3_task-rest_run-02_bold 0.0006890249433106577 0.006901535782312924 9 32.29363215197731 1.0629864233409088 0.9928241846136366 0.4588000696447483 9645.62109375 0.1861195187974793 67 15.192743764172336 2.3669688779990348 2.324279074308114 2.399008238005311 2.3776193216836794 0.00448085 0.018225209787487984 0.013606216758489609 441 90 90 60 2.8999227742305997 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 44.48973813705085 16.043033599853516 42.87126159667969 11.129251480102539 319390.0 0.0022675737272948027 172.18163070678708 114.5352554321289 3.035563337161906 291.1213073730469 1134.7823486328125 1090.5216064453125 97471.0 596.9036254882812 1819.2018432617188 376.0500183105469 38.76591491699219 +sub-10197_ses-V1_task-rest_run-01_bold 0.014213972911963881 0.018842283724604964 7 52.77568572033934 1.1135051463348422 1.0752360424434384 0.5425095281508259 545.4495239257812 0.34411485590299595 211 47.62979683972912 2.6947401706984238 2.365629072665013 2.765141556789813 2.953449882640446 0.0321716 -0.03210695460438728 0.15853041410446167 443 90 90 54 2.3500077826059336 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 5 21.618337859806118 3.8387014865875244 24.86864471435547 9.60270881652832 283496.0 6.855530738830566 96.19412994384766 38.99715805053711 1.088267160679921 85.76334381103516 259.96826171875 238.6772003173828 91262.0 132.36433715820314 457.7237060546874 101.56387329101562 24.145843505859375 +sub-10197_ses-V1_task-rest_run-02_bold 0.0006480586907449209 0.013986197381489844 7 44.28772606131225 1.0252177535746605 0.9841139939140274 0.5421587570956943 540.5597534179688 0.26176859983017087 167 37.69751693002257 2.6846262822114255 2.3591540729223066 2.755241557183204 2.9394832165287648 0.00479121 -0.03099411353468895 0.16117703914642334 443 90 90 54 2.343413771328811 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 3 21.819874902710893 3.9156758785247803 24.85710334777832 9.604966163635254 284015.0 6.740406513214111 96.04356994628904 39.08827590942383 1.1771193849730759 84.66897583007812 257.9222106933594 236.89842224121094 90949.0 130.97381896972658 454.7124145507811 101.09060668945312 28.046831130981445 +sub-10198_ses-V1_task-rest_run-01_bold 0.00041560090702947845 0.005557366802721089 9 40.5576001080227 1.0196853224545455 0.9922212168181815 0.5557781779920881 319.4102478027344 0.24761228023320425 172 39.002267573696145 2.8558943309613998 2.5341540659684316 3.02532487978439 3.0082040471313776 0.00429513 0.013961346819996834 0.08889991790056229 441 90 90 54 2.269228953480409 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 35.7285202756688 8.818289756774902 26.985315322875977 12.986394882202148 273318.0 6.45351505279541 95.75770988464353 39.587894439697266 0.7997733507643678 98.64177703857422 261.413330078125 246.267578125 98422.0 106.42414779663086 463.97040710449215 108.52423095703125 34.454833984375 +sub-10198_ses-V1_task-rest_run-02_bold 0.00034287330316742085 0.005126090678733032 8 39.536851714127 1.0188324768480725 0.9973488430385485 0.5565521934608495 315.406494140625 0.2342995810960547 175 39.59276018099548 2.8428707203678005 2.5225957330943847 3.0076582138197336 2.9983582141892824 0.00492758 0.014851889573037624 0.08962646126747131 442 90 90 54 2.2695185495131893 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 35.868434233055424 8.848653793334961 27.11212158203125 13.015837669372559 273494.0 6.44343900680542 96.03552665710438 39.7271842956543 0.8115500910358513 98.26097106933594 260.34588623046875 245.06109619140625 98339.0 106.702490234375 463.50477600097634 107.9787826538086 35.348148345947266 +sub-10200_ses-V1_task-cuff_run-01_bold 0.00058498861047836 0.005960457744874715 11 36.53114390707761 1.1331878966210047 0.9840001489041095 0.4479784644939405 9567.1943359375 0.20745654835885544 0 0.0 2.3898549894044154 2.392733238254657 2.405270737756461 2.371560992202128 0.00491595 0.004721391014754772 0.024714156985282898 439 90 90 60 2.4080165487626846 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 98.41447796266746 16.813520431518555 41.72327423095703 11.592255592346191 318944.0 0.0 182.02267837524377 102.82958984375 6.01512535150944 350.4109191894531 1218.5264892578125 1152.8907470703125 97049.0 582.8902343750001 2072.7787597656243 478.76947021484375 41.095115661621094 +sub-10200_ses-V1_task-cuff_run-02_bold 0.0009639682539682539 0.00746374566893424 9 36.84938274274998 1.1417146679772734 0.9961181689999989 0.4491469220505957 9681.33203125 0.21174980655682593 0 0.0 2.397746653889057 2.3959540714600056 2.416320737317374 2.3809651528897904 0.00554636 0.004897332284599543 0.02558325044810772 441 90 90 60 2.417901479851346 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 98.22494819356996 16.78265380859375 42.27800750732422 11.571428298950195 318975.0 0.004535147454589605 184.77868194580057 103.271728515625 5.976635626571989 351.34649658203125 1216.95361328125 1152.4512939453125 96999.0 583.6344848632813 2062.4042480468747 476.6304016113281 38.79206085205078 +sub-10200_ses-V1_task-rest_run-01_bold 0.000581787330316742 0.0060757777601809955 8 36.00553235773242 1.1364551917233545 0.9865745653061225 0.44716245918233205 9721.7998046875 0.2055843548809286 36 8.144796380090497 2.4070063749337014 2.409199904266997 2.4267790702351304 2.385040150298977 0.00614052 0.004835177678614855 0.024508418515324593 442 90 90 60 2.387528383355377 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 101.36732631099461 16.794998168945312 41.68742752075195 11.617647171020508 318847.0 0.004524887073785067 180.5282852172853 102.84062194824219 6.116582724061786 356.73358154296875 1228.8077392578125 1162.3167724609375 97194.0 581.6918701171875 2094.4965087890623 486.8259582519531 40.556156158447266 +sub-10200_ses-V1_task-rest_run-02_bold 0.0007806108597285068 0.006485445950226244 8 35.86711818668934 1.140093278934241 1.0152194959410434 0.4492547064296774 9665.0234375 0.2080318397179048 61 13.800904977375566 2.386291101957682 2.3832124052996475 2.410645737542878 2.3650151630305207 0.0071099 0.005437346175312996 0.02568240649998188 442 90 90 60 2.4257751938425693 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 93.6913446268115 16.754749298095703 42.182952880859375 11.520362854003906 318988.0 0.0022624435368925333 184.93474044799717 102.6136245727539 5.983001027199071 346.3452453613281 1211.678955078125 1146.35302734375 97037.0 585.6959716796875 2052.0462890625 472.56939697265625 40.29039764404297 +sub-10200_ses-V3_task-cuff_run-01_bold 0.0007289749430523918 0.005882150546697038 11 37.55036105837899 1.1235237712100448 1.0017416789041098 0.4451244250705695 9673.8505859375 0.21913833457313758 0 0.0 2.3209716670121714 2.3250665742768217 2.307579074971713 2.330269351787979 0.00528593 0.005834098439663649 0.020802224054932594 439 90 90 60 2.5194944361517 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 100.04121702970882 16.234325408935547 39.88825988769531 11.24145793914795 322135.0 0.00455580884590745 174.63097991943332 97.23242950439453 4.448022673855353 328.71728515625 1175.2491455078125 1113.5262451171875 94490.0 570.3558135986327 1982.302313232422 441.9618225097656 40.66307067871094 +sub-10200_ses-V3_task-cuff_run-02_bold 0.002702454545454545 0.008294889863636362 10 38.52780058391798 1.1371695659908878 1.0045381614806381 0.446249875857606 9179.2353515625 0.22680619563886484 0 0.0 2.34170360557055 2.340004073683259 2.329358240772953 2.3557485022554383 0.00656985 0.0055753448978066444 0.02195633575320244 440 90 90 60 2.5231990077733153 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 100.61255085317526 16.618623733520508 40.51641845703125 11.538636207580566 322081.0 0.011363635770976543 178.71136474609375 98.02055358886719 4.501800454054878 328.8244323730469 1175.5087890625 1114.0726318359375 94637.0 572.8763671875 1985.1445068359374 441.52947998046875 36.11109924316406 +sub-10200_ses-V3_task-rest_run-01_bold 0.0016843310657596372 0.006213355850340136 9 38.538839565522736 1.156664132568182 1.016299668 0.44427718101087976 9376.640625 0.21653361570323498 77 17.46031746031746 2.327209166137639 2.3297749074230625 2.3184290745405725 2.3334235164492823 0.00590979 0.0056947823613882065 0.019813543185591698 441 90 90 60 2.524925000801685 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 97.62591877586901 16.562448501586914 39.51893997192383 11.515872955322266 322620.0 0.006802720949053764 171.61916275024413 95.93843078613281 4.314473930736147 329.431884765625 1179.6903076171875 1119.8651123046875 94352.0 568.7452423095704 1990.7863159179685 443.5217590332031 40.470184326171875 +sub-10201_ses-V1_task-cuff_run-01_bold 0.0009560089686098655 0.025958583408071747 4 56.717284676269664 1.1826895893707876 0.9885153071910112 0.4442455022495706 387295.28125 0.5079434631095618 15 3.3632286995515694 2.657635202935273 2.656329014084507 2.8404281690140847 2.4761484257072284 0.00534443 -0.013953055255115032 0.02975010685622692 446 96 96 54 4.909403152335358 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 164.32824357189 43.506622314453125 539.5143432617188 29.54652214050293 339868.0 0.1957018151879311 2269.9512329101553 1284.596435546875 2.2994998037723233 2960.302001953125 18798.791015625 18696.689453125 90137.0 12665.22265625 24864.35390625 3808.321533203125 31.63446807861328 +sub-10201_ses-V1_task-cuff_run-02_bold 0.0005913452914798206 0.025030011434977576 4 55.576775000112306 1.1805041929213491 1.0090451226516854 0.4453223277556385 338174.9375 0.5060352123959401 19 4.260089686098655 2.6503311480391285 2.64352 2.8418208450704228 2.465652599046962 0.00581911 -0.01373226847499609 0.03033619560301304 446 96 96 54 4.938580960303437 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 168.25946272890295 45.962196350097656 538.1324462890625 31.218822479248047 339506.0 0.20321275666356087 2266.4796142578125 1247.9849853515625 2.3521371341385304 2884.64599609375 18648.22265625 18521.5703125 90402.0 12660.384375 24714.788867187497 3750.3623046875 32.28562545776367 +sub-10201_ses-V1_task-rest_run-01_bold 0.0006537668161434979 0.027020826008968612 4 58.56873062683144 1.1617157766741577 0.9795648226516855 0.4427619651107717 363028.21875 0.6194426365171639 382 85.65022421524664 2.6490535082881332 2.6546433802816902 2.8320270422535208 2.4604901023291887 0.0084814 -0.01419908832758665 0.03005729801952839 446 96 96 54 4.8679346196676745 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 168.8887400638757 44.827396392822266 537.1022338867188 30.561674118041992 340590.0 0.3056394338607788 2247.9188354492185 1256.6209716796875 2.2817971655369877 2996.49267578125 18847.853515625 18700.642578125 89475.0 12708.54296875 25072.6365234375 3841.575439453125 30.178388595581055 +sub-10201_ses-V1_task-rest_run-02_bold 0.0007681165919282511 0.023646035201793723 4 54.92000165784269 1.1925177932808986 1.008812575595506 0.4461560654967881 303809.0625 0.498689547577013 338 75.7847533632287 2.6370475558526323 2.648121690140845 2.8128225352112675 2.450198442205784 0.00747216 -0.013920844532549381 0.030067697167396545 446 96 96 54 4.9704735296345675 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 159.1091849795003 48.515438079833984 544.7322387695312 33.11821365356445 339544.0 0.3605928629636765 2291.491296386718 1268.9189453125 2.391438470687148 2864.17626953125 18622.142578125 18489.3828125 90387.0 12703.234082031251 24654.553125 3719.82275390625 32.3997917175293 +sub-10202_ses-V1_task-cuff_run-01_bold 0.0008003184713375795 0.012770238789808914 5 44.95895674288462 1.0095531835897433 0.9831963528846157 0.5575841004021652 394.24114990234375 0.2385631355902395 0 0.0 2.6250722057239106 2.3578082396424516 2.865554052799779 2.6518543247295017 0.00934582 -0.035044051706790924 0.1531539410352707 157 90 90 54 2.914087846027545 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.754690737707506 5.118283271789551 24.983762741088867 10.643312454223633 285596.0 7.012739181518555 90.58599090576172 39.496097564697266 0.4745417702045751 71.8589859008789 229.6721954345703 222.68789672851562 87798.0 116.19363403320312 365.19744873046875 76.41726684570312 30.415651321411133 +sub-10202_ses-V1_task-cuff_run-02_bold 0.0004505785123966942 0.010901541460055097 5 44.841000267071834 1.0373379378176801 0.9970890456629825 0.5581185274740089 386.32867431640625 0.22004464951958613 0 0.0 2.584369427690937 2.334191573914227 2.8236123877997246 2.5953043213588587 0.0156507 -0.03466974198818207 0.15540124475955963 363 90 90 54 2.919882340758428 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.379947702140356 5.052283763885498 24.879270553588867 10.589531898498535 285727.0 7.02479362487793 90.83112869262699 39.569664001464844 0.47663648742305664 71.35688781738281 227.7512969970703 221.01377868652344 87639.0 114.87328338623047 361.74407958984375 75.69226837158203 31.628612518310547 +sub-10202_ses-V1_task-rest_run-01_bold 0.0006643595505617978 0.009902522651685394 5 44.10862522295045 1.0509179981081085 1.0061755956756762 0.5571679043779109 395.0882568359375 0.19715971773072213 58 13.03370786516854 2.593972205336039 2.3383415737493207 2.8407540537852425 2.6028209884735536 0.0142181 -0.035449475049972534 0.15414047241210938 445 90 90 54 2.9110650609125255 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.53384706432051 5.037515163421631 24.94495964050293 10.597752571105957 285510.0 7.0539326667785645 90.7607856750488 39.84681701660156 0.4802888649037458 72.12110137939453 229.99078369140625 223.22471618652344 87861.0 115.76853942871094 365.7707824707031 76.68102264404297 32.052799224853516 +sub-10203_ses-V1_task-cuff_run-01_bold 0.0003823981900452489 0.007405381968325792 8 45.07779369240362 1.0698066183900226 0.9887250612244894 0.5684411779237039 421.2940673828125 0.128976167550619 0 0.0 2.7433374858549135 2.478895734830867 2.8862790519762416 2.8648376707576317 0.0116277 -0.014898281544446945 0.1476576179265976 442 90 90 54 2.2612438973513296 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 24.04238073020617 6.926637172698975 27.684268951416016 10.617647171020508 264306.0 5.631221771240234 111.36595726013184 45.450950622558594 1.9366243765697693 92.18299102783203 252.81056213378906 234.2986602783203 106155.0 121.43371505737305 445.5056762695311 103.61445617675781 32.18190383911133 +sub-10203_ses-V1_task-cuff_run-02_bold 0.000444527027027027 0.0062901777702702695 6 45.3634649927765 1.0773296921444702 0.9929409862979683 0.5690915055272949 414.25909423828125 0.13008974330433803 0 0.0 2.7306013747378692 2.473137401726349 2.8692915526512643 2.849375169835995 0.00999881 -0.014587142504751682 0.1494532972574234 444 90 90 54 2.255574042771861 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 25.04724477650638 6.9705681800842285 27.772592544555664 10.640766143798828 264324.0 5.632883071899414 111.79527435302703 45.73762512207031 1.895604306733313 91.56070709228516 250.2201385498047 232.16893005371094 106233.0 119.49955139160156 441.59956054687495 102.93070983886719 32.6024169921875 +sub-10203_ses-V1_task-rest_run-01_bold 0.0004093453724604966 0.005712505169300226 7 45.14622456131226 1.0989178150678736 0.999119077466063 0.5676153226879224 424.4049377441406 0.11232788392950563 2 0.45146726862302483 2.745506930108016 2.4853665679070724 2.889491551848588 2.861662670568387 0.0151163 -0.014777028933167458 0.14859601855278015 443 90 90 54 2.252875774000709 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.320137853377172 6.947815418243408 27.847558975219727 10.643341064453125 264483.0 5.652370452880859 112.10384368896484 46.12030792236328 1.9233090120178051 93.18807983398438 254.73806762695312 236.0395050048828 106198.0 121.45598602294922 449.48286285400377 104.77204132080078 33.71291732788086 +sub-10203_ses-V1_task-rest_run-02_bold 0.000398710407239819 0.007295049343891403 8 45.26362224931977 1.0736256316553279 0.9891897189115643 0.5699935856836617 410.46875 0.11277998226453742 4 0.9049773755656109 2.7381610967762833 2.483566567978598 2.878020718971065 2.852896003379186 0.00962409 -0.01403585635125637 0.15054604411125183 442 90 90 54 2.256215451134089 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 24.68121949001026 6.899802207946777 27.79827880859375 10.558823585510254 264251.0 5.606335163116455 112.67534255981445 45.82723617553711 1.9373070901504903 91.04586791992188 248.20423889160156 230.3642578125 106328.0 118.67364540100098 438.0466323852538 102.1015853881836 31.68743324279785 +sub-10205_ses-V1_task-rest_run-02_bold 0.004161715575620767 0.01957883196388262 7 57.921664829321216 1.1093447585972844 1.0117986680316728 0.5539125716397181 421.61773681640625 0.4113187266303328 216 48.75846501128668 2.6895985980724078 2.3606915728612115 2.8743415524505953 2.8337626689054174 0.0107974 -0.02285129390656948 0.1707967221736908 443 90 90 54 2.5356991141984753 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 5 30.5354825669479 5.137234210968018 28.728212356567383 10.697517395019531 285496.0 6.943566799163818 113.65970993041992 49.307647705078125 2.44985969377068 85.57928466796875 246.47889709472656 235.21444702148438 88558.0 119.88646087646485 408.2622100830078 92.76065826416016 24.5123291015625 +sub-10205_ses-V3_task-rest_run-01_bold 0.0017226741573033706 0.013720319595505617 5 55.89835271738736 1.131122026193694 1.0177254490765786 0.5617602142653098 371.3194274902344 0.44172813759591456 292 65.61797752808988 2.6291222082759558 2.307770741630763 2.8458123869175758 2.7337834962795275 0.0189531 -0.01302216574549675 0.1545639932155609 445 90 90 54 2.6568212417040606 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.10357688586252 5.360689640045166 29.758636474609375 11.714607238769531 285437.0 7.930336952209473 117.94562225341807 48.47816467285156 1.0807995689144807 83.92194366455078 250.56007385253906 241.1887664794922 88559.0 117.64337005615235 410.3440368652344 90.78044128417969 28.38385581970215 +sub-10205_ses-V3_task-rest_run-02_bold 0.0010462247191011236 0.01572339417977528 5 57.34639453022528 1.1056930935810816 0.9967052400900891 0.5626085220317633 365.1053771972656 0.5026441087401337 332 74.6067415730337 2.6294305414207066 2.3171999079227485 2.842633220377238 2.728458495962133 0.0128109 -0.012280362658202648 0.15558364987373352 445 90 90 54 2.6616433600033362 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.470774334085164 5.553927421569824 29.784677505493164 11.802247047424316 285283.0 7.773033618927002 117.5725868225096 48.34449768066406 1.0596554004194063 83.09234619140625 248.9469757080078 239.4359588623047 88832.0 117.60696792602539 407.72787933349605 89.95743560791016 27.491622924804688 +sub-10206_ses-V1_task-cuff_run-01_bold 0.0017373258426966291 0.013371548786516854 5 39.13136794128379 0.9817002880630631 0.9552947132207211 0.5403599967586922 626.9680786132812 0.24877739030088686 9 2.0224719101123596 2.8779749836529085 2.596708230149419 3.077312377718593 2.9599043430907135 0.0271465 -0.027064260095357895 0.1172356829047203 445 90 90 54 2.6473155770417343 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 37.04736518145815 4.747659683227539 22.884126663208008 9.786517143249512 279431.0 6.4157304763793945 83.46292114257812 34.33819580078125 0.71531269754716 89.37759399414062 272.700927734375 260.12811279296875 93982.0 134.27865600585938 453.25315093994135 98.26056671142578 28.24384307861328 +sub-10206_ses-V1_task-cuff_run-02_bold 0.004994211711711711 0.014014373513513515 6 42.54878578882619 0.9775757768848752 0.9665719522573369 0.5426885231358541 574.4110717773438 0.3726853971222503 18 4.054054054054054 2.912652759726545 2.645333228217235 3.1425707084587926 2.9500543425036074 0.0392362 -0.027532903477549553 0.11372528970241547 444 90 90 54 2.6317619921297886 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 26 33.012176515895185 5.326016426086426 23.2032413482666 10.195945739746094 278294.0 6.295045375823975 84.37612915039062 34.11942672729492 0.6920803875443742 88.92274475097656 270.25555419921875 257.9234313964844 94873.0 131.00315551757814 450.67974243164053 98.00357055664062 25.07638931274414 +sub-10206_ses-V1_task-rest_run-01_bold 0.002619301801801802 0.010458546103603604 6 37.593746004243805 1.0158099745146727 0.992805605462755 0.5390853182768697 635.0723876953125 0.24515593837358815 110 24.774774774774773 2.8919138713165355 2.623783229073555 3.112329042993822 2.9396293418822292 0.0308704 -0.02907392755150795 0.11047855764627457 444 90 90 54 2.6334973627724825 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 38.221074750148816 4.765030384063721 22.902565002441406 9.8626127243042 278234.0 6.4707207679748535 83.92421150207514 34.32805252075195 0.7512744217440579 91.97979736328125 275.8780517578125 263.7939147949219 94806.0 132.9166717529297 458.09066009521484 100.16813659667969 29.165180206298828 +sub-10206_ses-V1_task-rest_run-02_bold 0.0023426741573033707 0.011103999550561799 5 38.47461219729731 1.0078295759459464 0.9863371431756754 0.5399371502380109 650.2682495117188 0.2648075543951219 104 23.370786516853933 2.862045816967974 2.5775332309113645 3.068366544740735 2.9402376752518222 0.0125566 -0.024333538487553596 0.12159392237663269 445 90 90 54 2.6406482174135655 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 37.44065980235287 4.371178150177002 22.555831909179688 9.435955047607422 280114.0 6.247190952301025 82.56270065307596 34.34271240234375 0.714974213645212 86.83052825927734 267.40234375 254.3483123779297 93584.0 131.51370773315432 445.17529296875 96.31989288330078 30.572526931762695 +sub-10207_ses-V1_task-cuff_run-01_bold 0.0005018820861678005 0.005998515850340136 9 41.41913205040904 1.042704309886363 0.9901952898863629 0.5096869977682329 737.6668701171875 0.15503778037586877 0 0.0 2.7657833233072586 2.5174457332990277 2.763741556845444 3.016162679777305 0.00848676 -0.029772894456982613 0.10777302086353302 441 90 90 54 2.046459224593269 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 71.10386650817254 3.644310235977173 18.449892044067383 8.17006778717041 276727.0 5.455782413482666 60.20566864013674 34.578948974609375 2.4505250002892156 96.83311462402344 261.9666442871094 238.06349182128906 95679.0 124.74036712646485 486.1961517333981 116.32884979248047 31.901765823364258 +sub-10207_ses-V1_task-cuff_run-02_bold 0.0006469772727272727 0.006290352204545454 10 40.215159848519356 1.031806986719818 0.9956912701138958 0.5107683571188769 722.5690307617188 0.15204341989807496 0 0.0 2.7550930454666758 2.506887400385245 2.756954057115155 3.001437678899627 0.00909502 -0.030299244448542595 0.10984907299280167 440 90 90 54 2.048576174927718 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 72.08460385297471 3.763787031173706 18.555349349975586 8.209090232849121 276679.0 5.372726917266846 60.836588287353464 34.65117263793945 2.4315123285286377 96.35061645507812 260.5184020996094 236.66590881347656 95738.0 124.52919998168946 483.0464614868163 115.52642059326172 31.58591651916504 +sub-10207_ses-V1_task-rest_run-01_bold 0.0005507013574660634 0.005688948597285068 8 41.35542140791385 1.053851274104309 1.0009131700226748 0.5082060402134769 757.5220947265625 0.16620271873497244 11 2.48868778280543 2.773727767926102 2.5184582332587944 2.7717623898600583 3.030962680659454 0.0114677 -0.02948572300374508 0.10705700516700745 442 90 90 54 2.0470450921808783 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 69.64663279394294 3.548853635787964 18.382360458374023 8.115385055541992 277394.0 5.484163284301758 60.15011425018305 34.35862350463867 2.4315178299812725 97.19766998291016 263.7023010253906 239.2794189453125 95222.0 125.9797576904297 489.13995056152345 116.88954162597656 32.76723861694336 +sub-10207_ses-V1_task-rest_run-02_bold 0.0014548306997742664 0.006609165598194131 7 40.79584212314482 1.0452866531447973 1.0161249902488687 0.5109282532423716 717.48193359375 0.17863879737336688 45 10.15801354401806 2.750893045803828 2.49901656736467 2.7470832241740535 3.0065793458727605 0.00758163 -0.03102903813123703 0.10816068202257156 443 90 90 54 2.035158138245132 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 7 71.62580115707453 3.657977819442749 18.49361228942871 8.182844161987305 276820.0 5.485327243804932 60.46952819824219 34.1297492980957 2.527744330667935 95.5040283203125 258.9295349121094 234.91197204589844 95556.0 123.82279968261719 482.4447021484375 115.42628479003906 30.773788452148438 +sub-10209_ses-V1_task-cuff_run-01_bold 0.0007660681818181818 0.006134564227272727 10 32.844654018132104 1.082821611981777 1.012805912984054 0.42107000064693656 10501.2177734375 0.14731594319811558 0 0.0 2.4609619250703143 2.5329623993491173 2.448399902709329 2.4015234731524955 0.00567834 -0.002414426300674677 0.01839250698685646 440 90 90 60 2.956250716325903 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 53.575274019755184 15.247215270996094 32.7363395690918 10.459090232849121 338414.0 0.004545454401522875 136.39476470947255 68.49604797363281 1.9280887183603692 300.0820007324219 1115.229736328125 1071.3272705078125 80450.0 597.5081726074219 1770.3742858886721 362.39166259765625 39.84044647216797 +sub-10209_ses-V1_task-rest_run-01_bold 0.0014340632054176074 0.007412916546275395 7 32.47176464201359 1.083841857986425 1.0115301512895924 0.4210138083440952 10610.1943359375 0.1461048612367944 2 0.45146726862302483 2.4714063659663528 2.5441998989025794 2.452724902537469 2.41729429645901 0.00766761 -0.002308615716174245 0.017629412934184074 443 90 90 60 2.9728162269534777 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 53.15563076027051 15.210897445678711 32.84665298461914 10.51015853881836 338587.0 0.015801355242729187 135.13025817871096 68.44239807128906 1.9317565681012185 300.99505615234375 1121.721435546875 1078.5711669921875 80337.0 601.2329956054688 1773.6099365234372 362.8089904785156 37.43370819091797 +sub-10209_ses-V1_task-rest_run-02_bold 0.0008221621621621623 0.006777884864864865 6 32.9624786549436 1.090248016117381 0.9860256156659145 0.42047368290102954 10493.1494140625 0.1325495252971296 0 0.0 2.460154980496505 2.5329748993486203 2.4451540695049734 2.4023359726359224 0.00711168 -0.0025585880503058434 0.017996471375226974 444 90 90 60 2.9594483306220516 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 52.9126577374141 15.276814460754395 32.53345489501953 10.448198318481445 338459.0 0.0022522523067891598 135.13063049316406 67.50845336914062 1.916015304061344 299.6459045410156 1116.326904296875 1072.80859375 80333.0 596.5198364257812 1773.2126464843739 362.5006408691406 38.68103790283203 +sub-10211_ses-V1_task-cuff_run-01_bold 0.0005612584269662922 0.005580351123595506 5 42.42248359018021 1.024851747860361 1.0082389685810806 0.5668096463088209 303.92999267578125 0.17962866749536835 0 0.0 2.7243373917445584 2.4901249010513267 2.9544373826012063 2.728449891581142 0.00758904 -0.025711148977279663 0.13647249341011047 445 90 90 54 2.2795485149521317 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 30.08104544797331 6.653385639190674 26.734405517578125 11.402247428894043 272178.0 6.579775333404541 98.06651840209956 42.325077056884766 0.6068500737300413 88.15985870361328 232.06414794921875 217.02696228027344 98807.0 102.93460769653319 411.43101501464844 95.20563507080078 31.895687103271484 +sub-10211_ses-V1_task-cuff_run-02_bold 0.0005326590909090909 0.006971949386363636 10 43.64787123897496 1.0082956902961275 0.9945461668564928 0.5691553389246232 295.21917724609375 0.1987534891085402 0 0.0 2.727659613834767 2.4854540679035955 2.9599332157161546 2.7375915578845516 0.0146638 -0.02737700752913952 0.13845233619213104 440 90 90 54 2.266661284297032 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 28.581049744317827 6.816600799560547 27.057958602905273 11.518181800842285 271444.0 6.559090614318848 99.375 42.46611404418945 0.6240515130181876 87.65213775634766 230.4959716796875 215.3113555908203 99315.0 101.41818237304688 408.8613433837888 94.99005126953125 29.790781021118164 +sub-10211_ses-V1_task-rest_run-01_bold 0.00040683257918552033 0.00679431257918552 8 41.36011264664398 1.0092331137641717 1.0001540614739228 0.5639262297938863 321.6451721191406 0.16453738894935852 56 12.669683257918551 2.7473248908311176 2.4996915673378477 2.9801457149129824 2.7621373902425215 0.0145424 -0.023823339492082596 0.13994432985782623 442 90 90 54 2.2775212976295482 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 2 29.066494128086212 6.265838623046875 26.21808624267578 11.05203628540039 272885.0 6.536199569702148 96.16470947265623 41.98461151123047 0.588037213645737 87.60601806640625 230.98081970214844 215.97625732421875 98360.0 101.74582061767579 409.51632080078116 94.82904052734375 30.555370330810547 +sub-10211_ses-V1_task-rest_run-02_bold 0.001160561797752809 0.007225710764044944 5 39.4406750136937 1.0320968315990988 1.018662253648648 0.5769456849656139 273.84912109375 0.16906176311911472 69 15.50561797752809 2.661070727591883 2.432758236664206 2.8737873858059495 2.676666560305494 0.01314 -0.026804523542523384 0.13648441433906555 445 90 90 54 2.348297356893434 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 26.93837819970643 6.27357292175293 28.79983901977539 12.408988952636719 272502.0 7.914607048034668 105.21561660766596 43.906307220458984 0.647209716394586 86.27745056152344 236.40353393554688 221.3550567626953 98739.0 107.66966247558594 414.1200073242187 94.26145935058594 31.5422306060791 +sub-10211_ses-V3_task-cuff_run-01_bold 0.0005777652370203161 0.0076776936343115115 7 39.73790683997734 1.018422314570136 0.9967930139140264 0.5714498170337535 282.3814392089844 0.21672621015444174 0 0.0 2.685424979869172 2.4886832344419463 2.9530123826578305 2.6145793225077383 0.0086892 -0.030639318749308586 0.13540039956569672 443 90 90 54 2.2690353356284967 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.525392182134702 6.690117835998535 29.59001350402832 12.896162986755371 271331.0 8.08126449584961 108.12641143798828 45.53767776489258 1.0417720333838325 95.25804138183594 252.03814697265625 236.13995361328125 99448.0 111.03634834289552 445.3626434326172 104.07011413574219 32.76167678833008 +sub-10211_ses-V3_task-cuff_run-02_bold 0.0005213288288288289 0.008071891238738738 6 40.783849892889386 1.0232982984875847 0.9958850339729117 0.5733921030415071 272.7339172363281 0.21830923740921376 0 0.0 2.6710374803440224 2.4731332350598483 2.928324883638824 2.611654322333395 0.0187306 -0.031419165432453156 0.13848719000816345 444 90 90 54 2.270663528101786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 27.456473425232502 6.8386712074279785 29.59907341003418 12.988739013671875 271193.0 8.054054260253906 108.25180358886716 45.06963348388672 1.1220218151778685 93.44735717773438 249.3018798828125 233.23423767089844 99611.0 110.65315628051758 440.69371032714844 102.7158203125 32.19634246826172 +sub-10211_ses-V3_task-rest_run-01_bold 0.000381936936936937 0.00808558722972973 6 39.80853988774268 1.0168098057562076 0.9901096509029345 0.5700229160781598 290.5882263183594 0.2020189521638431 104 23.423423423423422 2.700645813117845 2.499566567342815 2.972083215233357 2.6302876567773614 0.0171084 -0.031697388738393784 0.13633359968662262 444 90 90 54 2.262857913114549 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 27.680257907385347 6.538142681121826 29.182268142700195 12.770270347595215 271307.0 8.067567825317383 106.90338287353504 44.598052978515625 1.0768347017862911 95.62451934814453 252.712158203125 236.89077758789062 99612.0 110.33783721923828 446.77263793945303 104.68601989746094 32.62548065185547 +sub-10211_ses-V3_task-rest_run-02_bold 0.0016695515695067265 0.007711906255605382 4 40.69916133240449 1.0499839198202245 1.0294158878651691 0.5744169615934474 274.56231689453125 0.21346296830505235 123 27.57847533632287 2.672486091624537 2.47238323508965 2.92656655037536 2.6185084894086015 0.0261098 -0.031216179952025414 0.14067921042442322 446 90 90 54 2.2785328219403866 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 25.91597101228877 6.822962760925293 29.633922576904297 12.886772155761719 271230.0 7.89910364151001 108.89809951782223 45.13804626464844 1.1547506885134844 91.83492279052734 247.1798095703125 231.04486083984375 99601.0 110.61884307861328 436.365478515625 101.40020751953125 31.867958068847656 +sub-10212_ses-V1_task-rest_run-01_bold 0.0005729864253393666 0.011808864977375565 8 40.41374605310659 0.9716926421768709 0.9569364846258497 0.5147248340743843 643.4628295898438 0.1746153803342029 59 13.34841628959276 2.9304791524207494 2.603583229876231 3.1014915434244656 3.0863626839615512 0.0103201 -0.023365627974271774 0.13097336888313293 442 90 90 54 2.4180876839863363 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 67.6835144533319 4.1761088371276855 20.514020919799805 8.484163284301758 289133.0 5.468326091766357 69.45113220214836 37.65507507324219 0.6436577299557995 90.24085998535156 245.97109985351562 230.94119262695312 85687.0 114.27262802124024 421.50747375488277 95.50515747070312 27.323822021484375 +sub-10212_ses-V1_task-rest_run-02_bold 0.0009619144144144145 0.008155665292792793 6 40.612346649119644 1.0052453432957105 0.9838094078555303 0.5157400295118582 644.9431762695312 0.1808481902823168 53 11.936936936936936 2.8992513748742983 2.5726457311055766 3.0692332113729632 3.0558751821443546 0.00742929 -0.02424631640315056 0.13487209379673004 444 90 90 54 2.414117644340426 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 67.87888176421535 4.033746242523193 20.676626205444336 8.400900840759277 289114.0 5.493243217468262 70.36272506713851 38.42124938964844 0.6566786387104684 89.38021850585938 243.512451171875 228.74549865722656 85879.0 113.8768035888672 418.2806488037108 94.75270080566406 30.08930206298828 +sub-10213_ses-V1_task-cuff_run-01_bold 0.0012506320541760723 0.012993461873589166 7 34.83831069477376 1.0490313667420814 1.0279996876696833 0.47206979771239543 6193.57177734375 0.19604731985888776 1 0.22573363431151242 2.462888316503602 2.4550082357800704 2.545324898857876 2.3883318148728594 0.0196407 0.008164115250110626 0.017173808068037033 443 90 90 60 3.018246571074751 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 118.39641023155555 20.930461883544922 51.120704650878906 14.616252899169922 317059.0 0.020316027104854584 204.3923233032217 122.3187255859375 3.9342985066424205 306.81170654296875 1181.9544677734375 1138.835205078125 98702.0 647.6601928710937 1825.2223815917969 377.3149108886719 30.29845428466797 +sub-10213_ses-V1_task-cuff_run-02_bold 0.0014219144144144143 0.011751992927927928 6 37.11661410738145 1.086295860451467 1.0172361915124142 0.47206728363506695 6035.93798828125 0.2006197757071771 0 0.0 2.432496658449636 2.4297165701184045 2.516712399994834 2.351061005235669 0.0169217 0.008590960875153542 0.01739739440381527 444 90 90 60 3.040377907481389 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 97.41887617818065 20.956783294677734 50.22224807739258 14.599099159240723 317095.0 0.006756756920367479 202.19977874755836 118.92161560058594 3.949328766901411 304.4709777832031 1176.024169921875 1133.490966796875 98770.0 648.401025390625 1816.4203002929685 372.8106384277344 32.66714859008789 +sub-10213_ses-V1_task-rest_run-01_bold 0.0009829504504504506 0.011186681441441441 6 35.1390604788036 1.0796644227539511 1.017279764604966 0.47115440610980247 6175.53369140625 0.1836088297956406 47 10.585585585585585 2.447882765745611 2.4469790694324547 2.5294832328207004 2.3671859949836764 0.0213973 0.007080163806676865 0.018044088035821915 444 90 90 60 2.9753990628902174 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 125.94893964270966 21.177169799804688 51.99000930786133 14.752252578735352 317170.0 0.013513513840734959 208.75023269653315 125.21807861328125 4.145202402186183 315.076416015625 1199.5062255859375 1153.817626953125 98615.0 650.5015991210938 1863.9243530273422 387.78387451171875 32.92878723144531 +sub-10213_ses-V1_task-rest_run-02_bold 0.0006146396396396396 0.010843935585585584 6 36.622949079209924 1.0788224584424393 0.9956745214446959 0.4716341669514817 5893.88623046875 0.19402112979226405 71 15.99099099099099 2.4351577704119887 2.437874903127555 2.5213540664770573 2.3462443416313543 0.0229214 0.008266172371804714 0.01682427152991295 444 90 90 60 3.0040193162344635 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 116.72173555510534 21.19720458984375 50.73304748535156 14.713964462280273 317151.0 0.0022522523067891598 205.71058654785156 121.23661804199219 3.9028723946741692 307.82183837890625 1176.5887451171875 1134.32666015625 98820.0 640.4566528320312 1823.0990966796855 377.60107421875 33.61909484863281 +sub-10213_ses-V3_task-cuff_run-01_bold 0.001545633484162896 0.01022599685520362 8 33.913934824648535 1.0864431644444443 1.0248372317006798 0.45812635041172906 5698.64990234375 0.13696056068500312 0 0.0 2.4226494404209844 2.4527832358684845 2.4832415679915125 2.331923517402956 0.0150003 0.0074011702090501785 0.009364024735987186 442 90 90 60 2.848433887294336 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 76.51414670943684 22.000879287719727 48.744449615478516 15.63122272491455 321835.0 0.05203619971871376 196.97353668212887 110.06655883789062 3.836674568997185 343.554443359375 1243.04345703125 1189.194580078125 94521.0 667.6629028320312 1971.083740234375 417.48846435546875 34.240760803222656 +sub-10213_ses-V3_task-cuff_run-02_bold 0.0010253932584269663 0.012567349078651686 5 39.827828515067544 1.1047719456756762 0.9991457961036024 0.4588213055745227 5448.36083984375 0.23507882719669834 0 0.0 2.434334157874948 2.458241568984923 2.4911749010096034 2.353586003630318 0.0200987 0.007402764167636633 0.010907909832894802 445 90 90 60 2.8947689613118652 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 90.61986254004566 22.209049224853516 48.18360137939453 15.831460952758789 321739.0 0.03595505654811859 194.1802276611327 109.40866088867188 3.3061818056282686 341.308349609375 1232.87548828125 1180.1865234375 94681.0 665.5460815429688 1946.0921630859375 407.6941223144531 30.668441772460938 +sub-10213_ses-V3_task-rest_run-01_bold 0.0013702941176470587 0.013504854004524884 8 32.589048584444456 1.0040505758503409 0.9658038169387748 0.47000017716100617 6336.61083984375 0.18224943508261338 38 8.597285067873303 2.478981367933635 2.4816374013885896 2.549429065361457 2.4058776370508594 0.00841809 0.010331004858016968 0.012616843916475773 442 90 90 60 3.082697651099227 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 85.03669053803875 19.944690704345703 46.620506286621094 14.081448554992676 316433.0 0.03393665328621864 187.83529663085915 109.52980041503906 2.983801140620221 298.7225341796875 1158.925048828125 1120.5701904296875 99288.0 626.2356506347656 1780.0675170898432 363.50128173828125 29.858291625976562 +sub-10214_ses-V1_task-cuff_run-01_bold 0.0017602045454545455 0.011087883113636364 10 41.702221976833734 1.0380802959225508 1.043736506150341 0.47950098236725575 4975.9345703125 0.33696001712066076 1 0.22727272727272727 2.5035077374557737 2.4622207354934718 2.5498540653445696 2.4984484115292793 0.00816996 0.006400068290531635 0.024062123149633408 440 90 90 60 2.289839581464595 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 75.0400010907682 24.277612686157227 53.68862533569336 17.331817626953125 303593.0 0.15454545617103577 209.87681274414047 125.08039855957031 5.392594747762088 422.0968322753906 1315.7718505859375 1230.5146484375 111166.0 623.6420440673828 2291.7049560546875 537.3778686523438 27.430797576904297 +sub-10214_ses-V1_task-rest_run-01_bold 0.0017370842824601367 0.012521728792710705 11 42.98170760753424 1.0244015522374426 1.0175560031735162 0.47885828791828977 4911.740234375 0.3380637701446178 217 49.430523917995444 2.5085355141123777 2.4554165690971783 2.5671040646591163 2.503085908580838 0.00120199 0.004926984664052725 0.023688524961471558 439 90 90 60 2.2862803829671754 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 72.89045066339798 24.599714279174805 54.425926208496094 17.537586212158203 304406.0 0.15717540681362152 211.99716567993164 126.47605895996094 5.460341720781857 427.07220458984375 1325.8297119140625 1238.62646484375 110582.0 630.6346679687499 2311.678271484375 541.762451171875 25.91332244873047 +sub-10214_ses-V1_task-rest_run-02_bold 0.0009460317460317461 0.01186978192743764 9 44.95011648256817 1.0267968275681816 0.968573973772728 0.4786698391006695 5038.787109375 0.3847759647685215 252 57.142857142857146 2.515523011608653 2.469479068538385 2.5627998981634814 2.514290068124092 0.0108713 0.006303110625594854 0.023938341066241264 441 90 90 60 2.2866588076804835 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 78.04770067629994 24.5755615234375 53.95359802246094 17.349206924438477 303914.0 0.10204081982374191 210.64184188842756 126.29359436035156 5.300850686308339 427.7088623046875 1319.134765625 1233.079345703125 110849.0 625.2480834960938 2301.58154296875 539.2469482421875 25.601274490356445 +sub-10215_ses-V1_task-cuff_run-01_bold 0.000538076923076923 0.004838328936651585 8 35.5541713697279 1.046651195804989 1.0052063170068022 0.5179165039407982 541.9769897460938 0.16772887685283341 0 0.0 2.511619427626089 2.2933582422034644 2.735454057969488 2.506045982705314 0.0130375 -0.02218022383749485 0.08068252354860306 442 90 90 54 2.57309087638796 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 46.70587793997654 3.149690628051758 19.894617080688477 9.934389114379883 289131.0 7.69683313369751 64.08484268188477 30.60655403137207 2.7146864684240555 78.20559692382812 259.2242736816406 245.6776123046875 85374.0 132.0836067199707 434.36053466796795 95.47901153564453 40.893341064453125 +sub-10215_ses-V1_task-cuff_run-02_bold 0.0006368480725623582 0.005638371655328797 9 35.676221509704554 1.0389089760000003 0.998968982431818 0.5188755964725169 536.1026611328125 0.16828022433510942 0 0.0 2.500748594585922 2.2807624093706447 2.7196290585983176 2.5018543157888047 0.0125276 -0.022089116275310516 0.08020840585231781 441 90 90 54 2.5792208157774295 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 48.734676128959975 3.183729410171509 19.925016403198242 9.945578575134277 289150.0 7.6621317863464355 64.12822990417477 30.711164474487305 2.778836464967556 77.03144073486328 257.517333984375 243.84580993652344 85208.0 132.73321762084962 431.511227416992 94.54187774658203 38.5892219543457 +sub-10215_ses-V1_task-rest_run-01_bold 0.0012693197278911565 0.005225447120181406 9 35.111300884840915 1.0526537300227274 1.0169735191363636 0.5163871171300105 556.470703125 0.16531360357789243 12 2.7210884353741496 2.516336094475377 2.292624908899271 2.7391623911554657 2.517220983371396 0.00882649 -0.021242063492536545 0.07966531068086624 441 90 90 54 2.587834578181413 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 45.126676812416086 3.066061496734619 19.789690017700195 9.884353637695312 289635.0 7.707483291625977 63.91678047180173 30.428455352783203 2.570912403935055 78.95110321044922 261.2503967285156 247.75283813476562 84929.0 133.55283813476564 437.95918579101556 95.73694610595703 39.53376770019531 +sub-10215_ses-V1_task-rest_run-02_bold 0.0007479909706546276 0.005855761851015801 7 35.89029094226243 1.0369665444343885 0.9977702821493212 0.5200639890263391 527.5364990234375 0.17024713776978964 17 3.8374717832957113 2.5056152610084306 2.2914165756139524 2.7251082250472614 2.5003209823640775 0.0149562 -0.022606275975704193 0.08125179260969162 443 90 90 54 2.5795592790650277 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 46.18776361973349 3.189436674118042 19.977893829345703 9.941309928894043 288742.0 7.670429229736328 64.7694137573243 30.724855422973633 2.8381279492692357 76.7204818725586 255.80148315429688 242.3227996826172 85602.0 131.538037109375 427.68613586425784 93.9390640258789 38.00779724121094 +sub-10216_ses-V1_task-rest_run-01_bold 0.001054663677130045 0.023340503587443943 4 65.85680772586514 1.0985084086292147 1.0000391631235956 0.41972836595515634 4563.23388671875 0.7394885802114006 357 80.04484304932735 2.518388242468294 2.5299082328038125 2.4808707347523873 2.544385759848683 0.0331112 -0.01247702818363905 0.018841514363884926 446 90 90 60 3.619072458350251 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 10 145.07090999035518 22.67118263244629 46.20081329345703 16.14125633239746 354481.0 0.07399103790521622 178.37445068359375 105.06370544433594 2.6756395313419308 220.59518432617188 1079.33056640625 1057.6368408203125 68185.0 630.0054077148437 1582.8018798828123 292.23760986328125 23.519426345825195 +sub-10217_ses-V3_task-cuff_run-01_bold 0.001607126696832579 0.016821660384615387 8 55.74539506369609 1.1291590185714286 1.0227423021315198 0.4332160163852743 5784.34130859375 0.46347757594415895 2 0.45248868778280543 2.3976631863113913 2.3558374063874323 2.4768415682458254 2.3603105843009162 0.00981672 -0.010802844539284706 0.021581469103693962 442 90 90 60 3.2121372780691053 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 271.20574245223804 19.307373046875 37.28617477416992 13.832579612731934 336775.0 0.04977375641465187 144.69298858642577 85.64073181152344 2.346728997320694 255.0361328125 1084.222900390625 1047.3756103515625 82654.0 613.4417846679688 1675.2937622070303 326.066162109375 27.883697509765625 +sub-10217_ses-V3_task-cuff_run-02_bold 0.0015389819004524889 0.015357515226244345 8 52.82557474938782 1.1230588491156472 1.0634406078004532 0.4329300267164107 6090.88427734375 0.4561309814037624 11 2.48868778280543 2.405836802743602 2.3459165734483176 2.4942332342214093 2.377360600561079 0.00686967 -0.010095829144120216 0.02151932753622532 442 90 90 60 3.2214823460824693 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 9 258.49566035751747 18.894794464111328 36.64278793334961 13.457014083862305 336621.0 0.0429864265024662 142.0972900390625 83.607666015625 2.2348789039353827 254.11524963378906 1072.593017578125 1036.9072265625 82797.0 606.5222045898438 1655.5874511718748 321.8707580566406 28.41999626159668 +sub-10217_ses-V3_task-rest_run-01_bold 0.0006177927927927927 0.016091731373873874 6 63.41695418704289 1.1283709612866812 0.9583006243566592 0.4308780849428311 5992.384765625 0.5117664520464896 315 70.94594594594595 2.388800683944091 2.3408749069819885 2.473429068381426 2.3520980764688586 0.0110135 -0.012227038852870464 0.0225683506578207 444 90 90 60 3.2019330798492533 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 327.8643553068603 19.2337589263916 36.88557052612305 13.57207202911377 336882.0 0.011261261999607086 143.28355789184573 89.16651916503906 2.3597667704246312 259.1716003417969 1091.4990234375 1055.5247802734375 82625.0 613.4990966796875 1688.7513916015628 329.6503601074219 28.54387092590332 +sub-10217_ses-V3_task-rest_run-02_bold 0.001040767494356659 0.012976717742663658 7 49.61196115343888 1.1299713817873307 1.0021431307692303 0.43260434672036163 6228.90673828125 0.37523752085118656 261 58.91647855530474 2.383085405793232 2.331495740688016 2.467474901951357 2.350285574740322 0.00581187 -0.010413381271064281 0.022052351385354996 443 90 90 60 3.2096654240977176 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 289.4427452218596 18.480653762817383 36.69733428955078 13.108352661132812 336634.0 0.04063205420970917 142.61828384399342 87.49586486816406 2.2133507839571704 251.2039794921875 1068.1292724609375 1033.132080078125 82902.0 602.5044342041015 1650.606622314453 321.8796081542969 31.02181625366211 +sub-10218_ses-V1_task-cuff_run-01_bold 0.0018116404494382026 0.03069184831460674 5 66.24729062013516 1.0719592031531526 0.9834593393243243 0.4982547689443774 2255.111083984375 0.8208337343817005 147 33.03370786516854 2.6842133086243294 2.521320733145049 2.767249890039369 2.7640693026885694 0.0138491 0.032839201390743256 0.03267134726047516 445 90 90 60 2.866647694837841 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 55.32353520970295 25.264211654663086 54.458744049072266 19.289888381958008 310382.0 0.2539325952529907 227.20651702880863 116.16795349121094 1.9476251707630343 278.89910888671875 940.445068359375 909.1932373046875 106476.0 474.02527618408203 1494.0039367675781 317.1610412597656 18.917211532592773 +sub-10218_ses-V1_task-rest_run-01_bold 0.00666255033557047 0.02530607874720358 3 68.58823594908073 1.1235136515919284 1.0480359650224218 0.500428910923422 2399.38427734375 0.8810659529941175 368 82.32662192393737 2.6807702447657284 2.526549899603927 2.777179056311486 2.738581778381772 0.016547 0.03208886831998825 0.03440139442682266 447 90 90 60 2.8532585158873536 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 75.70618696483139 24.69013786315918 54.742862701416016 18.691274642944336 307616.0 0.2214765101671219 231.30201721191406 121.27715301513672 1.8830583030663703 287.6894836425781 937.8497314453125 910.91943359375 108424.0 466.8440826416015 1495.1644775390623 319.2543640136719 19.590850830078125 +sub-10218_ses-V1_task-rest_run-02_bold 0.006564966292134832 0.03163880921348315 5 84.35299688635136 1.144743596261261 1.0237355737837832 0.49953389939449167 2290.376708984375 1.3672439383082673 407 91.46067415730337 2.6993188683687155 2.5294082328236804 2.7900165558013694 2.7785318164810975 0.0260884 0.0350768156349659 0.03569262474775314 445 90 90 60 2.8873663489400596 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 69.53569716352958 24.57121467590332 54.85762405395508 18.74606704711914 309607.0 0.24494382739067078 232.75280914306666 121.08525085449219 1.8817576626183037 276.10723876953125 926.279052734375 898.044921875 106912.0 467.21191711425774 1469.2615600585932 311.024169921875 17.23872947692871 +sub-10218_ses-V3_task-rest_run-01_bold 0.0018637246049661399 0.01657984738148984 7 45.74637737545252 1.082506338325792 1.0153983244570142 0.5002679029923869 2715.52197265625 0.24432718247650387 109 24.604966139954854 2.5521604863026894 2.4552082357721234 2.5669415646655733 2.634331658470371 0.00540361 0.021938012912869453 0.021013284102082253 443 90 90 60 2.8576399451167367 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 39.482752642942074 24.831079483032227 53.50860595703125 18.430023193359375 305472.0 0.11060948669910431 227.98499755859382 114.9125747680664 2.583446273742867 286.09869384765625 1000.46630859375 963.1151733398438 110701.0 526.6636962890625 1594.3702392578125 337.0301513671875 26.87151336669922 +sub-10218_ses-V3_task-rest_run-02_bold 0.0013259999999999997 0.021113713258426967 5 47.80671337060807 1.0257595597747748 0.9680439066216217 0.5010649189965144 2601.7626953125 0.2790569408272798 152 34.157303370786515 2.5807785354626147 2.4701040685135496 2.6114332295643 2.6607983083099946 0.00618844 0.02229546196758747 0.02152305468916893 445 90 90 60 2.8653901280727605 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 37.06196759204642 25.424131393432617 53.8683967590332 18.957304000854492 306248.0 0.14831461012363434 229.79314651489236 113.29377746582031 2.633702937333873 287.45489501953125 991.3561401367188 957.251708984375 110359.0 518.0087524414063 1573.793713378906 334.072265625 23.719064712524414 +sub-10219_ses-V1_task-cuff_run-01_bold 0.0015394545454545455 0.008328672727272727 10 36.212707671503416 1.1170224788610474 1.0059477386560365 0.42623247122239666 11252.6650390625 0.15890740495926808 0 0.0 2.4039327830513115 2.4748499016583003 2.4480749027222433 2.288873544773391 0.0082442 0.0049574957229197025 0.01888434588909149 440 90 90 60 2.561705131484587 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 56.079225534910904 14.778848648071289 38.16150665283203 10.081817626953125 333882.0 0.0022727272007614374 154.07260971069337 96.2406234741211 6.544387743216429 291.1881408691406 1129.8985595703125 1067.588623046875 83740.0 581.045297241211 1858.702545166016 416.7467346191406 35.52519607543945 +sub-10219_ses-V1_task-cuff_run-02_bold 0.0008446818181818182 0.007934416 10 35.39951885788156 1.0948114067425965 0.9897496044874715 0.4267532329209325 10980.7705078125 0.15104841564225116 0 0.0 2.391813343491741 2.463841568762399 2.444887402848903 2.2667110588639203 0.00561093 0.004864080343395472 0.019045721739530563 440 90 90 60 2.5763999394979167 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 56.330183580081595 14.815913200378418 37.9907341003418 10.154544830322266 333846.0 0.0022727272007614374 154.74090576171875 95.1155776977539 6.42796939921414 288.244873046875 1126.8924560546875 1065.1318359375 83651.0 582.8715515136719 1850.9522094726562 413.41619873046875 36.97756576538086 +sub-10219_ses-V1_task-rest_run-01_bold 0.0009229384965831434 0.00783702701594533 11 36.623953727899554 1.1184981554337896 1.002039707671232 0.42553604505691084 10965.8623046875 0.16627618397321012 19 4.328018223234624 2.396495287118498 2.476808234913817 2.4427874029323497 2.2698902235093286 0.00691143 0.005523685831576586 0.017323888838291168 439 90 90 60 2.564799194014576 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 56.17000602993961 14.863173484802246 37.829959869384766 10.189066886901855 334224.0 0.00455580884590745 152.4662956237792 95.3039321899414 6.413019267177477 289.55328369140625 1132.422119140625 1070.480712890625 83427.0 580.7906677246094 1867.5911987304685 417.37158203125 37.19004821777344 +sub-10219_ses-V1_task-rest_run-02_bold 0.001869863945578231 0.011074624308390022 9 35.5011914555909 1.0702048521818186 0.9636176306590911 0.42718426345524524 10855.634765625 0.16375946896369406 22 4.988662131519274 2.4243577791998603 2.4949082341945874 2.4739915683590743 2.3041735350459196 0.00485612 0.0054836939089000225 0.01743469573557377 441 90 90 60 2.5698630854397817 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 52.08585294595462 14.866364479064941 38.160675048828125 10.154194831848145 333484.0 0.0 156.49887084960938 95.27196502685547 6.50991058228516 288.85528564453125 1125.6148681640625 1064.775634765625 84024.0 576.6615814208985 1851.2815673828113 414.3291931152344 32.17293930053711 +sub-10219_ses-V3_task-cuff_run-01_bold 0.0011273242630385487 0.009013088027210884 9 35.71269522593185 1.1081268258409098 0.9869896528636375 0.4245484940858905 11732.2470703125 0.10683840557926476 0 0.0 2.4695061048432874 2.516566566667296 2.526783232927989 2.365168514934578 0.00646207 0.00027796337963081896 0.013058366253972054 441 90 90 60 2.4443326265537033 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 46.4075469411974 15.232812881469727 38.59473419189453 10.424036026000977 333198.0 0.004535147454589605 160.68196792602498 92.71538543701172 9.982164234739809 307.69384765625 1202.0318603515625 1128.501220703125 84534.0 631.7535247802734 1992.1023742675775 461.677978515625 34.78312301635742 +sub-10219_ses-V3_task-cuff_run-02_bold 0.0013585778781038376 0.007329943905191873 7 34.7184084420362 1.121648633009049 1.0103427975565615 0.424314952349379 11869.4140625 0.10287476713998253 0 0.0 2.4663116470051487 2.5179207332801528 2.531549899405245 2.3494643083300484 0.00474338 -0.0009097829461097717 0.013388630002737045 443 90 90 60 2.4047776064425332 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 44.618994055873216 15.130575180053711 38.77952194213867 10.37246036529541 333191.0 0.004514672793447971 163.03386688232422 91.74283599853516 10.355419962087833 310.40264892578125 1200.470458984375 1127.01806640625 84697.0 617.1914428710937 2000.6167724609375 468.6551513671875 37.354042053222656 +sub-10219_ses-V3_task-rest_run-01_bold 0.0012560997732426304 0.009328695691609977 9 36.648080973159075 1.1256026073636363 0.9808459405909081 0.4245448834429188 11919.5703125 0.11334354676235657 3 0.6802721088435374 2.4580158188192405 2.5041540671605245 2.5148332334028387 2.355060155894358 0.0104691 0.00017738666792865843 0.013187816366553307 441 90 90 60 2.4622808339710787 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 0 45.7045042354768 15.064719200134277 38.050907135009766 10.340136528015137 332968.0 0.004535147454589605 157.08288574218693 91.61848449707031 9.654348324366524 306.3708190917969 1198.3375244140625 1126.3424072265625 84681.0 628.4194946289062 1989.2017822265625 457.4359436035156 33.5495491027832 +sub-10219_ses-V3_task-rest_run-02_bold 0.0010575113122171945 0.00797774180995475 8 35.084467059637184 1.1080051742176869 0.9807125043764164 0.42507104773316046 12305.5517578125 0.10785816045397 4 0.9049773755656109 2.476207493114329 2.530074899463856 2.5337873993163345 2.3647601805627967 0.00631163 -0.0005425518611446023 0.012760628014802933 442 90 90 60 2.4174321182614955 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 0 43.805391120412004 14.88304615020752 38.95827865600586 10.203619956970215 333000.0 0.004524887073785067 164.75340270996094 92.12881469726562 10.291527287941486 309.9174499511719 1197.0665283203125 1124.429931640625 84925.0 620.9027587890624 1992.4987304687509 465.13128662109375 36.02719497680664 +sub-10220_ses-V1_task-rest_run-01_bold 0.0004080135440180587 0.006143103453724605 7 35.034137052375584 0.9968537695475108 0.9887835389819005 0.5240870846298151 720.8968505859375 0.09955045959609236 0 0.0 2.7317069328188404 2.411699904167656 2.8564540531613805 2.9269668411274856 0.00520809 -0.021088270470499992 0.10745277255773544 443 90 90 54 2.457079071553411 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 41.39148003596253 3.8855559825897217 20.525232315063477 8.295711517333984 282111.0 5.469526290893555 74.1884880065918 36.53457260131836 0.5386802199904208 90.6060791015625 252.20455932617188 238.0383758544922 91210.0 117.80135345458984 431.00022583007814 96.87806701660156 34.49962615966797 +sub-10220_ses-V1_task-rest_run-02_bold 0.0004028280542986425 0.005654896402714932 8 35.04863821160998 1.002414798231292 0.998003512789116 0.5262877736867712 694.24462890625 0.09230298125335452 1 0.22624434389140272 2.719636099255974 2.4029290711828444 2.8504290534007923 2.905550173184286 0.00665307 -0.021851317957043648 0.10780195891857147 442 90 90 54 2.454871997586699 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 40.18656727839209 3.937952995300293 20.545562744140625 8.332579612731934 281573.0 5.4773759841918945 74.2597305297846 36.27334213256836 0.5791784443356685 89.13894653320312 248.76229858398438 234.6877899169922 91566.0 115.9117660522461 425.65838623046875 95.60030364990234 34.86637878417969 +sub-10220_ses-V3_task-cuff_run-01_bold 0.0003882392776523702 0.007857716343115124 7 29.997470532330297 0.9574612365158378 0.9565758060180999 0.5303360502297098 566.4981079101562 0.12819663513174162 0 0.0 2.6510222063620943 2.39244157159958 2.8583582197523825 2.702266827734321 0.00938127 -0.01949433982372284 0.09113509207963943 443 90 90 54 2.5547719828625426 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.21917500648008 3.6780588626861572 22.656715393066406 10.313770294189453 282769.0 7.670429229736328 75.79142456054682 36.88520050048828 0.7235581595266027 92.14557647705078 273.2097473144531 261.3656921386719 90790.0 121.26411437988281 457.7314971923829 102.30433654785156 34.99856948852539 +sub-10220_ses-V3_task-cuff_run-02_bold 0.0004433408577878104 0.0051547986004514676 7 30.205815082126666 1.0097308748642535 0.9980230964479638 0.5308245490869129 560.1972045898438 0.11247482429920552 0 0.0 2.600422206372001 2.3555707397313617 2.8038498885850154 2.641845990799625 0.0235291 -0.020592080429196358 0.0917595773935318 443 90 90 54 2.5650079380572386 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 54.30040161768968 3.621164321899414 22.54474449157715 10.268623352050781 282793.0 7.713318347930908 75.64424438476556 36.90361022949219 0.7977425247492564 90.6998062133789 271.7470703125 259.5552978515625 90511.0 122.52596282958984 454.7979736328125 101.19027709960938 39.86695098876953 +sub-10220_ses-V3_task-rest_run-01_bold 0.0003928442437923251 0.005446349954853273 7 29.658060298144814 0.9925619363348421 0.9820659446153845 0.5309012855841464 565.814208984375 0.08386809616935058 0 0.0 2.646236095134313 2.3897249050408638 2.8559832198467565 2.693000160515318 0.0107594 -0.0195979755371809 0.09140172600746155 443 90 90 54 2.5411583161440556 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.20904587097544 3.9156765937805176 23.119365692138672 10.46049690246582 282795.0 7.620767593383789 79.41873703002916 36.9760627746582 0.6853706494096543 94.752685546875 278.1759338378906 265.8758544921875 90697.0 123.11151428222657 466.84516601562495 104.62724304199219 39.6412353515625 +sub-10220_ses-V3_task-rest_run-02_bold 0.0003579185520361991 0.005391527488687782 8 31.67211598326531 1.0131530717687078 0.990027909727891 0.5318326392931614 550.1734619140625 0.11982640429814284 0 0.0 2.595976373079011 2.35256657318407 2.797633222165377 2.637729323887586 0.0183769 -0.021365590393543243 0.09263445436954498 442 90 90 54 2.5741359203959027 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 55.278541191145486 3.683026075363159 22.545909881591797 10.291855812072754 282716.0 7.651584148406982 75.3427619934082 36.808815002441406 0.8130240416702947 89.67396545410156 269.940673828125 257.75341796875 90464.0 122.47229232788087 451.5431076049802 100.13146209716797 39.32746887207031 +sub-10221_ses-V1_task-cuff_run-01_bold 0.0007840362811791382 0.008006919863945578 9 38.95537959854547 1.004759664363637 0.9827662573863629 0.5418282785809422 465.234619140625 0.15742462143237 0 0.0 2.708198595255702 2.4220790704218915 2.9314957168461593 2.7710209984990555 0.0119531 -0.01883343607187271 0.1181909516453743 441 90 90 54 2.197360586497288 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 77.06384670565559 4.457892894744873 21.80738639831543 10.158730506896973 267037.0 6.920635223388672 67.55691833496081 37.17378616333008 5.492911605776477 88.4921875 252.87387084960938 234.46258544921875 103479.0 118.66961593627931 440.2061401367186 106.70140075683594 31.515153884887695 +sub-10221_ses-V1_task-cuff_run-02_bold 0.000863764172335601 0.008140247868480726 9 40.29969039384086 1.0314123088181824 0.99785257515909 0.5433580064428287 453.1461486816406 0.15494899402379733 0 0.0 2.709281928544884 2.425399903623267 2.9314582168476493 2.7709876651637355 0.01831 -0.019645409658551216 0.11923501640558243 441 90 90 54 2.1779528936497736 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 71.67863206146447 4.5251312255859375 21.877153396606445 10.208617210388184 266440.0 6.913832187652588 68.09093246459956 36.76023864746094 5.5412733718052145 88.10221862792969 251.05636596679688 232.67800903320312 104238.0 116.43503799438476 438.1332290649413 106.83283996582031 31.409835815429688 +sub-10221_ses-V1_task-rest_run-01_bold 0.0006787612612612613 0.00846520367117117 6 38.51916869020316 1.0085151120541767 0.9856519701580142 0.5413019230517704 480.44427490234375 0.1447088168537975 7 1.5765765765765767 2.727472206157811 2.439162403076394 2.955416549228964 2.7878376661680737 0.0172283 -0.0178315881639719 0.11451858282089233 444 90 90 54 2.201404034763124 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 58.08256935197032 4.330935478210449 21.517080307006836 10.063063621520996 267227.0 6.909910202026367 67.3558578491211 35.28278350830078 5.1812061444714725 89.69745635986328 254.29640197753906 236.1666717529297 103465.0 117.75946044921875 442.65497436523435 107.27950286865234 31.874000549316406 +sub-10221_ses-V1_task-rest_run-02_bold 0.002528526077097506 0.01033482195011338 9 40.000762141886334 1.0372089784318177 1.018620669681818 0.5441378766221199 454.1655578613281 0.1634453870936997 24 5.442176870748299 2.722227761957635 2.4343790699331334 2.9433832163737925 2.788920999565979 0.0113234 -0.02037019655108452 0.12098286300897598 441 90 90 54 2.1868476506340007 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 61.945458721321856 4.461254596710205 21.788654327392578 10.124716758728027 266302.0 6.8911566734313965 67.96791381835926 36.255882263183594 5.47469911796847 87.19113159179688 249.0983123779297 231.05442810058594 104374.0 115.20238418579103 434.50431213378897 105.6558837890625 29.45722770690918 +sub-10222_ses-V1_task-rest_run-01_bold 0.0008249545454545455 0.00873525809090909 10 51.218158930501154 1.1158628779726647 0.9932067322779045 0.4982673928220267 2069.74853515625 0.3680382913996677 271 61.59090909090909 2.5509660795410483 2.539279065764782 2.6687123939548973 2.4449067789034657 0.00578681 0.038964398205280304 0.014940492808818817 440 90 90 60 2.122830532928757 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 51.31077679793526 35.19832229614258 83.50126647949219 25.688634872436523 304583.0 0.16818180680274963 369.29250183105285 173.12684631347656 5.966480600422322 372.39599609375 1285.955078125 1167.453369140625 110492.0 650.1694396972656 2377.040393066406 549.9487915039062 31.53984260559082 +sub-10222_ses-V1_task-rest_run-02_bold 0.0006924263038548753 0.008182580113378685 9 50.065796661363656 1.1206005782500006 1.0082777703409092 0.4978393042930983 2246.89599609375 0.36217838873277086 262 59.41043083900227 2.5554007993220758 2.53786656582091 2.672029060489771 2.456306771655546 0.00680944 0.03945668414235115 0.013415655121207237 441 90 90 60 2.1171636493558665 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 39.33115001590647 34.37553024291992 83.58858489990234 24.723356246948242 304686.0 0.07709750533103943 373.40929412841797 173.63467407226562 5.764679516538935 377.0163269042969 1287.8988037109375 1169.3072509765625 110560.0 648.9418243408203 2381.8846191406246 552.2964477539062 32.6722412109375 +sub-10223_ses-V1_task-cuff_run-01_bold 0.0013204494382022473 0.009317466269662922 5 43.48149137261259 1.0367059648648638 1.0051872968693698 0.5306577182577424 546.7691650390625 0.2987684285780138 0 0.0 2.7828055407552594 2.5407623990391732 2.915241550825375 2.89241267240123 0.0270227 -0.02025590091943741 0.1125619187951088 445 90 90 54 2.4357445791566144 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 56.04457434593993 3.5715725421905518 20.510568618774414 9.395505905151367 280948.0 6.777528285980225 67.9699993133544 32.2674446105957 1.1277652339956417 85.63276672363281 247.43955993652344 232.07191467285156 92506.0 121.38483428955078 425.69383239746094 95.27709197998047 28.292369842529297 +sub-10223_ses-V1_task-cuff_run-02_bold 0.0007475112107623319 0.00760652340807175 4 42.626196425932534 1.045986797213483 1.0059603313932581 0.5315480889930497 552.5768432617188 0.2742104742248451 0 0.0 2.743924985776793 2.5046374004746514 2.8639540528633574 2.863183503992369 0.0208253 -0.021145474165678024 0.11708535254001617 446 90 90 54 2.4368629767796635 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 56.640601891809645 3.374084711074829 20.457565307617188 9.237668991088867 281097.0 6.800448894500732 68.5 32.56965255737305 1.1984827842854733 85.08341979980469 246.712158203125 231.0336456298828 92101.0 123.04484558105469 424.87445068359375 94.80729675292969 30.832218170166016 +sub-10223_ses-V1_task-rest_run-01_bold 0.0004695955056179775 0.007590352943820225 5 40.41342163092345 1.0357941780855868 0.9964946575225226 0.5298582376402694 566.0278930664062 0.17810363615093439 52 11.685393258426966 2.7841097082398893 2.539066565773226 2.8945832183129303 2.918679340633512 0.0198485 -0.022144025191664696 0.11389470100402832 445 90 90 54 2.4283391187331134 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 53.275798707431974 3.3983242511749268 20.357616424560547 9.27640438079834 280692.0 6.826966285705566 68.03427009582532 31.94800567626953 1.1437350371499813 86.99543762207031 251.51466369628906 235.17977905273438 92484.0 124.80325775146486 433.6159576416014 96.84747314453125 31.537086486816406 +sub-10223_ses-V1_task-rest_run-02_bold 0.0008050561797752811 0.008117606831460674 5 42.36659618765766 1.0306112277252255 0.9992177019369373 0.5317012209364179 542.3546142578125 0.2544036572827057 130 29.213483146067414 2.7444138744550233 2.5094749002824264 2.866358219434491 2.857408503648152 0.0188868 -0.021158872172236443 0.1158505380153656 445 90 90 54 2.428462730026397 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 54.9580489443565 3.375002145767212 20.204301834106445 9.224719047546387 280735.0 6.797752857208252 67.48516998291008 31.716732025146484 1.1774766946344402 84.4916763305664 244.72222900390625 229.02247619628906 92375.0 121.14314651489258 421.5986541748048 94.30708312988281 30.025527954101562 +sub-10223_ses-V3_task-cuff_run-01_bold 0.0011797297297297298 0.011230696126126127 6 39.56591474823926 1.0188647917155749 0.998269531354402 0.5356488305633561 496.5465393066406 0.2730945131042502 0 0.0 2.80056109509546 2.5402165657275293 2.9844498814086164 2.8770168381502335 0.0179076 -0.020318547263741493 0.11519423127174377 444 90 90 54 2.494276298443572 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 46.108638493119344 3.552903652191162 21.82697868347168 10.189189910888672 282074.0 7.549549579620361 72.49774932861328 32.46640396118164 1.0352749028271369 86.17292785644531 255.51121520996094 240.55406188964844 91734.0 124.04279327392578 433.7750152587889 96.44190216064453 28.70454216003418 +sub-10223_ses-V3_task-cuff_run-02_bold 0.0010024719101123596 0.012848460516853932 5 42.52939096220719 1.009050157545046 0.9784542277927929 0.5362971118603543 489.1143798828125 0.32152025902974407 3 0.6741573033707865 2.791851373528116 2.530774899436041 2.9584373824422605 2.8863418387060467 0.0281823 -0.0194106362760067 0.11538195610046387 445 90 90 54 2.49680674139892 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 7 46.89258897762056 3.5149335861206055 21.59589195251465 10.157303810119629 282222.0 7.573033809661865 71.30988731384282 32.01270294189453 1.0411785814863546 85.58446502685547 253.8207550048828 238.9797821044922 91515.0 123.81730499267579 431.2725891113281 95.7136459350586 27.183916091918945 +sub-10223_ses-V3_task-rest_run-01_bold 0.0012999550561797752 0.008946010561797753 5 40.19120426018018 1.0563688767567567 1.0186033708783788 0.534928246433409 510.47344970703125 0.2605339087008205 157 35.28089887640449 2.7541347063144386 2.508549900319183 2.9292915502670787 2.8245626683570544 0.0290465 -0.02044043503701687 0.11481984704732895 445 90 90 54 2.507820276972175 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 45.160027810082404 3.378333330154419 21.748416900634766 10.116853713989258 282641.0 7.705617904663086 72.61123657226562 32.61940002441406 1.0527391308706582 86.82719421386719 257.9090881347656 243.12472534179688 91114.0 126.07865142822266 436.9581985473632 96.94609832763672 30.75579833984375 +sub-10223_ses-V3_task-rest_run-02_bold 0.001174346846846847 0.011083125765765766 6 43.39060611593683 1.0333245003160276 0.995668930293453 0.5374075742380972 487.9275207519531 0.33406617079470435 225 50.67567567567568 2.775030540279278 2.5125957334917493 2.943787383024399 2.8687085043216847 0.0197478 -0.01864529214799404 0.11502590030431747 444 90 90 54 2.497729291813523 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 44.91346854785927 3.3625688552856445 21.68669891357422 10.094594955444336 282418.0 7.7094597816467285 72.34077072143539 32.11347579956055 1.082499424418419 84.798828125 252.02032470703125 237.00901794433594 91347.0 123.34076766967775 428.0849243164063 94.88927459716797 28.122631072998047 +sub-10224_ses-V1_task-cuff_run-01_bold 0.0008962642369020502 0.006729384533029612 11 33.531116215958896 1.1116485058219179 1.0064876676027394 0.43013554952932126 11436.8388671875 0.15610438166760132 0 0.0 2.307653427908672 2.375637405600651 2.3070749083250797 2.2402479698002846 0.00513877 0.001779347425326705 0.017276832833886147 439 90 90 60 2.5968226717351803 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 58.554746135918286 15.619670867919922 35.983360290527344 10.74031925201416 327104.0 0.0 134.3709640502929 93.31302642822266 2.6829585221975973 340.84149169921875 1226.9736328125 1156.3360595703125 90626.0 617.6161804199219 2060.5934448242188 445.2863464355469 41.05014419555664 +sub-10224_ses-V1_task-cuff_run-02_bold 0.0008833636363636364 0.006502187954545454 10 33.71041155387244 1.118613331753986 0.9920043367881534 0.43021142652273436 11679.431640625 0.1621069075567251 0 0.0 2.311685372351571 2.380354072079894 2.3139749080508984 2.240727136923921 0.00311173 0.001070030382834375 0.01913459226489067 440 90 90 60 2.5831232017432857 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 69.82458254287204 15.392106056213379 36.42195510864258 10.579545021057129 327029.0 0.0 136.9968170166015 95.95674896240234 2.652772951009151 342.2080993652344 1223.780029296875 1152.9249267578125 90607.0 611.5876892089843 2063.179223632812 446.3273620605469 43.043304443359375 +sub-10224_ses-V1_task-rest_run-01_bold 0.0018055056179775283 0.009886346719101123 5 33.722437970382856 1.0681736045945944 0.9903183651801803 0.43023825226273904 11858.9111328125 0.1742846067854842 51 11.460674157303371 2.342504828350498 2.400629071274238 2.347566573382752 2.2793188403945037 0.00272346 0.0013550221920013428 0.016765259206295013 445 90 90 60 2.59661424382749 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 59.33469634726212 15.325777053833008 36.109718322753906 10.633708000183105 326842.0 0.006741573102772236 132.84899215698252 94.29582977294922 2.606945370623544 344.7899169921875 1229.5072021484375 1159.266357421875 90696.0 616.8842620849609 2074.00048828125 446.4505920410156 35.689640045166016 +sub-10224_ses-V3_task-cuff_run-01_bold 0.0018110407239819006 0.006902704819004526 8 36.21761671480728 1.1689421215419504 1.0128365584126984 0.42612762884869937 10856.70703125 0.22173124391533128 1 0.22624434389140272 2.348918900173107 2.4309832367347384 2.346149906772379 2.2696235570122036 0.00946089 -0.0020791843999177217 0.020774053409695625 442 90 90 60 2.4624844706299633 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 132.74367486006386 16.66753578186035 39.11843490600586 11.524887084960938 328793.0 0.004524887073785067 148.0027160644529 107.2375717163086 2.8186050140754615 362.65386962890625 1283.370361328125 1201.8416748046875 89752.0 627.7283233642579 2217.3786865234374 488.0578918457031 39.64501190185547 +sub-10224_ses-V3_task-rest_run-01_bold 0.003859704545454546 0.010980392863636364 10 35.64250580667426 1.1169705908200451 1.0011975800000001 0.4260149232969747 10536.1162109375 0.20804853980513935 78 17.727272727272727 2.3729744482667723 2.4506874026184318 2.3658665726555754 2.30236936952631 0.00827266 -0.0026767232920974493 0.020214371383190155 440 90 90 60 2.4663435628096653 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 133.41329335938306 16.87807846069336 39.27622985839844 11.763635635375977 328919.0 0.011363635770976543 146.30749053955063 108.31551361083984 2.8057912763546407 363.136474609375 1290.458740234375 1207.529541015625 89591.0 635.3931579589844 2227.616943359375 489.60040283203125 33.07410430908203 +sub-10224_ses-V3_task-rest_run-02_bold 0.0008369020501138951 0.00640171077448747 11 35.722409844885824 1.1332402079223742 0.9839257828082191 0.4262790351439801 10897.8330078125 0.21044008819205812 113 25.74031890660592 2.341091123958074 2.4242499036689638 2.3356999071876245 2.2633235610176334 0.00873979 -0.002042315201833844 0.02068195305764675 439 90 90 60 2.464482091849227 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 153.91134208834706 16.531522750854492 39.40672302246094 11.448747634887695 328940.0 0.0 150.67506790161116 108.74687194824219 2.902185700604875 359.4078063964844 1279.512451171875 1197.76318359375 89571.0 627.6708679199219 2210.3634033203125 486.00738525390625 41.26213836669922 +sub-10231_ses-V1_task-cuff_run-01_bold 0.0016963800904977373 0.010127846085972851 8 34.96365330480726 1.013013703287982 0.9765891209070302 0.5143395600164226 723.7416381835938 0.2896842795451291 4 0.9049773755656109 2.786033319279668 2.450291569300828 2.9889748812288093 2.9188335073093676 0.0112526 -0.02129075862467289 0.07980101555585861 442 90 90 54 2.935237589123193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 57.87348076999905 4.877158164978027 21.172574996948242 9.988688468933105 289409.0 6.540724277496338 68.646157836914 33.446834564208984 0.6923552963380315 90.84461975097656 286.04901123046875 286.330322265625 85672.0 131.59751586914064 447.67027282714844 97.54871368408203 30.119640350341797 +sub-10231_ses-V1_task-cuff_run-02_bold 0.001343626126126126 0.009363103445945946 6 33.690178098397304 1.0108097237697506 0.9876232395711058 0.5147494465953488 708.758544921875 0.2515794453262589 5 1.1261261261261262 2.801076374098527 2.4832165679925056 3.005374880577132 2.914637673725943 0.00862402 -0.02083289995789528 0.07454927265644073 444 90 90 54 2.8963520490739882 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 50.7877419558189 5.319336891174316 21.229963302612305 10.182433128356934 288517.0 6.198198318481445 69.19144439697266 32.64502716064453 0.6918117549293235 92.62255096435547 286.4212646484375 286.9864807128906 86361.0 128.7364959716797 450.9842529296875 99.08492279052734 31.720373153686523 +sub-10231_ses-V1_task-rest_run-01_bold 0.0006480361173814899 0.009842675846501128 7 32.98977008235295 0.9945800287104075 0.964189876923076 0.5120627028807311 777.4649047851562 0.21651730051222898 115 25.959367945823928 2.790477763997714 2.4494415693346037 2.989562381205464 2.9324293414530755 0.00724041 -0.01885594055056572 0.0786953717470169 443 90 90 54 2.946951730258387 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 48.70847145567918 4.481273651123047 20.427881240844727 9.591422080993652 289446.0 6.29796838760376 66.18397521972656 31.85430145263672 0.5869718184637533 89.74929809570312 284.724365234375 284.7415466308594 85440.0 130.9434600830078 445.65813293457035 96.62183380126953 32.080543518066406 +sub-10231_ses-V1_task-rest_run-02_bold 0.0012349209932279908 0.009835701422121897 7 35.48502035680995 1.0252461203846148 0.9827041591176471 0.5166946315374423 686.585205078125 0.26681404702075745 161 36.3431151241535 2.7835652634166794 2.461183235534698 2.9829248814692146 2.906587673246126 0.0216839 -0.022634172812104225 0.07637035101652145 443 90 90 54 2.906024420636094 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 52.68235950203373 5.3514251708984375 21.682893753051758 10.347630500793457 288473.0 6.5033860206604 70.95259552001914 33.53233337402344 0.7507761988838952 92.58734130859375 286.92486572265625 287.29571533203125 86496.0 130.63713455200195 451.0654602050781 98.86154174804688 29.651643753051758 +sub-10232_ses-V1_task-cuff_run-01_bold 0.0006824489795918368 0.0096973614739229 9 32.956562176568134 1.0663462400454549 0.9619046060227266 0.43062913779630696 8482.7197265625 0.09187153545874609 0 0.0 2.3174383437044983 2.3517707398823604 2.320029074476994 2.28051521675414 0.0162783 -0.009859434328973293 0.012230410240590572 441 90 90 60 2.9229112649703883 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 41.962057231464335 17.834932327270508 32.946285247802734 12.45351505279541 331027.0 0.022675737738609314 128.47551422119142 61.83379364013672 5.822834224257434 265.8817443847656 1193.712646484375 1135.4853515625 87506.0 676.5068206787109 1900.0448303222656 388.4753112792969 36.48805236816406 +sub-10232_ses-V1_task-rest_run-01_bold 0.0015137188208616782 0.011326629070294785 9 32.8722638692727 1.0637511557272727 0.9658805672272724 0.4302371824425993 8487.353515625 0.08912514605264416 4 0.9070294784580499 2.3221480628686177 2.3515040732262897 2.31997490781248 2.294965207567083 0.0262839 -0.009803002700209618 0.01235994789749384 441 90 90 60 2.9269391591227785 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 42.95859418601755 17.814760208129883 32.872169494628906 12.485260963439941 331277.0 0.02947845868766308 127.90748291015629 61.580528259277344 5.666432271070953 266.09014892578125 1201.058349609375 1141.9013671875 87306.0 682.0487518310547 1911.4235229492188 390.13275146484375 34.48991775512695 +sub-10232_ses-V1_task-rest_run-02_bold 0.0007342857142857142 0.014634823809523809 9 33.094407402340906 1.0238275890000001 0.9342665382500004 0.43413897696535614 8496.208984375 0.09328689399667559 5 1.1337868480725624 2.3351716650861145 2.365545739334991 2.302845741826465 2.337123514096887 0.00882419 -0.009304511360824108 0.01311518345028162 441 90 90 60 2.9850579240285375 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 47.72188944067061 17.411333084106445 31.944955825805664 12.09523868560791 328719.0 0.013605441898107529 123.74897918701157 61.14453125 4.658428947463993 255.39588928222656 1157.4444580078125 1102.833251953125 88834.0 655.4005767822266 1838.597875976561 369.4491271972656 30.392742156982422 +sub-10233_ses-V1_task-cuff_run-01_bold 0.001668798185941043 0.009344908911564627 9 47.562060373340906 1.1390235934090904 1.0325232841136358 0.4187320424589899 9178.3056640625 0.3740684919167652 1 0.22675736961451248 2.4475382353715793 2.479504068140027 2.34865824000604 2.5144523979686717 0.00515317 -0.010292267426848412 0.018577096983790398 441 90 90 60 2.6693105202868708 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 52.608827731825464 15.179024696350098 30.279050827026367 10.587302207946777 336445.0 0.011337868869304657 124.25759887695307 61.87327575683594 2.0544377120555524 306.21282958984375 1062.1187744140625 1012.9387817382812 83495.0 518.9884460449218 1760.8429077148437 379.4735412597656 31.546430587768555 +sub-10233_ses-V1_task-rest_run-01_bold 0.0014043990929705214 0.009822563900226759 9 38.18497865825 1.0596881937954548 1.0141701345681822 0.41814265179848786 9526.8740234375 0.2744034781874716 147 33.333333333333336 2.449875738410702 2.481749901384119 2.3439665735258033 2.5239107403221834 0.0037499 -0.009838654659688473 0.017730701714754105 441 90 90 60 2.6758382984682676 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 53.13693322315615 14.910070419311523 29.948293685913086 10.494331359863281 336810.0 0.03401360660791397 121.43333625793451 61.19478988647461 2.122566832390623 302.3382568359375 1062.4754638671875 1011.7573852539062 83118.0 521.8242919921876 1759.025762939453 378.1062927246094 31.14822006225586 +sub-10233_ses-V1_task-rest_run-02_bold 0.0010022675736961453 0.009025999727891155 9 45.70771163588634 1.1018687033636374 0.9973228145454542 0.41910663998092984 9162.56640625 0.3677110747866629 260 58.956916099773245 2.4461326775580545 2.4796957347990776 2.35123740657022 2.507464891304866 0.0035231 -0.010438390076160431 0.01900351047515869 441 90 90 60 2.664360791432107 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 50.637678457556255 15.111785888671875 30.47267723083496 10.562358856201172 336614.0 0.01814058981835842 125.34172744750967 62.156314849853516 2.0624494032415246 304.0309143066406 1056.2396240234375 1007.0408325195312 83351.0 514.2811584472656 1751.6859741210938 377.9648742675781 31.912734985351562 +sub-10233_ses-V3_task-cuff_run-01_bold 0.000735159090909091 0.008962581340909092 10 44.90986880958995 1.1634482572209566 0.9747887361047839 0.41558027209072124 10059.306640625 0.34533860636017066 0 0.0 2.3756911019252307 2.421820737098823 2.3379540737647186 2.3672984949121507 0.00310289 -0.011684061959385872 0.018321344628930092 440 90 90 60 2.7264209294487856 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 60.86026970533023 16.08286476135254 32.3050537109375 11.125 338293.0 0.006818181835114956 130.90272216796853 66.53764343261719 2.1555319533557906 321.3002014160156 1158.1514892578125 1112.230712890625 81610.0 568.5061096191407 1905.8421203613284 407.9428405761719 35.3825798034668 +sub-10233_ses-V3_task-rest_run-01_bold 0.000661480637813212 0.009149705239179953 11 43.38515827331047 1.1584673037214617 0.9762471742922373 0.414871649975642 9955.787109375 0.346718304900159 247 56.264236902050115 2.377924434351084 2.422087403754894 2.340266573672828 2.3714193256255305 0.00340542 -0.011590342968702316 0.01839745230972767 439 90 90 60 2.7197374533452687 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 60.684559425542204 16.197175979614258 31.97929573059082 11.191344261169434 338323.0 0.006833713501691818 128.7091140747065 65.66100311279297 2.104961343176554 322.29541015625 1160.4820556640625 1114.69140625 81622.0 567.7357971191407 1910.6131774902344 409.8500671386719 34.751102447509766 +sub-10233_ses-V3_task-rest_run-02_bold 0.0008645227272727273 0.010187026022727273 10 45.555684834282445 1.1508850451480634 0.9997900452391807 0.41623500201625957 10013.416015625 0.3631070895049863 258 58.63636363636363 2.391359154513746 2.4383249031096734 2.356654073021647 2.3790984874099177 0.00483201 -0.011964873410761356 0.018674414604902267 440 90 90 60 2.7169157918115925 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 21 59.334905278800164 16.055908203125 32.49607467651367 11.125 338135.0 0.015909090638160706 131.9270446777343 66.33020782470703 2.172928987821802 319.80908203125 1152.2808837890625 1106.456787109375 81834.0 562.9502136230469 1899.0092407226546 407.244873046875 33.28575897216797 +sub-10234_ses-V1_task-cuff_run-01_bold 0.002355869074492099 0.013756385959367946 7 47.71929824624436 1.057191799932126 1.0120108855656105 0.5520727146453087 383.4097900390625 0.2237868134609405 5 1.1286681715575622 2.7586430420102404 2.527554066230692 2.847058220201404 2.901316839598626 0.00584654 -0.027409158647060394 0.1520928144454956 443 90 90 54 2.018519727236529 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 22.993194454657566 5.987303733825684 27.482877731323242 11.297968864440918 271343.0 6.905191898345947 108.86907958984375 43.25777053833008 3.937153767151843 93.9896240234375 258.0602111816406 236.35665893554688 99777.0 108.5530487060547 475.3991149902343 117.09346771240234 26.144668579101562 +sub-10234_ses-V1_task-cuff_run-02_bold 0.0008386848072562358 0.008462108185941043 9 44.32585969397726 1.0613704246818183 0.999608731090908 0.5503392087518799 393.7705993652344 0.15410744470909438 1 0.22675736961451248 2.7036569319573878 2.4746249016672413 2.7690540566343445 2.867291837570578 0.00533531 -0.025525890290737152 0.1521323025226593 441 90 90 54 2.030358555517093 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.625805774447723 5.651370525360107 27.08411407470703 11.01814079284668 272921.0 6.9818596839904785 107.6258544921875 43.05337905883789 3.876024955040572 93.36192321777344 258.02508544921875 235.9659881591797 98344.0 111.7308433532715 475.68491210937435 116.2182846069336 31.06637191772461 +sub-10234_ses-V1_task-rest_run-01_bold 0.002141156462585034 0.012146403922902494 9 43.8012555383182 1.0510368790681814 0.9930182797045439 0.5506119927890825 383.8456115722656 0.17398798688440528 42 9.523809523809524 2.7551777646063713 2.5172498999734763 2.8398332204884995 2.908450173357139 0.00472127 -0.03000757098197937 0.14815029501914978 441 90 90 54 2.010753829247266 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.37722979393064 5.95394229888916 27.3938045501709 11.328798294067383 271493.0 7.036281108856201 107.85215454101561 43.03208541870117 4.290387093647805 94.2982177734375 261.9349060058594 239.33560180664062 99223.0 113.00476608276368 484.5129272460937 119.0271987915039 28.913808822631836 +sub-10234_ses-V1_task-rest_run-02_bold 0.0030160270880361176 0.009105949819413093 7 45.533542477782824 1.0996798322624437 1.0362239546832588 0.5519628393496404 385.6142578125 0.16867400594012602 59 13.318284424379232 2.710261098655927 2.4822249013652447 2.772379056502221 2.8761793381003145 0.0067503 -0.025385653600096703 0.15365150570869446 443 90 90 54 2.0252810527552594 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 23.05903295190183 5.729605674743652 27.260251998901367 11.047404289245605 272488.0 6.943566799163818 108.57923583984369 43.28063201904297 3.867133677356719 92.67938232421875 256.3584899902344 234.2200927734375 98598.0 111.51625328063965 473.34595794677716 115.6476058959961 29.630277633666992 +sub-10234_ses-V3_task-cuff_run-01_bold 0.007203123595505617 0.012284032719101124 5 46.57327488729728 1.044061963288288 1.0242024207432432 0.5543754916645102 355.8885498046875 0.2380256126096767 8 1.797752808988764 2.6932680383980885 2.491024901015564 2.8749957190912676 2.713783495087435 0.0247242 -0.040655527263879776 0.14604780077934265 445 90 90 54 2.1077580197098116 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 18 30.255920714137133 6.183616638183594 28.030624389648438 12.231460571289062 269349.0 7.597753047943115 105.76764221191401 44.05289840698242 2.8980394983992532 96.28919982910156 265.63909912109375 245.35955810546875 101191.0 111.18426895141602 478.0426940917969 116.40726470947266 26.168685913085938 +sub-10234_ses-V3_task-cuff_run-02_bold 0.0005298866213151928 0.005864933378684807 9 40.26365450074999 1.076942169909091 1.0039554100909096 0.5537485260611879 373.98626708984375 0.13783992902271622 0 0.0 2.610181929405812 2.39267073825714 2.7598082236684074 2.6780668262918885 0.00950204 -0.03930440545082092 0.14958441257476807 441 90 90 54 2.123546938691816 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.9068209015685 5.254665851593018 27.562849044799805 11.62358283996582 271442.0 7.863945484161377 105.59637451171875 44.5283088684082 2.9682102720193075 95.10842895507812 265.0184020996094 243.78912353515625 99094.0 116.47539558410645 476.4835586547848 114.80221557617188 37.31931686401367 +sub-10234_ses-V3_task-rest_run-01_bold 0.0023567945823927765 0.008417300812641084 7 43.10796615975113 1.0618825564253398 1.0111582806108597 0.5522785389834438 376.0509948730469 0.22433053204079456 84 18.96162528216704 2.707588872989549 2.4784082348502383 2.875395719075373 2.768962665043036 0.00801047 -0.04384496062994003 0.14373354613780975 443 90 90 54 2.0797972322253147 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.50481294236782 5.71287202835083 28.03562355041504 11.997742652893066 270197.0 7.819413185119629 106.20451812744129 44.83955001831055 3.148455830506605 97.97225952148438 271.0763244628906 249.2550811767578 100519.0 114.98781280517578 490.96886596679684 119.84526062011719 32.091651916503906 +sub-10234_ses-V3_task-rest_run-02_bold 0.0028442986425339365 0.009665393642533935 8 41.79761618430838 1.0659708877551017 1.0089707346031749 0.5546406020519893 365.1385498046875 0.16442287486558038 43 9.728506787330316 2.635676373722438 2.40932490426203 2.7929040556866305 2.7048001612186527 0.00701566 -0.03629210218787193 0.14339083433151245 442 90 90 54 2.1118511235973476 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 26.397447340080063 5.608396053314209 26.950469970703125 11.687783241271973 270762.0 7.565611362457275 101.57443504333489 41.58099365234375 3.1228196361936593 94.64837646484375 262.6934814453125 241.64480590820312 99582.0 114.3761375427246 472.57219238281243 114.42264556884766 32.84907913208008 +sub-10235_ses-V1_task-cuff_run-01_bold 0.0005367937219730942 0.02683285919282511 4 44.1233465043596 1.0947526621573036 0.9596310033932579 0.4388764390901629 174479.140625 0.5454715715890551 38 8.52017937219731 2.5951132296401966 2.6525791549295774 2.7420078873239437 2.390752646667069 0.00559824 -0.01717466674745083 0.043854113668203354 446 96 96 54 4.808870255232174 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 143.99822862343171 77.74668884277344 627.0099487304688 52.82780075073242 342695.0 0.30609079003334044 2504.400952148436 1533.2645263671875 1.9868207081291818 3715.27392578125 22455.28515625 22261.3984375 88337.0 15471.9486328125 30289.8109375 4629.21044921875 31.219392776489258 +sub-10235_ses-V1_task-cuff_run-02_bold 0.0009423595505617978 0.02022038404494382 5 44.99496078497749 1.1430010183108101 0.9949526252252251 0.4386385486651282 246096.890625 0.5282889101551683 32 7.191011235955056 2.5643104934055554 2.618258028169014 2.6953374647887323 2.3793359872589193 0.00414739 -0.017346598207950592 0.044580794870853424 445 96 96 54 4.766463508478015 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 136.0052299638058 64.930419921875 620.486328125 44.141387939453125 342842.0 0.31170298904180527 2467.0836059570315 1523.341552734375 1.973146801000147 3755.680419921875 22412.4296875 22223.56640625 88331.0 15389.87841796875 30265.2294921875 4662.458984375 36.85149383544922 +sub-10235_ses-V1_task-rest_run-01_bold 0.0012452125279642057 0.033961426845637584 3 43.474188004999995 1.0887656397982057 0.9785074156053808 0.4399058289763781 223709.796875 0.5061783812048721 343 76.7337807606264 2.6015016548555145 2.6576901408450704 2.765016338028169 2.3817984856933045 0.00370975 -0.017626812681555748 0.04230785742402077 447 96 96 54 4.8416078984271635 0.7999997138977051 2.21875 2.21875 2.4000015258789062 9 163.5903931035138 67.51033020019531 629.2843017578125 46.11577224731445 341614.0 0.5050178498029709 2442.1635253906243 1607.411865234375 1.982167660286784 3663.487060546875 22526.619140625 22323.935546875 88941.0 15573.138671875 30325.6796875 4610.82568359375 28.904251098632812 +sub-10236_ses-V1_task-cuff_run-01_bold 0.0015727891156462584 0.014117404535147392 9 36.53783470509087 1.0757316997954536 0.9918033817045452 0.4224223335401145 5128.6796875 0.19457474951561726 0 0.0 2.480998037010315 2.475258234975408 2.5743915643695368 2.393344311686 0.00362958 -0.001414996455423534 0.016382034868001938 441 90 90 60 2.731366308917824 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 205.6524657585362 21.576738357543945 44.22282791137695 15.600907325744629 341275.0 0.06802721321582794 171.22971191406248 106.83891296386719 5.783334610308568 296.69854736328125 1176.1202392578125 1118.91162109375 77927.0 616.5993408203125 1914.3596435546863 409.65008544921875 33.35346221923828 +sub-10236_ses-V1_task-cuff_run-02_bold 0.0016736425339366513 0.012757667692307692 8 36.5734090914966 1.0765038904761914 1.0194846686167798 0.422447474313399 5319.2392578125 0.2167752842265449 0 0.0 2.4882771984480017 2.4694707352053826 2.5771540642597652 2.418206795878858 0.00431815 -0.001639913534745574 0.01770673878490925 442 90 90 60 2.753131367636148 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 239.8575579121943 21.420583724975586 44.27809524536133 15.34615421295166 341421.0 0.029411766678094864 170.11312866210938 110.09232330322266 6.272554324823101 293.239990234375 1166.437255859375 1111.8824462890625 77891.0 609.5859985351562 1891.7670288085938 403.8584289550781 31.855308532714844 +sub-10236_ses-V1_task-rest_run-01_bold 0.0008117233560090703 0.010168665419501134 9 37.49377093763639 1.0696484045227275 0.9840010043863643 0.4220755513418085 5587.8154296875 0.21867230437281693 82 18.594104308390023 2.482509146468612 2.473987401692573 2.572179064457454 2.4013609732558105 0.00870148 -0.0014591957442462444 0.01675126701593399 441 90 90 60 2.723651235080344 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 216.71463553475553 20.968233108520508 43.9375114440918 15.00907039642334 340987.0 0.020408162847161293 169.62290344238284 107.79472351074219 5.6295831466821795 297.46514892578125 1176.7838134765625 1119.3526611328125 78350.0 614.1044494628907 1913.371246337891 410.972412109375 35.345359802246094 +sub-10237_ses-V1_task-cuff_run-01_bold 0.0027223266219239374 0.028344348322147654 3 44.882975001121096 1.1758965936995518 1.2171453854708512 0.4808241692919582 293614.625 0.4662218217229981 11 2.460850111856823 2.5139429234910864 2.520234366197183 2.7554208450704225 2.266173559205653 0.00511542 -0.008294290862977505 0.0350150540471077 447 96 96 54 4.586238020760785 0.7999997138977051 2.21875 2.21875 2.4000015258789062 28 153.9961105976774 50.214298248291016 569.2109985351562 34.211181640625 317333.0 0.25703215003013613 2657.516845703125 1331.5838623046875 2.723083680900185 3321.521240234375 19698.189453125 19552.435546875 109693.0 13157.8298828125 26676.462890625 4263.2646484375 29.842803955078125 +sub-10237_ses-V1_task-cuff_run-02_bold 0.0007892152466367712 0.0218988302690583 4 49.864662898943806 1.1742907684044943 1.0390153142921343 0.4814149775628051 376281.875 0.56453780104165 47 10.538116591928251 2.4746646040951945 2.4513667605633804 2.6614535211267607 2.3111735305954424 0.00583546 -0.007501556538045406 0.03434157744050026 446 96 96 54 4.582016093786967 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 116.29614838435467 44.02443313598633 565.5149536132812 29.974729537963867 317701.0 0.22461071610450745 2694.5615234375 1279.3677978515625 2.4758638097477066 3344.403076171875 19728.533203125 19551.05078125 109509.0 13226.571484375003 26785.15468749999 4266.890625 35.24604797363281 +sub-10237_ses-V1_task-rest_run-01_bold 0.0006782142857142858 0.01927402544642857 2 45.641395517651034 1.1897403618120803 0.9819202697762858 0.4807648088110524 448184.4375 0.4703378974266908 311 69.41964285714286 2.498501780454492 2.4635132394366197 2.6890185915492957 2.3429735103775595 0.00682891 -0.00818683858960867 0.03314828500151634 448 96 96 54 4.548419544021405 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 130.25603687730418 41.0233154296875 559.9135131835938 27.830257415771484 317016.0 0.13035542890429497 2672.5966186523438 1298.905029296875 2.466572442948574 3424.469482421875 20041.916015625 19847.21875 110105.0 13443.4025390625 27239.319140624997 4363.52197265625 37.55665588378906 +sub-10237_ses-V1_task-rest_run-02_bold 0.0006643370786516854 0.01654727595505618 5 45.28193174828827 1.185377362950451 0.9956565449549551 0.48064856779822074 432013.375 0.4592228156854443 315 70.78651685393258 2.461298782566409 2.4399864788732395 2.6515154929577465 2.292394375868241 0.00784201 -0.007152419537305832 0.032992713153362274 445 96 96 54 4.573311274730258 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 76.58523952823887 40.79349899291992 554.62353515625 27.71432876586914 317936.0 0.16497983783483505 2672.6849975585938 1227.6065673828125 2.6310794969371702 3226.492919921875 19586.130859375 19405.255859375 109353.0 13116.30390625 26596.538281249996 4243.1328125 40.159122467041016 +sub-10238_ses-V1_task-rest_run-01_bold 0.0007635440180586907 0.008787600564334088 7 39.29251395522624 1.0059370813574662 0.9843115325791855 0.543989576235985 504.6283264160156 0.16215092679851276 14 3.160270880361174 2.773673597583899 2.4657415686868998 2.935379050025183 2.9199001740396127 0.00262857 -0.024620726704597473 0.13883420825004578 443 90 90 54 2.5611940661068675 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 72.41352002020241 4.116480350494385 23.12554931640625 9.855530738830566 277458.0 6.880361557006836 76.90338935851987 40.82323455810547 0.8898639981262639 83.80218505859375 253.019287109375 236.02935791015625 95775.0 135.24176177978515 427.3417755126954 92.15550231933594 30.80961799621582 +sub-10238_ses-V1_task-rest_run-02_bold 0.0005262076749435666 0.008891972144469525 7 39.568533478710386 1.0025982226470598 0.9809851489592759 0.5443100505851719 507.2098083496094 0.18338034652085594 29 6.54627539503386 2.784122208541003 2.4739332350280585 2.950645716085207 2.9277876745097444 0.0072108 -0.025033222511410713 0.13950709998607635 443 90 90 54 2.5523975364250693 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 75.61554793967645 3.9926512241363525 23.10479736328125 9.787810325622559 276903.0 6.92550802230835 76.95598602294884 40.99263000488281 0.8549248125734752 83.36541748046875 250.82606506347656 234.26524353027344 96358.0 133.10123901367186 423.46716766357406 91.78195190429688 30.972797393798828 +sub-10238_ses-V3_task-cuff_run-01_bold 0.0007449213483146067 0.006791053640449438 5 37.46923013617115 1.027639214842342 1.003315837117117 0.5511135084298905 449.78790283203125 0.20332062040328408 0 0.0 2.722627669590274 2.430833236740699 2.953270715980899 2.7837790560492257 0.00431125 -0.022341610863804817 0.12898662686347961 445 90 90 54 2.6871350305031125 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 46.77133996104145 4.167945384979248 24.10888671875 10.766292572021484 277960.0 7.7932586669921875 81.22955436706535 38.51165008544922 0.6230609273924359 83.82865142822266 257.0660400390625 243.46292114257812 95472.0 133.565283203125 424.9088836669922 90.6026840209961 35.157325744628906 +sub-10238_ses-V3_task-cuff_run-02_bold 0.0005042081447963801 0.006209220294117647 8 37.666623597664405 1.0306113728117912 1.000907738684807 0.5525122726698319 443.5329284667969 0.1898053713675731 0 0.0 2.738894335610562 2.4513457359256057 2.9629832155949587 2.8023540553111213 0.00147368 -0.023370470851659775 0.12866953015327454 442 90 90 54 2.690656541298169 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 47.14474090211529 4.316989421844482 24.447824478149414 10.929864883422852 277796.0 7.839366912841797 82.75679206848145 38.765533447265625 0.5699480467446643 84.99974060058594 258.5403747558594 245.48643493652344 95594.0 132.4630157470703 426.471401977539 91.23615264892578 36.17909240722656 +sub-10238_ses-V3_task-rest_run-01_bold 0.00048675675675675684 0.009425172837837838 6 36.53177961011291 0.9830939823702031 0.9694356258916479 0.5504518124563388 453.51727294921875 0.19939939405801801 65 14.63963963963964 2.761623501374052 2.455641569088238 2.994316547683217 2.8349123873507027 0.0063215 -0.02307334914803505 0.1290416121482849 444 90 90 54 2.6789746551985107 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 49.4968810608531 4.31089973449707 24.235153198242188 10.849099159240723 278081.0 7.695946216583252 80.99774932861328 38.86515808105469 0.5923003493978585 84.4949722290039 258.6204833984375 244.7916717529297 95444.0 133.6699287414551 427.7726486206052 91.3746566772461 32.07029724121094 +sub-10238_ses-V3_task-rest_run-02_bold 0.0007172972972972973 0.008392992004504505 6 38.51869032889391 1.0269265845823927 0.9955193388713313 0.5543164329825653 424.2960510253906 0.20248165332363355 66 14.864864864864865 2.7549735016383 2.4657249020208956 2.9772332150287144 2.8219623878652897 0.00428646 -0.02252388373017311 0.1275864839553833 444 90 90 54 2.68353553770959 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 42.99789279703117 4.708263397216797 24.661479949951172 11.119369506835938 277631.0 7.682432651519775 83.625 38.44731903076172 0.5881683257984909 84.34637451171875 257.4219970703125 244.0979766845703 95868.0 132.50450134277344 425.2152114868163 90.96086120605469 33.71118927001953 +sub-10243_ses-V1_task-cuff_run-01_bold 0.0007910913140311806 0.007851315322939867 1 35.197047889285706 1.1376694524776783 1.0081220970535703 0.45297465883504456 1379686.75 0.15519395648308107 0 0.0 2.780271167796442 2.8260461971830986 3.068498028169014 2.4462692780372124 0.00300379 -0.01945897936820984 0.05660802870988846 449 96 96 54 4.020149229503981 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 238.10483763306553 19.814027786254883 505.4324035644531 13.440910339355469 330295.0 0.057879626750946045 2432.236596679687 1387.362548828125 1.210165618974485 3579.560791015625 17416.798828125 17267.61328125 97123.0 10217.1435546875 24706.0205078125 4295.24462890625 46.175071716308594 +sub-10243_ses-V1_task-cuff_run-02_bold 0.0011492650334075725 0.008536165055679288 1 36.62466818508931 1.1487833833035719 1.0168406883482148 0.4549310219910854 1106304.625 0.1687294802070222 0 0.0 2.807731280234721 2.8694354929577464 3.084214084507042 2.4695442632393756 0.00299208 -0.021543296054005623 0.05960623174905777 449 96 96 54 3.8291819115123658 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 204.06187716461906 21.82961082458496 525.0810546875 14.948308944702148 330089.0 0.17561849057674417 2570.5237304687494 1356.1826171875 0.9682739709381609 4005.59033203125 17410.345703125 17252.310546875 97470.0 10028.056884765625 24908.041699218753 4505.458984375 42.84731674194336 +sub-10243_ses-V1_task-rest_run-01_bold 0.0012619955156950669 0.010774985470852018 4 34.58686312137081 1.1341533208988757 1.0219405112808977 0.4510576582734533 1008062.375 0.16053336346456304 44 9.865470852017937 2.7541880384930173 2.7886422535211266 3.067344225352113 2.4065776366058116 0.00497293 -0.017719577997922897 0.053191088140010834 446 96 96 54 4.2762468687835264 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 254.64348759711982 23.14670181274414 477.4077453613281 15.771244049072266 331115.0 0.10469365790486336 2260.224365234375 1365.14208984375 1.5466752653746996 2974.06591796875 17015.7265625 16971.1328125 96294.0 9999.328564453126 23709.825488281247 3968.677490234375 44.216064453125 +sub-10243_ses-V1_task-rest_run-02_bold 0.002994843049327354 0.010442919618834083 4 35.23949320937079 1.1591095112134828 1.1893893759550567 0.4530735402050157 1071066.5 0.17623904328680354 53 11.883408071748878 2.756972627614191 2.7963808450704226 3.0491177464788732 2.425419291293277 0.00442366 -0.019283641129732132 0.0566643662750721 446 96 96 54 4.155910089367034 0.7999997138977051 2.21875 2.21875 2.4000015258789062 8 245.83283729985854 22.162235260009766 497.62884521484375 15.10963249206543 331072.0 0.12969515919685365 2392.8333007812503 1356.214599609375 1.409808409023345 3318.14208984375 17126.46484375 17034.5 96667.0 10184.13095703125 24034.577148437496 4098.84033203125 41.56837844848633 +sub-10244_ses-V1_task-cuff_run-01_bold 0.0009351454138702461 0.01991656577181208 3 60.87664503271304 1.1775142856502228 0.9861209492152466 0.5135029318861398 175105.140625 0.7556451215125624 182 40.7158836689038 2.584985168833603 2.5979808450704223 2.759905352112676 2.3970693093177102 0.0116997 -0.02423778921365738 0.040088240057229996 447 96 96 54 4.2816629721658925 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 143.3633958343071 62.86278533935547 699.357421875 42.63163375854492 301522.0 0.20053761601448059 3318.4993530273455 1595.4345703125 1.6263329668597164 3691.892333984375 20390.0078125 19902.2578125 123430.0 13514.16796875 28652.770996093743 4648.2353515625 32.81171798706055 +sub-10244_ses-V1_task-cuff_run-02_bold 0.0013774776785714286 0.026976086160714285 2 63.84682771821027 1.163527022774049 0.9907885253243852 0.5142102449941779 119625.0234375 0.8513514204591666 204 45.535714285714285 2.583262278937202 2.6082478873239436 2.769252957746479 2.3722859917411854 0.0125795 -0.02397991344332695 0.041077613830566406 448 96 96 54 4.308011281948264 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 140.25766828359625 78.11581420898438 718.5535888671875 53.66877746582031 301818.0 0.7644152790307999 3359.873120117185 1651.2440185546875 1.9423378232361745 3550.974365234375 20374.734375 19868.7421875 123309.0 13516.0037109375 28538.074999999993 4612.0263671875 28.942794799804688 +sub-10244_ses-V1_task-rest_run-01_bold 0.000915269058295964 0.025815772421524667 4 64.95995220188765 1.1734414671910112 0.9879414424269669 0.5128945001480729 176927.109375 0.8993784941075641 394 88.34080717488789 2.579546535322962 2.585532394366197 2.761108732394366 2.3919984792083238 0.0134497 -0.023306895047426224 0.03931168466806412 446 96 96 54 4.322419387378137 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 128.0936024961236 62.826446533203125 688.8060913085938 42.78974151611328 301508.0 0.371065591275692 3260.2475830078115 1565.482666015625 1.6338331508265993 3641.908203125 20505.9140625 20022.4921875 123503.0 13629.916113281251 28735.1966796875 4632.22314453125 29.850757598876953 +sub-10244_ses-V1_task-rest_run-02_bold 0.0013841071428571429 0.03196927700892858 2 67.89122918131986 1.1600191577181207 0.986178877897092 0.5164312767477509 178405.296875 0.969559087032924 393 87.72321428571429 2.6111338669267585 2.60271323943662 2.819452394366197 2.4112359669774586 0.0199492 -0.02382042445242405 0.041412487626075745 448 96 96 54 4.430197166503656 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 146.36919667066337 60.998355865478516 692.02490234375 41.614341735839844 299875.0 0.42114816904068 3282.286767578125 1608.93994140625 1.7947322218736979 3401.55859375 20050.87109375 19623.392578125 124722.0 13371.97001953125 27831.96376953125 4429.44482421875 26.595911026000977 +sub-10244_ses-V3_task-cuff_run-01_bold 0.0007945291479820628 0.027932354260089685 4 71.98316501238203 1.1482182881573038 0.971299617258427 0.4948522381396272 466753.09375 0.9399782178607294 228 51.12107623318386 2.6404500433554396 2.652831549295775 2.7778118309859154 2.4907067497846285 0.0122669 -0.014153989031910896 0.042597152292728424 446 96 96 54 4.156587242621105 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 164.85079810553165 38.57475662231445 595.2646484375 26.672752380371094 306628.0 0.5312527298927308 2914.2827270507805 1520.7196044921875 0.8642439534148947 4410.49267578125 20505.546875 20113.49609375 118298.0 13478.977001953126 28938.405371093744 4838.92431640625 25.09604835510254 +sub-10244_ses-V3_task-cuff_run-02_bold 0.001417573033707865 0.030078182696629215 5 59.521420603333354 1.1167113365765768 0.9601011381531543 0.4947724048884178 350936.28125 0.6599975451110555 129 28.98876404494382 2.6103500046906123 2.644507042253521 2.7718445070422537 2.4146984647760616 0.00737352 -0.014220413751900196 0.04370266944169998 445 96 96 54 4.159124528529136 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 129.64714462536142 44.919273376464844 603.5550537109375 31.30029296875 307378.0 0.6836389094591141 2943.1729492187496 1501.5682373046875 0.9539736925033244 4326.677734375 20346.669921875 19937.599609375 117588.0 13382.524462890626 28691.0541015625 4793.6806640625 25.2271671295166 +sub-10244_ses-V3_task-rest_run-01_bold 0.0005607399103139014 0.02067746659192825 4 67.07293301694378 1.1654716585842704 0.9719059322022479 0.493563719967431 473656.09375 0.7826232968060827 375 84.08071748878923 2.599342978905648 2.637412957746479 2.7313216901408452 2.42929428882962 0.0055609 -0.01364305429160595 0.04300428926944733 446 96 96 54 4.104515488228025 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 161.8650242065756 39.00535583496094 594.26171875 26.873281478881836 306864.0 0.43802095651626594 2924.0558227539027 1532.2333984375 0.9056553328763441 4487.30126953125 20661.58984375 20225.169921875 118029.0 13589.617578125 29293.246874999997 4927.5205078125 31.15630531311035 +sub-10244_ses-V3_task-rest_run-02_bold 0.0011462107623318387 0.039320905605381165 4 66.33258732152807 1.0845373399775275 0.9386405734157307 0.4945131183078211 310436.0 0.8073021270020198 373 83.6322869955157 2.6527254704908954 2.6663481690140847 2.804367323943662 2.4874609185149392 0.00700416 -0.013809462077915668 0.044804006814956665 446 96 96 54 4.173632444720992 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 127.87314791971258 47.63118362426758 603.7595825195312 33.227840423583984 307953.0 0.7401756286621094 2942.0106445312485 1487.8310546875 0.9021181674091032 4326.85888671875 20376.087890625 19991.376953125 117425.0 13392.7189453125 28680.728515625 4789.90234375 22.534109115600586 +sub-10246_ses-V1_task-cuff_run-01_bold 0.001121191011235955 0.010188244584269665 5 41.05181257560808 1.009120243445946 0.9859637592792797 0.5482410623919677 465.5298156738281 0.24079140268192972 0 0.0 2.733872205616374 2.514433233418733 2.908016551112471 2.7791668323179186 0.0264938 -0.026358449831604958 0.12863823771476746 445 90 90 54 2.1645680797896705 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 31.100767230886454 5.244080543518066 23.891494750976562 10.25168514251709 269022.0 6.575281143188477 81.41573333740234 37.16530990600586 2.3784992630638193 92.55769348144531 257.9209289550781 239.4157257080078 102113.0 109.20943756103516 459.7289916992185 110.60615539550781 27.13699722290039 +sub-10246_ses-V1_task-cuff_run-02_bold 0.0007456404494382023 0.012887630292134833 5 40.086398734932395 0.9607585388288289 0.954377295518017 0.5476885596118868 469.6991271972656 0.20613522383513969 0 0.0 2.755356927849966 2.5259207329622613 2.934858216712546 2.80529183387509 0.0149683 -0.025151696056127548 0.13054463267326355 445 90 90 54 2.186187741166392 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.407085795513666 5.334035873413086 23.65926170349121 10.233708381652832 269273.0 6.424719333648682 79.5393295288086 36.91291809082031 2.2834334840174657 90.79523468017578 254.69100952148438 236.39663696289062 101874.0 109.58348655700684 453.06224975585934 108.1313705444336 24.232234954833984 +sub-10246_ses-V1_task-rest_run-01_bold 0.0008492134831460675 0.008684417505617978 5 38.08382817880629 1.0060958658333339 0.9877184791891896 0.5461331392338895 471.41912841796875 0.15498470456168165 27 6.067415730337078 2.7398597054806912 2.5224915664318575 2.9148332175082676 2.7822543325019478 0.0218941 -0.024653451517224312 0.12438344955444336 445 90 90 54 2.158146980905107 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 31.098365330228106 5.300719261169434 23.368566513061523 10.238202095031738 269136.0 6.429213523864746 79.41741752624512 36.20711898803711 2.277204373183846 93.24067687988281 258.4209899902344 239.89437866210938 102183.0 108.42044830322266 460.9503479003905 111.15702819824219 28.493621826171875 +sub-10246_ses-V1_task-rest_run-02_bold 0.001267056179775281 0.010398255280898877 5 40.80561835504506 1.0135790152477475 0.9947994622072075 0.5471173558632209 481.4129333496094 0.22283450973140803 100 22.471910112359552 2.721569428114434 2.4990665673626835 2.892908218379489 2.7727334986011285 0.0185334 -0.025189204141497612 0.13266339898109436 445 90 90 54 2.190551724413941 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.71753692899728 4.894254207611084 23.223995208740234 9.932584762573242 269592.0 6.444943904876709 78.70438194274898 36.526466369628906 2.3330082532146132 90.118896484375 253.27525329589844 234.75619506835938 101628.0 110.45247077941895 449.363264465332 107.16708374023438 26.652423858642578 +sub-10246_ses-V3_task-cuff_run-01_bold 0.0012624943820224719 0.010775543258426966 5 40.59583919148648 1.0169889732207205 0.9976433613288288 0.5535770910421833 415.47454833984375 0.23563639535136816 1 0.2247191011235955 2.7062944297658684 2.4392915697379283 2.875316552411852 2.8042751671478254 0.0248652 -0.021144667640328407 0.12561625242233276 445 90 90 54 2.32825570628315 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 35.857415655262436 4.194599151611328 23.40492057800293 10.662921905517578 271055.0 7.57752799987793 75.83145904541016 36.05591583251953 1.1924511150349826 88.37642669677734 249.09054565429688 232.86293029785156 100519.0 112.62763900756838 435.1597717285156 100.01554870605469 27.232683181762695 +sub-10246_ses-V3_task-cuff_run-02_bold 0.0012368314606741571 0.01204475991011236 5 39.49891522567567 1.000778596711711 0.9869775183333337 0.5531091120927588 420.0501708984375 0.20749352554795686 0 0.0 2.6990499855520333 2.4288540701526773 2.8657498861253305 2.802546000378092 0.0138982 -0.019890930503606796 0.12374923378229141 445 90 90 54 2.335329368693477 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 34.97367325333124 3.97137451171875 22.963342666625977 10.532584190368652 271170.0 7.696629524230957 74.01123809814453 34.97776794433594 1.1867737240526823 87.67344665527344 248.02952575683594 231.7393341064453 100381.0 113.33932495117188 433.5528259277344 99.23147583007812 27.10637855529785 +sub-10246_ses-V3_task-rest_run-01_bold 0.0009492584269662922 0.01046534188764045 5 39.49293658945949 0.9991425516891883 0.9841507779504508 0.553112522603747 425.9452819824219 0.2274344396641147 94 21.123595505617978 2.711899984934215 2.443687402896587 2.8927040517209353 2.799308500185122 0.0154294 -0.021297108381986618 0.12791810929775238 445 90 90 54 2.335547165133738 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 34.543940818799314 4.064662933349609 23.50897979736328 10.600000381469727 271086.0 7.649438381195068 76.49662780761719 36.319156646728516 1.1889529748892702 88.78620910644531 250.68348693847656 234.30450439453125 100458.0 113.74247207641602 438.07898254394524 100.3205337524414 27.935590744018555 +sub-10246_ses-V3_task-rest_run-02_bold 0.0006955829596412556 0.013245947421524663 4 40.41563350373033 0.985681036674157 0.9715984484943823 0.5541181686104539 409.9571533203125 0.20967364126120622 89 19.955156950672645 2.7149999849926054 2.4472415694220238 2.8929665517105043 2.8047918338452873 0.014587 -0.019633157178759575 0.1283145248889923 446 90 90 54 2.3400837821068405 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.77214233986286 4.10208797454834 23.017698287963867 10.544843673706055 271064.0 7.540359020233154 74.12164039611791 34.952091217041016 1.1122463776356728 86.3499526977539 245.31117248535156 228.98431396484375 100559.0 112.61368408203126 428.59284667968745 97.85255432128906 26.055667877197266 +sub-10247_ses-V1_task-cuff_run-01_bold 0.001320608108108108 0.01639760015765766 6 56.03347847203156 1.0819663574040639 0.9993239437697505 0.4418876842376997 10756.2802734375 0.4866707160165201 66 14.864864864864865 2.4441327553297056 2.3683332392242256 2.5437040655889485 2.4203609611759433 0.0126091 6.517309429909801e-06 0.02210966870188713 444 90 90 60 2.795994609566499 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 105.75687710311439 13.333402633666992 31.40831756591797 9.265766143798828 324253.0 0.01576576568186283 116.86261444091639 83.36387634277344 4.417833384962453 247.55783081054688 1013.6393432617188 955.0270385742188 93407.0 577.5457214355469 1657.9858764648438 341.56787109375 25.711669921875 +sub-10247_ses-V1_task-rest_run-01_bold 0.0010342986425339368 0.016138287601809954 8 59.21249867993191 1.0921545922675735 1.0105693656689354 0.4409356780408232 10557.69140625 0.5159932325891485 280 63.34841628959276 2.456164696497111 2.374441572314836 2.559604064957139 2.4344484522193577 0.012448 -0.0010143154067918658 0.022932277992367744 442 90 90 60 2.777545981423223 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 107.14048986885393 13.474239349365234 31.335346221923828 9.400452613830566 324572.0 0.020361991599202156 115.92738227844244 82.62450408935547 4.3854222381015315 251.19375610351562 1021.7430419921875 961.812255859375 93153.0 581.083740234375 1674.2760498046873 346.2794494628906 25.747209548950195 +sub-10247_ses-V1_task-rest_run-02_bold 0.0007313092550790067 0.014283073431151242 7 56.26628828253394 1.087120935248869 0.9717464812669678 0.4419497070603028 10676.8447265625 0.4766485693705087 306 69.0744920993228 2.438328592116464 2.3641082393921122 2.546737398801748 2.4041401381555314 0.0144252 -0.0005697107408195734 0.021650269627571106 443 90 90 60 2.7763396746576134 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 112.29122920813359 13.417048454284668 31.649246215820312 9.252821922302246 323755.0 0.0022573363967239857 119.69525909423828 84.94410705566406 4.587692954803326 247.0557861328125 1015.206787109375 956.7991333007812 93687.0 576.0401977539063 1665.259582519531 344.624267578125 27.501079559326172 +sub-10250_ses-V1_task-cuff_run-01_bold 0.00336316742081448 0.006147620995475112 8 31.852748334263012 1.060071250702947 1.035070643582766 0.5118322091797817 544.176513671875 0.14359191646562383 5 1.1312217194570136 2.654154149325667 2.4420749029606617 2.8590832197235736 2.6613043252927655 0.00857781 -0.019238300621509552 0.06996642798185349 442 90 90 54 2.240846792463366 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 7 39.65799259175202 5.256194114685059 22.41020965576172 11.416290283203125 283851.0 7.649321556091309 70.45362091064453 32.31929016113281 1.4368959991729628 103.87271881103516 302.13336181640625 283.8009033203125 89483.0 124.43439483642578 544.4674194335937 126.64824676513672 36.957923889160156 +sub-10250_ses-V1_task-cuff_run-02_bold 0.0016672686230248305 0.009197532957110609 7 33.33393238920814 0.991317623099547 0.9710122403619914 0.5147061331057993 537.0115356445312 0.17921254053076727 6 1.3544018058690745 2.746152760169164 2.508699900313222 2.96613738213629 2.763620998057981 0.00594092 -0.017897112295031548 0.069861501455307 443 90 90 54 2.2948757906645936 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 38.17237139788982 5.498680114746094 22.661218643188477 11.593679428100586 283069.0 7.663657188415527 71.16929931640598 32.402713775634766 1.1599681033015852 106.48797607421875 302.61932373046875 286.8792419433594 89972.0 123.44041137695314 536.8448028564453 125.00791931152344 31.143775939941406 +sub-10250_ses-V1_task-rest_run-01_bold 0.0007344920993227991 0.00485320151241535 7 30.377527090316747 1.0230297988461534 0.9969456054072396 0.5105459918024493 560.7362670898438 0.11954669370911447 15 3.386004514672686 2.6615166491350704 2.453233235850603 2.8669332194116426 2.664383492142965 0.00770982 -0.01924561709165573 0.06892582029104233 443 90 90 54 2.2384409861819012 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 39.60839265547079 5.157314300537109 22.212791442871094 11.329571723937988 283625.0 7.589164733886719 69.86004638671875 32.00856018066406 1.3781225705665392 105.33839416503906 303.7517395019531 285.7765197753906 89622.0 123.82223510742188 548.232092285156 127.66694641113281 39.85486602783203 +sub-10250_ses-V1_task-rest_run-02_bold 0.0017446396396396397 0.006652147027027028 6 34.14183556334088 1.0357110506320542 1.0045001488487593 0.5160753964256932 515.4296264648438 0.17502169453389105 66 14.864864864864865 2.703718037945452 2.4846999012668967 2.9137998842159956 2.712654328353464 0.0086847 -0.01888732798397541 0.0698012262582779 444 90 90 54 2.2771392871465297 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 36.2677130655232 5.649916172027588 22.972251892089844 11.75 282609.0 7.682432651519775 73.1319854736325 32.719539642333984 1.2380802155804673 105.6487808227539 302.25286865234375 285.77703857421875 90281.0 123.45720672607422 540.090087890625 125.49757385253906 35.57097244262695 +sub-10250_ses-V3_task-cuff_run-01_bold 0.001189255079006772 0.0097152379006772 7 34.25906762606336 1.0067960481221727 0.9791864840045247 0.5129288021461728 559.5487670898438 0.14422979534894714 0 0.0 2.6987430411018494 2.4435707362345562 2.850654053391852 2.8020043336791396 0.00753707 -0.007846743799746037 0.06255156546831131 443 90 90 54 2.313982198418229 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 45.70902158433479 4.109786510467529 20.396038055419922 10.444695472717285 283067.0 7.458239555358887 61.848082351684596 30.489822387695312 0.8681499132933146 94.28077697753906 279.07598876953125 261.3363342285156 90343.0 114.62324981689453 490.5124206542967 112.93729400634766 31.12172508239746 +sub-10250_ses-V3_task-cuff_run-02_bold 0.001141196388261851 0.006954236207674943 7 35.25354851846152 1.0380942326696825 0.9944634288687785 0.5137140154593454 545.220458984375 0.12396768978164537 1 0.22573363431151242 2.6383638746138858 2.395487404811883 2.784658222680957 2.734945996348818 0.0104596 -0.011648677289485931 0.06702529639005661 443 90 90 54 2.3139397370254904 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 42.864420733993505 4.143254280090332 20.82965660095215 10.446952819824219 284343.0 7.440180778503418 63.65191917419418 32.15146255493164 0.8756841647694782 94.14356994628906 278.56915283203125 259.58013916015625 87791.0 119.04740524291992 489.8611755371094 112.18038940429688 35.773250579833984 +sub-10250_ses-V3_task-rest_run-01_bold 0.0006066139954853274 0.006554863318284424 7 32.36649100305431 1.0061322905882364 0.9836886647511317 0.5109413268678261 563.239501953125 0.11078717706917986 14 3.160270880361174 2.673038873962595 2.438762403092289 2.823466554472186 2.75688766432331 0.0133682 -0.007880501449108124 0.0628930851817131 443 90 90 54 2.3067653943400708 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 46.565712918995736 4.079665660858154 20.125329971313477 10.376975059509277 283741.0 7.399548530578613 60.96614074707031 30.39507484436035 0.8493062152172137 95.1877670288086 279.2687683105469 262.0225830078125 89899.0 111.98171539306641 491.54471435546867 113.5881118774414 36.100223541259766 +sub-10250_ses-V3_task-rest_run-02_bold 0.0010400677200902934 0.007179974808126412 7 34.28067723866513 1.0394265967194565 1.0055279313348413 0.5147068720498468 536.385009765625 0.12760532845904063 13 2.9345372460496613 2.647851374511316 2.4063249043812394 2.7939957223099183 2.7432334968427914 0.0143775 -0.007570304442197084 0.0635925754904747 443 90 90 54 2.3070044625737682 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 44.0486582716912 4.230269432067871 20.540735244750977 10.483070373535156 283508.0 7.442438125610352 62.89086074829093 30.54458999633789 0.9203731214892685 92.85843658447266 276.1782531738281 258.0496826171875 90025.0 114.74266510009765 486.5426818847658 111.854248046875 35.16640090942383 +sub-10255_ses-V1_task-cuff_run-01_bold 0.0010700909090909092 0.010257699568181816 10 36.290198415353096 1.0662437125968103 0.9615235135079728 0.4422419284314806 6260.640625 0.10303462047341194 0 0.0 2.4470438784165958 2.4852415679120394 2.496387400802477 2.359502666535272 0.00690035 -0.011401557363569736 0.02331925556063652 440 90 90 60 2.34790164405705 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 70.53705000659319 18.6133975982666 44.40202713012695 13.238636016845703 330312.0 0.029545454308390617 201.81237869262696 97.41219329833984 2.964525869843726 355.233154296875 1135.3333740234375 1060.543212890625 88804.0 541.5639831542969 1982.3757690429682 451.6957702636719 33.20340347290039 +sub-10255_ses-V1_task-cuff_run-02_bold 0.0011034467120181405 0.012139726009070295 9 37.017989843568174 1.0522969835454543 0.958729088113636 0.44337048169692245 6288.435546875 0.1186176101370671 0 0.0 2.4765119251088907 2.5029832338737155 2.528333232866397 2.39821930858656 0.0079565 -0.010889946483075619 0.023255372419953346 441 90 90 60 2.3497463285163454 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 69.17393686914642 18.648513793945312 44.663394927978516 13.210884094238281 329683.0 0.0317460335791111 202.74059295654266 98.16549682617188 3.0159927316263078 353.5619201660156 1126.8555908203125 1053.5169677734375 89397.0 534.9011474609375 1966.663525390625 448.3509826660156 30.04107093811035 +sub-10255_ses-V1_task-rest_run-01_bold 0.0015066287015945332 0.008863734214123007 11 35.5426927027169 1.0936947406392699 0.9898083393150676 0.44211694669365215 6505.556640625 0.10641455490498596 5 1.1389521640091116 2.432067495110562 2.472316568425633 2.4894874010766586 2.3343985158293945 0.00611344 -0.010675366036593914 0.022893022745847702 439 90 90 60 2.3611077659433257 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 68.58279367721629 18.285991668701172 43.839256286621094 12.988611221313477 329932.0 0.03416856750845909 198.2174385070801 96.99030303955078 3.0196194562209993 354.0498046875 1132.621337890625 1059.22216796875 89222.0 540.7255645751952 1969.8261108398433 448.60986328125 34.89060592651367 +sub-10255_ses-V1_task-rest_run-02_bold 0.0015708144796380088 0.012540055791855204 8 37.350492801564634 1.0636087305895692 0.9892712678231288 0.4447367757429243 6210.203125 0.11824551230537138 6 1.3574660633484164 2.470064705601548 2.499387400683268 2.5249623996670088 2.385844316454368 0.00873493 -0.010501102544367313 0.022746572270989418 442 90 90 60 2.3698748361035697 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 63.42802301394558 18.619741439819336 44.46793746948242 13.21267032623291 329310.0 0.0429864265024662 203.67648315429688 96.52484893798828 3.0035690827705945 348.76715087890625 1119.8330078125 1047.626708984375 89579.0 538.3488952636719 1947.7784057617173 442.0574645996094 29.504104614257812 +sub-10255_ses-V3_task-cuff_run-01_bold 0.0013303636363636363 0.011260661340909089 10 33.80658240091114 1.0418526865603648 0.9759864017539875 0.44771895287353614 7868.26806640625 0.11529079937278087 0 0.0 2.4286841718929577 2.4691582352178005 2.532733232691557 2.284161047769516 0.0105052 -0.006506779696792364 0.029534220695495605 440 90 90 60 2.3218529769023344 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 61.60143804641814 17.048240661621094 45.42374038696289 12.069317817687988 325226.0 0.027272727340459824 213.43351364135742 103.2099609375 4.547702017809742 351.2620849609375 1164.2716064453125 1082.41357421875 92291.0 571.6079406738281 2023.5556030273438 466.1827087402344 31.400026321411133 +sub-10255_ses-V3_task-cuff_run-02_bold 0.002867357630979499 0.009440841617312073 11 34.0739155338128 1.1080726801826488 1.0532692963242019 0.4475730294064717 8184.14306640625 0.1343602377432644 0 0.0 2.40538695559582 2.4482249027162832 2.5089374003037848 2.2589985637673924 0.00917607 -0.007104548159986734 0.02992665208876133 439 90 90 60 2.328313269967372 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 57.00797697200679 16.697006225585938 45.017154693603516 11.76993179321289 325268.0 0.02961275726556778 214.59191818237232 101.6772689819336 4.774680043731054 347.371337890625 1159.1812744140625 1076.902099609375 92203.0 571.9070739746094 2005.821215820312 462.5220642089844 32.728729248046875 +sub-10255_ses-V3_task-rest_run-01_bold 0.002748522727272727 0.009060991068181817 10 33.14841775275626 1.087473512984055 1.0687008476537585 0.44678344865231556 8146.07666015625 0.11155307752168289 4 0.9090909090909091 2.4179300085163 2.463891568760412 2.520145733191739 2.2697527235967483 0.00765968 -0.006140766199678183 0.02935486100614071 440 90 90 60 2.312383205960611 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 31 68.0139063170072 16.90166473388672 45.79204559326172 12.024999618530273 325576.0 0.059090908616781235 214.32386016845703 104.1573486328125 4.733514976472482 357.30389404296875 1177.8729248046875 1093.4295654296875 91791.0 582.8193054199219 2044.5352172851562 472.855712890625 32.815086364746094 +sub-10255_ses-V3_task-rest_run-02_bold 0.0012508577878103837 0.01055266704288939 7 34.88971135425341 1.0756454732579188 0.9786375335067875 0.4478102887679689 7762.91357421875 0.1292924701763129 14 3.160270880361174 2.4151022323981244 2.4619499021709004 2.5213915664755673 2.2619652285479046 0.0127222 -0.006605302449315786 0.029955804347991943 443 90 90 60 2.321028807232614 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 56.397047278140406 17.02817153930664 45.1341667175293 11.979683876037598 325054.0 0.022573363035917282 215.23104553222652 102.11410522460938 4.7142040701052235 348.94366455078125 1155.7322998046875 1074.2652587890625 92306.0 568.3284606933594 2003.867431640625 462.8376159667969 32.201961517333984 +sub-10257_ses-V1_task-rest_run-01_bold 0.0010555955056179775 0.014195338921348314 5 42.57355195959456 1.047401095990992 0.9958131459459455 0.5575028733987973 340.3759765625 0.1542356673060629 34 7.640449438202247 2.73046942534141 2.4324707366756306 3.059266545102336 2.699670994246264 0.0115416 -0.0068366751074790955 0.13205377757549286 445 90 90 54 2.7539272507185864 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 44.68126335033404 5.460641384124756 26.91959571838379 11.631461143493652 287260.0 7.683145999908447 96.67943649291975 43.729522705078125 0.9387799768734215 75.28787231445312 235.30868530273438 228.0606689453125 86346.0 109.72022438049316 380.35169219970703 82.81240844726562 29.985736846923828 +sub-10257_ses-V1_task-rest_run-02_bold 0.0038214606741573025 0.016037843033707866 5 44.145283990991025 1.091341168490992 1.0454600841216226 0.5581261442818825 337.96710205078125 0.17679644879275488 68 15.280898876404494 2.713777759251915 2.4144582373913828 3.0298040462730707 2.697070994091292 0.0104632 -0.005669929552823305 0.1326148957014084 445 90 90 54 2.7723917637469384 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 42.962503325539245 5.310714244842529 26.836088180541992 11.566291809082031 287629.0 7.824718952178955 97.1802246093749 43.4514274597168 0.9996341734220091 74.34165954589844 233.82614135742188 226.41909790039062 86068.0 110.72741813659668 376.0710174560546 81.66875457763672 27.819358825683594 +sub-10257_ses-V3_task-rest_run-01_bold 0.0007670495495495496 0.012735641486486487 6 48.20429744711063 1.0781157387584654 0.9923874293679464 0.5318784538241023 417.0069274902344 0.36393887192260793 277 62.387387387387385 2.8882235880937355 2.713595725504727 3.180308206959239 2.7707668318172396 0.011203 -0.0031757312826812267 0.08789646625518799 444 90 90 54 2.2969892432422654 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 44.19871767220204 5.88700008392334 26.690027236938477 11.520270347595215 286150.0 7.180180549621582 98.06903305053703 45.40737533569336 2.73465335398501 90.14488983154297 271.5809020996094 254.6531524658203 86289.0 122.84189453125 477.9599182128905 110.86324310302734 30.827180862426758 +sub-10258_ses-V1_task-cuff_run-01_bold 0.001966599099099099 0.025789595045045043 6 109.0005068985102 1.159643766591422 0.9955598352595941 0.5353259120146278 462.58526611328125 1.1702642855347674 254 57.207207207207205 2.8873833208331416 2.540791565704681 3.0339915461066744 3.087366850688071 0.031077 -0.026851201429963112 0.1361716240644455 444 90 90 54 2.4957987609204 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 5 71.28065883804386 3.5996508598327637 23.20103645324707 10.301801681518555 285872.0 7.752252578735352 74.38063049316406 38.304290771484375 0.7505823917568182 89.5605239868164 251.55503845214844 236.59234619140625 88521.0 128.18017578125 428.8986511230469 94.79570770263672 19.094188690185547 +sub-10258_ses-V1_task-cuff_run-02_bold 0.0014746516853932584 0.026468506516853934 5 115.07588208709463 1.171580767545045 0.9959185093693689 0.5346984916765071 457.52581787109375 1.22908196336416 275 61.79775280898876 2.904286098472394 2.5587207316589065 3.0506707121105703 3.1034668516477057 0.0327663 -0.025403376668691635 0.13601958751678467 445 90 90 54 2.4792911134102176 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 7 71.61811228929433 3.7348251342773438 23.11000633239746 10.321348190307617 285848.0 7.60224723815918 74.12427139282211 37.96060562133789 0.7815883066451441 88.96943664550781 250.32012939453125 235.0382080078125 88545.0 126.99461059570312 428.25752563476567 94.80003356933594 18.806163787841797 +sub-10258_ses-V1_task-rest_run-01_bold 0.001798067415730337 0.02314764606741573 5 93.11255273713962 1.1156566856981978 0.984220229932432 0.534656769758752 465.1117248535156 0.9959368661461715 405 91.01123595505618 2.919993042910685 2.5596207316231436 3.078229044348834 3.1221293527600777 0.0177981 -0.025881333276629448 0.13219358026981354 445 90 90 54 2.495725886579499 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 68.4462438926248 3.8414387702941895 23.140361785888672 10.391011238098145 285930.0 7.606741428375244 74.82270011901849 37.56802749633789 0.7468258126101817 89.52085876464844 252.87315368652344 237.92359924316406 88592.0 127.5373073577881 431.4071990966796 95.3318862915039 20.15103530883789 +sub-10258_ses-V1_task-rest_run-02_bold 0.001598243243243243 0.02005372117117117 6 94.06536897963882 1.1185634073137702 0.9912038044920993 0.5331093640815767 474.3279113769531 1.026928370907951 413 93.01801801801801 2.880141654602141 2.527058232917061 3.0215332132683907 3.0918335176209717 0.0203807 -0.0243452787399292 0.14227306842803955 444 90 90 54 2.4767887002891564 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 73.35153999002398 3.3391947746276855 22.899206161499023 10.08108139038086 287234.0 7.698198318481445 73.34088325500483 38.75862121582031 0.7731787675534956 88.94445037841797 249.76632690429688 234.58897399902344 87556.0 126.93975257873535 428.1053009033203 94.71443176269531 20.657329559326172 +sub-10261_ses-V1_task-cuff_run-01_bold 0.0015395475113122172 0.01220745479638009 8 35.73581198174603 1.0356572258503403 1.124198822244898 0.41432855578168853 8905.66796875 0.17361243807064855 0 0.0 2.350834015764457 2.3787540721434723 2.3307749073833266 2.342973067766572 0.00971571 -0.008714952506124973 0.01607014425098896 442 90 90 60 2.777035842110988 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 82.27635190996756 16.006738662719727 35.41437530517578 11.07918643951416 343073.0 0.011312217451632023 143.38778991699212 81.93892669677734 7.566579565502989 259.443603515625 1080.5556640625 1029.419677734375 76874.0 591.8334106445312 1717.7855163574213 370.68768310546875 31.396724700927734 +sub-10261_ses-V1_task-cuff_run-02_bold 0.0015609977324263042 0.012209101564625851 9 36.63800500097725 1.0348799570454534 0.9767284399772725 0.41467640780013426 8197.607421875 0.1663852373498289 0 0.0 2.3537701222485325 2.398424904695157 2.3335332406070535 2.3293522214433873 0.0104022 -0.008709902875125408 0.015315692871809006 441 90 90 60 2.729788679126266 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 74.48215555425085 16.382587432861328 35.26313400268555 11.38548755645752 342617.0 0.020408162847161293 144.93287963867206 80.28340148925781 7.887348848532174 260.83209228515625 1076.5606689453125 1025.772216796875 77290.0 580.3831146240234 1722.5545471191413 375.76739501953125 32.06520080566406 +sub-10261_ses-V1_task-rest_run-01_bold 0.0014374717832957111 0.013687398668171558 7 35.79176448812215 1.012469166923077 0.9877801521493214 0.41422539837471134 8451.123046875 0.18508533661706325 36 8.126410835214447 2.3573492922982076 2.396174904784564 2.3358749071806706 2.339998064929388 0.00643421 -0.00796279963105917 0.015996843576431274 443 90 90 60 2.7642235725581004 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 92.83159751431053 16.39229393005371 35.78500747680664 11.480813026428223 343340.0 0.04966140165925026 143.67053833007807 82.71780395507812 7.670724369500391 262.40057373046875 1092.229248046875 1039.693115234375 76688.0 596.9076965332032 1739.6559448242188 376.12237548828125 29.241146087646484 +sub-10261_ses-V1_task-rest_run-02_bold 0.0016356108597285065 0.010183523438914028 8 35.474428747845785 1.0527833075510218 1.0215919250566894 0.415502656639581 8649.5986328125 0.15924297185825992 34 7.6923076923076925 2.3371437290905117 2.3771915722055605 2.319774907820427 2.3144647072455475 0.00906012 -0.009118054993450642 0.01626092568039894 442 90 90 60 2.7290943585512326 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 77.66773082370241 16.134201049804688 36.2591438293457 11.203619956970215 343031.0 0.020361991599202156 151.05657196044922 83.29459381103516 8.259368738066561 260.9447021484375 1081.34814453125 1028.79638671875 76951.0 593.5916748046875 1726.7919311523438 376.9710998535156 33.21302795410156 +sub-10262_ses-V1_task-rest_run-01_bold 0.0014780361173814898 0.01751000948081264 7 67.62836296622169 1.1320158216515825 1.0248102596153839 0.4614503350769969 6049.890625 0.5599671380120252 334 75.39503386004515 2.421292388433859 2.3649665726913383 2.4286915701591343 2.4702190224511043 0.00834731 0.007256074342876673 0.023165013641119003 443 90 90 60 2.146788519647211 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 265.11683597378425 20.716272354125977 42.374019622802734 14.909707069396973 306908.0 0.1218961626291275 155.9194145202635 113.41082000732422 3.408416460860563 407.934814453125 1275.239990234375 1167.432373046875 108186.0 598.7539672851562 2320.4464111328125 543.8015747070312 21.537208557128906 +sub-10262_ses-V1_task-rest_run-02_bold 0.0015832882882882882 0.01649041481981982 6 76.1865268216252 1.1736759819187361 1.0108474990293452 0.4615267737259834 6213.52294921875 0.6217189325555327 375 84.45945945945945 2.403904882702094 2.3460665734423567 2.4148249040434795 2.450823170620445 0.00939564 0.00729759968817234 0.02358829230070114 444 90 90 60 2.1485011215431595 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 264.35319740451075 20.53604507446289 42.68963623046875 14.64639663696289 306911.0 0.0788288339972496 158.53153228759766 115.28510284423828 3.365127788237002 406.9542236328125 1276.3875732421875 1166.7860107421875 108197.0 602.6590087890626 2320.6369628906245 543.0672607421875 22.477609634399414 +sub-10265_ses-V3_task-rest_run-01_bold 0.0014461224489795918 0.008076875034013605 9 33.18017765393179 1.1804522159999995 1.0199170420227273 0.4146518554279266 17081.673828125 0.15046619439903589 9 2.0408163265306123 2.501217479598296 2.510766566897767 2.594241563580769 2.398644308316353 0.00403048 -0.008897040970623493 0.02461889758706093 441 90 90 60 2.1632980061493785 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 370.6730072391509 13.867877960205078 32.391510009765625 9.492063522338867 327478.0 0.0 121.36734771728516 95.10165405273438 8.711814310749187 371.672607421875 1356.6610107421875 1247.3140869140625 89766.0 656.2369689941406 2399.0306396484375 576.57666015625 42.40970993041992 +sub-10265_ses-V3_task-rest_run-02_bold 0.0005770454545454545 0.006744324909090909 10 31.994441408041002 1.1525522358086555 0.9782302593621863 0.4140243791704488 16392.693359375 0.1426641067818771 4 0.9090909090909091 2.4865966491928737 2.4991249006936984 2.57383323105839 2.386831815826533 0.00527089 -0.00930966529995203 0.02435760386288166 440 90 90 60 2.1465191301285085 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 437.25663949150555 14.125155448913574 32.27748107910156 9.59999942779541 327553.0 0.0 121.67499542236328 96.50129699707031 9.27063362629835 367.6988525390625 1354.5826416015625 1243.4931640625 89739.0 656.7908752441408 2388.8348876953123 579.3035888671875 44.13785171508789 +sub-10266_ses-V3_task-cuff_run-01_bold 0.0009924263038548753 0.0074246105668934245 9 34.375217650181824 1.116505404477272 1.0037908897272736 0.41189808489715535 13696.3310546875 0.1371519314441659 0 0.0 2.338714717499127 2.331354074026979 2.3325582406457963 2.3522318378246068 0.00791066 -0.011086919344961643 0.021909166127443314 441 90 90 60 2.720213828092462 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 340.99523487650595 13.407297134399414 29.000633239746094 9.147392272949219 337629.0 0.0 109.31655273437495 76.74769592285156 4.137599434801751 287.62493896484375 1128.10791015625 1068.631591796875 81816.0 595.5119323730469 1850.5521240234375 392.8459777832031 39.730682373046875 +sub-10266_ses-V3_task-cuff_run-02_bold 0.0031431746031746026 0.00943148530612245 9 34.07089652136363 1.122352178477274 1.0595456257727272 0.4131462173087198 13765.7626953125 0.15251173025174775 1 0.22675736961451248 2.3458869359817673 2.329529074099498 2.3385124070758656 2.3696193267699392 0.00620141 -0.010305266827344894 0.022370850667357445 441 90 90 60 2.768780524489041 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 354.9718156548496 13.182049751281738 28.140878677368164 9.011338233947754 337455.0 0.0022675737272948027 104.97052001953125 73.59244537353516 3.9607040111175635 278.88726806640625 1103.0328369140625 1045.9285888671875 82132.0 591.3674896240234 1797.5115966796875 377.75555419921875 35.13060760498047 +sub-10266_ses-V3_task-rest_run-01_bold 0.0011341216216216215 0.007476107094594595 6 33.52182932076752 1.0975383818284405 0.9865996212866819 0.4110529804777452 13660.185546875 0.13231652621912188 13 2.9279279279279278 2.3547077697179284 2.344933240154058 2.35336240648578 2.3658276625139476 0.0112686 -0.01126538123935461 0.021439075469970703 444 90 90 60 2.691236722008975 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 391.90790806816364 13.52707576751709 28.87777328491211 9.225225448608398 337316.0 0.0 108.22522735595703 76.29219818115234 4.216658218096387 292.7270812988281 1137.625732421875 1077.450439453125 81949.0 594.1490966796875 1873.9158203124991 400.3526916503906 39.01461410522461 +sub-10266_ses-V3_task-rest_run-02_bold 0.0007705442176870748 0.008462507981859409 9 33.88753634379546 1.0719515057272735 0.9786042583636357 0.41358150037808816 13519.7021484375 0.14115278822787772 8 1.8140589569160999 2.330902217863378 2.3136457413973113 2.327099907529358 2.3519610046634645 0.00730671 -0.010300645604729652 0.0228485856205225 441 90 90 60 2.783426499954744 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 360.97717176553704 13.173644065856934 28.226118087768555 9.003401756286621 337754.0 0.0 105.60850486755366 74.58525848388672 3.946313716226456 274.6982116699219 1098.12841796875 1040.9320068359375 81959.0 589.9805114746093 1786.741540527343 373.9727478027344 38.346282958984375 +sub-10267_ses-V1_task-cuff_run-01_bold 0.0010053603603603603 0.019445561486486487 6 83.68853200905195 1.1147130319187364 0.9735481218284427 0.42476441053559927 3861.922119140625 0.7379768385731545 182 40.990990990990994 2.480314622319233 2.5601165649367745 2.368304072558718 2.512523229462207 0.00987908 -0.00875448901206255 0.015778204426169395 444 90 90 60 2.7832178555687146 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 160.32315297586337 24.963815689086914 48.745079040527344 17.786035537719727 347109.0 0.09009009599685669 194.20945739746094 102.99188232421875 2.0047659575326087 307.2794494628906 1120.9078369140625 1081.9053955078125 73685.0 531.853173828125 1816.8585693359375 388.7220153808594 22.9727783203125 +sub-10267_ses-V1_task-cuff_run-02_bold 0.001127747747747748 0.020670833333333333 6 88.95800221525954 1.1198350927539504 0.9693776328442436 0.42568020332074463 3857.646240234375 0.7454449942055897 176 39.63963963963964 2.4924521262921076 2.568716564595041 2.3826624053215024 2.5259774089597786 0.00791573 -0.009265233762562275 0.015504630282521248 444 90 90 60 2.7845703046163397 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 132.2923195854452 25.177526473999023 49.290889739990234 17.885135650634766 347034.0 0.054054055362939835 198.06993179321273 103.22850799560547 2.0134378506661186 307.5597839355469 1115.9552001953125 1077.3558349609375 73785.0 528.6486694335938 1810.1581298828125 386.8993835449219 22.287065505981445 +sub-10267_ses-V1_task-rest_run-01_bold 0.0022227252252252252 0.021419126126126127 6 81.8954329567269 1.1359116579458255 0.9795835954853283 0.4245368597918705 3686.09814453125 0.6661385538645193 349 78.6036036036036 2.477945174107054 2.561320731555592 2.371654072425601 2.5008607183399696 0.00690938 -0.009461341425776482 0.014193134382367134 444 90 90 60 2.790771669503946 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 203.56479613483654 25.46135711669922 48.247657775878906 18.157657623291016 346844.0 0.06756757199764252 190.72714157104485 101.66114807128906 2.124306157986977 309.37640380859375 1129.767333984375 1089.8829345703125 73723.0 545.4599182128907 1833.3088623046863 390.52838134765625 22.59642791748047 +sub-10267_ses-V3_task-cuff_run-01_bold 0.0014609684684684687 0.022617694594594596 6 65.46130509711062 1.1114732850790066 0.9746233582618501 0.4176859455808207 4081.854736328125 0.4829243848604273 30 6.756756756756757 2.472432737111889 2.5581207316827483 2.352783239842127 2.506394239810791 0.00463907 -0.003873123088851571 0.01403258740901947 444 90 90 60 2.886914901356162 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 84.35185728885436 22.272424697875977 38.75905990600586 15.72747802734375 348885.0 0.06981982290744781 149.51937561035152 75.42659759521484 2.1565040122708075 260.31695556640625 1016.1785888671875 980.9212036132812 72557.0 501.0360412597656 1631.11259765625 339.77947998046875 23.831464767456055 +sub-10267_ses-V3_task-rest_run-01_bold 0.0017838063063063063 0.021795664414414415 6 64.80316149198646 1.080779825530473 0.9618023844695265 0.417707662929658 4310.36474609375 0.4740635416705311 291 65.54054054054055 2.4885882862678415 2.5643248981028837 2.3660665726476284 2.535373388053012 0.00539153 -0.003702386049553752 0.014310071244835854 444 90 90 60 2.868766512367357 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 110.547967825096 21.87506103515625 38.57896041870117 15.315315246582031 348237.0 0.03378378599882126 149.19414672851565 74.93793487548828 2.1829876957623693 261.71600341796875 1018.2327270507812 981.145263671875 73026.0 497.8203887939453 1632.8136291503906 342.0071105957031 22.747920989990234 +sub-10267_ses-V3_task-rest_run-02_bold 0.00152744920993228 0.0200990025282167 7 65.0352522216289 1.1367742412443433 0.9778929346832571 0.4182764328069659 4065.48388671875 0.4515731737266105 302 68.17155756207674 2.4544466317785614 2.5418457323294588 2.340583240326912 2.4809109226793145 0.00448444 -0.0035662588197737932 0.013390053994953632 443 90 90 60 2.9139004598285467 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 65.3825296009254 22.319355010986328 38.41196060180664 15.63431167602539 348440.0 0.029345372691750526 148.70676879882808 72.98030853271484 2.156473370922165 258.10333251953125 1014.6113891601562 979.01806640625 72670.0 504.8331893920898 1622.191583251954 335.97967529296875 24.1248722076416 +sub-10269_ses-V1_task-cuff_run-01_bold 0.0009256009070294786 0.00776169185941043 9 36.73686269420455 1.0411898581818175 0.9745764162727274 0.4838118226204531 5485.91064453125 0.17911509967712969 0 0.0 2.4240980365874543 2.422895737056107 2.442545736275286 2.4068526364309712 0.012218 0.0109696751460433 0.027051590383052826 441 90 90 60 1.984042749592646 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 148.05245266585848 21.872587203979492 52.85831069946289 15.496599197387695 295347.0 0.01587301678955555 228.67778015136736 126.16519927978516 5.449207759419794 398.3997802734375 1314.9598388671875 1164.631591796875 118456.0 664.4586334228516 2458.11962890625 586.9967651367188 33.43852233886719 +sub-10269_ses-V1_task-cuff_run-02_bold 0.000948095238095238 0.006504203038548754 9 35.69814307913635 1.0729370552272726 1.0021139809772723 0.48446965502439676 5236.38818359375 0.16486224091125118 0 0.0 2.408038318187268 2.4148624040419895 2.4184249039004286 2.3908276466193854 0.0128631 0.011738319881260395 0.02817438170313835 441 90 90 60 1.9974798971308123 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 144.1611757565048 21.953271865844727 53.25686264038086 15.67800521850586 295202.0 0.03628117963671684 231.41326217651408 127.74497985839844 5.31929459439011 395.57232666015625 1309.7200927734375 1160.79248046875 118384.0 664.2962768554687 2439.053442382812 581.1260375976562 35.866031646728516 +sub-10269_ses-V1_task-rest_run-01_bold 0.0008253061224489796 0.007123908458049886 9 36.2369181807273 1.050490647022727 0.9908280089545451 0.4820580664653305 5600.603515625 0.16667501600878448 13 2.947845804988662 2.429275815349095 2.434433236597648 2.4525290692119173 2.4008651402377192 0.00426879 0.009799184277653694 0.02498067170381546 441 90 90 60 1.9652897368215259 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 151.06645583657004 21.704490661621094 52.38179016113281 15.43537425994873 295593.0 0.02947845868766308 226.89297180175765 124.01612854003906 5.6185788960348315 404.30322265625 1329.537353515625 1175.53515625 118287.0 668.9235900878906 2493.0564453125 598.14599609375 34.79727554321289 +sub-10269_ses-V1_task-rest_run-02_bold 0.0008560270880361173 0.005481701986455982 7 33.39315963785068 1.0641411888461543 0.9900976459276015 0.4835866254810318 5146.8232421875 0.13505105696652558 3 0.6772009029345373 2.406095266353082 2.4211999037901597 2.4245999036550563 2.3724859916140293 0.00601797 0.012670038267970085 0.02573426254093647 443 90 90 60 1.9599871610055604 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 148.68249375204178 22.329395294189453 54.32740783691406 15.803611755371094 295367.0 0.011286681517958641 241.38668365478537 130.41873168945312 5.661458361631402 400.5903625488281 1316.300048828125 1164.284423828125 118401.0 659.2167358398438 2470.117431640625 594.0240478515625 38.263999938964844 +sub-10270_ses-V1_task-rest_run-01_bold 0.0031673076923076924 0.016976117714932123 8 52.02099808759635 1.1644062357823128 1.0181180529024947 0.4555680895115005 7213.66845703125 0.2857779323572833 143 32.35294117647059 2.3967660875790644 2.376904072216985 2.3781040721693008 2.435290118350907 0.0117937 0.03389855846762657 0.005576409865170717 442 90 90 60 2.4003605126298777 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 70.99466338691772 16.516592025756836 40.12455749511719 11.676470756530762 316299.0 0.03846153989434242 148.6187911987302 112.26832580566406 6.861412016422513 261.25994873046875 1072.1253662109375 989.972900390625 99439.0 572.9676452636719 1836.3190429687497 412.4246826171875 27.65163803100586 +sub-10270_ses-V1_task-rest_run-02_bold 0.00265870159453303 0.015331406150341686 11 49.98951224326488 1.1517915438127866 1.0069878293378995 0.4548323742013817 7100.23779296875 0.27831680804308195 139 31.662870159453302 2.3826980366298414 2.369362405849997 2.363812406070534 2.414919297968993 0.00782612 0.034478046000003815 0.004516782704740763 439 90 90 60 2.3762458854495603 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 70.45750391122182 16.551786422729492 40.247440338134766 11.615035057067871 316867.0 0.013667427003383636 150.67153778076184 113.70213317871094 6.818647819351881 258.4794616699219 1062.3980712890625 979.0661010742188 99199.0 560.8783996582032 1823.6565429687498 412.0201416015625 28.86543083190918 +sub-10270_ses-V3_task-cuff_run-01_bold 0.004209022727272726 0.010947532522727272 10 49.680703300113834 1.2474933056719824 1.0311141220045557 0.45254360099436086 7235.28173828125 0.2641328332319833 8 1.8181818181818181 2.4027924924906094 2.4564040690579385 2.3985332380241857 2.3534401703897028 0.00660958 0.018532320857048035 0.015019225887954235 440 90 90 60 2.0913572199783244 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 86.34977155611986 19.65121841430664 52.21057891845703 13.66136360168457 315785.0 0.022727271541953087 220.41862487792946 138.77203369140625 7.653228686478684 379.763427734375 1297.581298828125 1180.752197265625 99796.0 634.9482879638672 2328.6266479492188 564.583740234375 32.22174072265625 +sub-10270_ses-V3_task-cuff_run-02_bold 0.002491179138321995 0.013827412630385486 9 55.59292850500005 1.218463430659092 1.0181628966136358 0.45533353144585625 6911.70458984375 0.3230808033763739 3 0.6802721088435374 2.3769244409075907 2.4225790704020236 2.369574905841553 2.3386193464791956 0.00546688 0.02117801457643509 0.01696438528597355 441 90 90 60 2.215732460758231 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 89.39183338082377 19.213314056396484 48.796024322509766 13.371882438659668 316434.0 0.01814058981835842 199.8193939208984 130.24497985839844 6.528771883985931 351.0606384277344 1226.6259765625 1125.662109375 99683.0 615.5283325195313 2155.500537109375 508.029052734375 29.444129943847656 +sub-10270_ses-V3_task-rest_run-01_bold 0.003921176470588235 0.01127559520361991 8 48.3725914514286 1.202204579750567 1.073982507074829 0.4523082405636118 7401.564453125 0.26258058230895476 127 28.733031674208146 2.420457764365102 2.4765290682582433 2.405224904424949 2.3796193204121145 0.00626172 0.01866338960826397 0.0150936059653759 442 90 90 60 2.0840288382600036 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 16 91.77295736756119 19.595844268798828 52.33085632324219 13.771493911743164 315804.0 0.0656108632683754 218.62602920532217 138.52503967285156 7.766254831418442 383.85308837890625 1308.5224609375 1189.5418701171875 99726.0 639.6844177246094 2354.836669921875 570.7866821289062 31.557165145874023 +sub-10272_ses-V1_task-cuff_run-01_bold 0.001171266968325792 0.01769552540723982 8 35.49068134326529 1.0309722859637191 0.9717615822448982 0.4301233803252314 8413.0498046875 0.14867551152371097 2 0.45248868778280543 2.463777200386808 2.412554070800381 2.5654290647256746 2.413348465634368 0.00376308 0.0031207501888275146 0.012556604109704494 442 90 90 60 3.375559227607804 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 83.63020811894596 14.688496589660645 37.071651458740234 10.110859870910645 339985.0 0.004524887073785067 135.37285156249985 105.50357818603516 2.380132565378285 196.47158813476562 941.625 916.151611328125 78979.0 522.6934448242188 1419.9869018554687 271.4056396484375 29.025484085083008 +sub-10272_ses-V1_task-rest_run-01_bold 0.0018763205417607223 0.016779935981941312 7 35.47675955230768 1.048686779230769 0.9690037708597281 0.4284952745455246 8682.0361328125 0.1487838688313115 14 3.160270880361174 2.4561008125786388 2.4066374043688215 2.5522207319171932 2.409444301449902 0.00358926 0.003022789489477873 0.011077908799052238 443 90 90 60 3.3746438408998323 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 77.79044450028901 14.685460090637207 37.03581237792969 10.060948371887207 340711.0 0.0 135.2291259765625 105.18718719482422 2.315357159871759 199.287841796875 950.3643798828125 925.05078125 78536.0 523.8978729248047 1434.0829772949219 274.1163024902344 30.249927520751953 +sub-10272_ses-V1_task-rest_run-02_bold 0.0012962669683257919 0.02198578665158371 8 36.54448523036282 1.0149104715419515 0.9600218593650784 0.4316574489146525 8235.263671875 0.2077279697110589 56 12.669683257918551 2.510859129747202 2.4438915695551406 2.6088332296676144 2.479852590018851 0.00407764 0.0036249933764338493 0.01286301203072071 442 90 90 60 3.377992744018449 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 83.85210418274272 14.69856071472168 37.36890411376953 10.185521125793457 339492.0 0.022624434903264046 135.75871658325204 105.81221771240234 2.267255345129807 195.74368286132812 933.8184814453125 910.01025390625 79420.0 509.9349670410157 1407.546307373047 269.39208984375 25.908334732055664 +sub-10272_ses-V3_task-cuff_run-01_bold 0.0011360671462829737 0.009106639760191847 9 30.732255220528852 1.0528849806009615 0.982957259783655 0.42217924365885556 8017.6533203125 0.13951835655289388 0 0.0 2.514993860850952 2.4837582346376488 2.626899895616377 2.4343234522988304 0.0057877 -0.004622175823897123 0.013348139822483063 417 90 90 60 2.888036665080688 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 76.46186689483675 17.997440338134766 44.938621520996094 12.46282958984375 342885.0 0.007194244768470526 177.7606719970702 116.18510437011719 3.6592292169919878 287.703125 1149.8004150390625 1111.3477783203125 76711.0 574.4220581054688 1822.190673828125 384.8083190917969 36.29703140258789 +sub-10272_ses-V3_task-rest_run-01_bold 0.0028827990970654626 0.013868869300225734 7 29.898338632805427 1.028963306266969 1.0335511736877827 0.4236613724804909 7525.115234375 0.13482607549146608 2 0.45146726862302483 2.5405271866487724 2.5103624002471605 2.6440748949339037 2.467144264765253 0.00386279 -0.004537774249911308 0.012744847685098648 443 90 90 60 2.9408345214560794 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 75.26506109680348 18.597789764404297 45.436676025390625 13.076749801635742 343276.0 0.05869074538350105 179.7415428161621 115.44142150878906 3.496714399364154 288.0447082519531 1157.220703125 1118.912109375 76420.0 590.3378326416016 1822.8791870117188 380.47186279296875 30.56686782836914 +sub-10275_ses-V1_task-cuff_run-01_bold 0.002368 0.014695030681818183 10 42.89759087168563 1.0855305182687927 0.9927960950569475 0.42284574160593136 5792.95703125 0.1839996506921443 2 0.45454545454545453 2.5342826821405553 2.5016874005918743 2.5692790645726893 2.5318815812571027 0.00355453 0.009327461943030357 0.01794605515897274 440 90 90 60 3.5399823311132814 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 301.4468207684746 16.133407592773438 29.318931579589844 11.570454597473145 341687.0 0.00909090880304575 98.07499694824219 79.63331604003906 1.8304778142447766 191.46966552734375 893.0181274414062 872.4193115234375 78864.0 513.8438262939453 1330.160717773436 246.44580078125 31.20794677734375 +sub-10275_ses-V1_task-cuff_run-02_bold 0.007741534988713318 0.02394728871331829 7 48.23619378199096 1.1306730381900452 1.047416153755656 0.4249381493262977 5384.91748046875 0.32098643315290165 17 3.8374717832957113 2.52253684742235 2.4893540677486232 2.551966565260626 2.526289909257802 0.00885971 0.00903578381985426 0.019286340102553368 443 90 90 60 3.678842953092275 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 300.61240115244095 16.586402893066406 29.77760887145996 12.020316123962402 341961.0 0.04063205420970917 98.64785766601562 80.46942901611328 1.7068560620478 184.75473022460938 890.9800415039062 871.533935546875 78302.0 524.9398742675781 1311.6939025878905 236.90284729003906 25.23221206665039 +sub-10275_ses-V1_task-rest_run-01_bold 0.0010203837471783298 0.01467916821670429 7 41.46432251742082 1.0724420068325782 1.0021786925791862 0.4243303577593917 6220.46630859375 0.18067746702915916 16 3.6117381489841986 2.5227882340633143 2.482974901335442 2.565858231375288 2.5195315694792138 0.00424684 0.0106324702501297 0.018830087035894394 443 90 90 60 3.6122907486926303 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 296.337721776112 15.575691223144531 29.186016082763672 11.284424781799316 341180.0 0.04063205420970917 98.44480743408201 78.7284164428711 1.928644887369079 187.59434509277344 888.8073120117188 870.632080078125 78859.0 519.7289001464844 1315.4894653320312 241.01785278320312 30.965484619140625 +sub-10275_ses-V1_task-rest_run-02_bold 0.004147972972972973 0.03360150135135135 6 59.81829286334092 1.0438187031828436 0.9928281791422122 0.42481854343467157 5625.48876953125 0.6085492309953313 255 57.432432432432435 2.6422132821148616 2.5876540638425327 2.660012394300604 2.678973388201448 0.013126 0.011632485315203667 0.019068250432610512 444 90 90 60 3.5372606956101866 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 205.44092128637845 16.392105102539062 29.286823272705078 11.898649215698242 341521.0 0.06981982290744781 96.27252197265625 77.45286560058594 1.8738953018049767 191.31912231445312 886.1010131835938 866.06982421875 79149.0 508.31036987304685 1318.9973632812496 244.8404083251953 20.592321395874023 +sub-10275_ses-V3_task-rest_run-01_bold 0.0028744920993227993 0.014833952415349889 7 45.134774126040725 1.0972119442986425 1.0138704663574667 0.423926714620657 6883.9150390625 0.2694244139666685 106 23.927765237020317 2.582652160460826 2.561666564875183 2.5957623968536696 2.5905275196536257 0.0147119 0.005690078251063824 0.02222813107073307 443 90 90 60 3.3836008862991473 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 241.87433284549687 15.441821098327637 28.396038055419922 10.753950119018555 340336.0 0.011286681517958641 97.16252899169922 74.91163635253906 1.560729765746001 209.29115295410156 898.9785766601562 875.9864501953125 80353.0 499.451025390625 1353.426220703125 258.8901672363281 29.777437210083008 +sub-10277_ses-V1_task-cuff_run-01_bold 0.005108378378378378 0.01665333015765766 6 51.04165804853275 1.1016271653273142 1.0398432658465018 0.4536517741861401 4425.63427734375 0.5213081451071974 53 11.936936936936936 2.6754896460379993 2.624033229063621 2.7578832237449 2.6445524853054776 0.0235087 0.01194941345602274 0.02458013966679573 444 90 90 60 2.8503620892462087 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 71.53146485320697 21.10036849975586 52.22075653076172 15.662162780761719 332014.0 0.26801803708076477 214.67421646118157 119.6103286743164 2.588353506525439 315.22003173828125 1078.758056640625 1043.7027587890625 85887.0 534.365771484375 1691.96962890625 366.162841796875 23.230815887451172 +sub-10277_ses-V1_task-cuff_run-02_bold 0.0009842663656884877 0.015575441986455982 7 35.951551666040714 1.0026990348868787 0.9459112293665163 0.4529723849063801 4368.8271484375 0.20897726195578753 1 0.22573363431151242 2.6442549312160764 2.5960790635077533 2.723133225125741 2.6135525050147344 0.0185703 0.011831886135041714 0.026810936629772186 443 90 90 60 2.8530836584023644 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 80.1989012842919 20.855159759521484 51.61279296875 15.504514694213867 332716.0 0.252821683883667 211.38262939453125 118.48038482666016 2.494683457407141 303.9635925292969 1062.3603515625 1023.6546630859375 85558.0 528.6494689941406 1668.5779235839836 358.7867736816406 24.601612091064453 +sub-10277_ses-V1_task-rest_run-01_bold 0.0019604966139954855 0.01309380223476298 7 37.74707915013575 1.0277020208597292 1.0021206188687786 0.4541181622760722 4297.25537109375 0.26469583929811624 105 23.702031602708804 2.6431618785335176 2.598058230095775 2.7321165581021085 2.5993108474026694 0.0169498 0.011834880337119102 0.02664613164961338 443 90 90 60 2.8729596231662415 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 77.18063837157173 21.208240509033203 52.56971740722656 15.835214614868164 331923.0 0.28893905878067017 214.258018493651 121.49124145507812 2.580463312502755 310.0378723144531 1081.341796875 1044.8216552734375 85953.0 540.4989013671875 1698.4519531249998 363.6722106933594 26.8115177154541 +sub-10280_ses-V1_task-rest_run-01_bold 0.0015916063348416288 0.021688776923076924 8 45.469508648730155 1.0010048100226756 0.9593298200680258 0.43234331060625814 5692.5205078125 0.3622642142277448 265 59.95475113122172 2.43549655381174 2.4252582369622293 2.4131999041080516 2.4680315203649394 0.0227065 -0.003603973425924778 0.021607013419270515 442 90 90 60 2.778737900942491 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 24 124.91412359290607 18.093114852905273 31.89237403869629 12.7647066116333 332356.0 0.05429864674806595 114.77206420898438 69.5267562866211 2.3285754053944494 260.1529846191406 999.584716796875 946.1652221679688 86397.0 521.7384887695313 1632.32177734375 340.49981689453125 21.482769012451172 +sub-10280_ses-V1_task-rest_run-02_bold 0.001519750566893424 0.01647296238095238 9 42.788360301090904 1.010475804272727 0.9999683607500002 0.4314842717795275 6252.6953125 0.33121209279124747 261 59.183673469387756 2.405121551496262 2.395541571476397 2.3624290727921697 2.457394010220219 0.0114546 -0.004507206846028566 0.02115735225379467 441 90 90 60 2.7826665434110374 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 198.39409610128416 17.169273376464844 31.389636993408203 12.065759658813477 332479.0 0.038548752665519714 114.29955062866206 70.72532653808594 2.40351835460471 256.8903503417969 997.982177734375 943.43310546875 86401.0 525.9160766601562 1628.548828125 339.0372619628906 24.364965438842773 +sub-10280_ses-V3_task-rest_run-01_bold 0.0018219088319088319 0.014444129401709402 8 58.08715563094285 1.1056217914571431 0.9926070045714287 0.43224801637730825 5873.35498046875 0.490362207012906 267 76.06837606837607 2.3881895977836174 2.4044207377902374 2.3327749073038535 2.427373148256761 0.0135508 -0.0025210173334926367 0.019469140097498894 351 90 90 60 2.6226501277515304 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 11 53.525061059886816 18.488178253173828 35.72467803955078 12.81766414642334 333786.0 0.014245014637708664 136.51993942260742 75.6843490600586 2.743199639792312 280.8813171386719 1041.08056640625 978.8119506835938 85030.0 532.4485748291015 1736.1138305664062 373.212646484375 25.45197105407715 +sub-10280_ses-V3_task-rest_run-02_bold 0.002121742081447964 0.014933023574660633 8 58.381578899705225 1.1348960342403622 1.0043967143083903 0.4330298409354511 5643.47802734375 0.5092675401630152 348 78.73303167420815 2.379138204429453 2.4022957378746774 2.3223165743860967 2.412802301027585 0.0235575 0.0015506744384765625 0.019413135945796967 442 90 90 60 2.6509561744156813 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 55.986107334266386 18.646574020385742 35.70797348022461 12.952488899230957 334233.0 0.018099548295140266 137.48054809570306 76.25764465332031 2.624390213400357 275.343017578125 1029.4801025390625 967.95361328125 85138.0 527.7245544433595 1711.879016113281 365.1316223144531 25.434900283813477 +sub-10281_ses-V1_task-cuff_run-01_bold 0.0015579223744292235 0.01533907413242009 12 31.909419088009134 0.9833725326086957 0.9435064337986275 0.4488090728504568 7096.28662109375 0.16709009228727711 0 0.0 2.4318980366351384 2.470812401818736 2.4198290705112986 2.40505263757538 0.0050545 0.001684726681560278 0.01644052192568779 438 90 90 60 2.631798681542089 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 68.27890942491094 18.349740982055664 40.91611862182617 12.897259712219238 323320.0 0.05936072766780853 160.2832107543945 93.6018295288086 2.6312089782255326 312.0132141113281 1150.6343994140625 1082.171142578125 93747.0 582.263671875 1924.821594238281 411.1885070800781 27.235002517700195 +sub-10281_ses-V1_task-rest_run-01_bold 0.003750546697038725 0.013692483644646924 11 32.054845500867565 1.0410980342694058 1.056389167762557 0.4473803280537959 7421.08056640625 0.15807771356612937 23 5.239179954441913 2.424639705003351 2.462570735479564 2.413408237433106 2.397940142097383 0.00536748 0.0005100237904116511 0.016704576089978218 439 90 90 60 2.6153508879023635 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 64.97537108051603 18.30118751525879 40.93003463745117 12.790432929992676 324110.0 0.03416856750845909 161.5484138488768 92.65239715576172 2.7061307775871617 316.3819274902344 1160.1043701171875 1089.50341796875 93153.0 591.275634765625 1943.785498046875 416.5779724121094 28.673789978027344 +sub-10281_ses-V1_task-rest_run-02_bold 0.0018899092970521543 0.015008153854875283 9 34.59118749427275 1.011382367136364 0.9593829490909089 0.44881356609504386 7302.49853515625 0.18064086667770318 38 8.616780045351474 2.439884144749186 2.477379068224467 2.4237332370228275 2.418540129000264 0.00468104 0.0013329173671081662 0.01689332351088524 441 90 90 60 2.6448058557414678 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 66.66749803689608 18.208105087280273 40.60893249511719 12.795918464660645 323375.0 0.054421767592430115 160.8272140502928 90.93181610107422 2.5754988460949892 311.7062683105469 1149.313720703125 1082.3175048828125 93763.0 581.8716369628906 1919.80888671875 409.22161865234375 27.010421752929688 +sub-10282_ses-V1_task-rest_run-01_bold 0.00210683257918552 0.018052739298642533 8 47.58218053365078 1.1073526605215425 0.9908861014512463 0.4219568013062942 6766.49169921875 0.28621263035348 146 33.0316742081448 2.443233932463419 2.4778832348711 2.4299707367749717 2.421847825744186 0.00556666 0.009281476959586143 0.02103518135845661 442 90 90 60 3.055890091736145 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 100.95141736064649 19.193326950073242 40.243228912353516 13.43891429901123 343687.0 0.04751131311058998 152.11766052246094 97.53765106201172 3.0855936142236065 267.9284973144531 1104.9122314453125 1072.708251953125 77764.0 588.0625823974609 1731.0512939453092 351.0274658203125 27.154916763305664 +sub-10282_ses-V1_task-rest_run-02_bold 0.006316862302483069 0.033040986907449214 7 58.63124137128961 1.1205407809954768 1.0209726728959285 0.42138720231837795 6149.9384765625 0.47099403085010827 227 51.24153498871332 2.498688160346864 2.516499900003278 2.4840540679592267 2.495510513078087 0.00768875 0.008784801699221134 0.019987553358078003 443 90 90 60 3.0412053882202263 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 45 60.64492395379371 20.12724494934082 39.515316009521484 14.040632247924805 344935.0 0.07900677621364594 148.39413146972652 86.96788024902344 3.2560194382396057 263.993408203125 1099.3255615234375 1067.259521484375 77072.0 585.9983337402343 1724.4072143554686 350.9307861328125 19.57449722290039 +sub-10284_ses-V1_task-rest_run-01_bold 0.0011545927601809953 0.019359248642533935 8 56.23206637278909 1.0813394854421772 0.9843421760544224 0.44986717845969487 6444.11328125 0.42815204485838665 285 64.47963800904978 2.3626590245098464 2.4381332364506227 2.2790415761056906 2.3708022609732256 0.0116632 0.0013928543776273727 0.012125711888074875 442 90 90 60 2.785341060715981 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 17 53.86504279608925 18.794164657592773 38.741981506347656 13.2647066116333 324273.0 0.06334841996431351 154.15023193359366 81.90830993652344 3.7659636621289483 284.20013427734375 1115.88525390625 1055.065673828125 92313.0 599.3126953125001 1809.686474609375 378.79022216796875 23.736026763916016 +sub-10285_ses-V1_task-rest_run-01_bold 0.0007272911963882619 0.006636273995485328 7 38.27405221877827 1.0274265214932128 0.9936104817420821 0.5552996264586002 368.5729675292969 0.1411548689416841 28 6.320541760722348 2.6229069259044806 2.4244915703260275 2.8566290531544265 2.587600154232988 0.0219508 -0.013828471302986145 0.1252126544713974 443 90 90 54 2.1474207822154177 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 18.588865160767917 5.585695266723633 29.21745491027832 11.898420333862305 277581.0 7.961625576019287 115.76298522949219 43.5400390625 2.3047443695210257 97.32966613769531 268.4048767089844 247.34877014160156 94598.0 118.9590347290039 484.11367492675765 115.18350982666016 33.71430206298828 +sub-10285_ses-V1_task-rest_run-02_bold 0.0012030405405405406 0.00989953671171171 6 42.73747931961624 1.033284595259594 1.0045342444920988 0.5763865316891061 223.38246154785156 0.1596785644127255 35 7.882882882882883 2.666502671820482 2.458149902321899 2.8962457182468686 2.645112394892677 0.0204295 -0.03805573284626007 0.11917393654584885 444 90 90 54 2.0479228306807005 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 2 14.717714122580322 10.0409574508667 31.976417541503906 14.380631446838379 270120.0 6.896396636962891 124.72331466674797 44.868995666503906 2.688705840036911 93.91819763183594 254.87814331054688 232.97073364257812 101031.0 111.55518341064453 470.35923767089844 113.75896453857422 29.8227481842041 +sub-10285_ses-V3_task-cuff_run-01_bold 0.0007273303167420814 0.009391945067873301 8 38.69248928655328 1.0282962235147382 0.9966333729251698 0.5707811295126761 276.80535888671875 0.12368524844546877 0 0.0 2.685727759940183 2.457237402358158 2.915749884138509 2.684195993323882 0.0160553 -0.024797262623906136 0.11663183569908142 442 90 90 54 2.2041496023598275 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.69586687813171 7.476743698120117 30.080026626586914 13.296380996704102 273090.0 7.914027690887451 115.03292350769041 41.77650833129883 1.698636003450254 92.07564544677734 258.00677490234375 238.50001525878906 98207.0 115.44434814453125 463.16247253417964 108.20445251464844 30.771289825439453 +sub-10285_ses-V3_task-cuff_run-02_bold 0.0005580542986425339 0.009306900678733031 8 39.120931759478445 1.0270827495011345 0.9904251902267573 0.5732737014683684 270.4326171875 0.12619829928481285 0 0.0 2.6729124824049357 2.447033236096969 2.895562384940688 2.6761418261771497 0.0166172 -0.025686968117952347 0.11954330652952194 442 90 90 54 2.2121232782041456 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.549098985636583 7.540473461151123 30.628772735595703 13.375566482543945 272876.0 7.943439483642578 117.32975387573242 42.61724853515625 1.8011310915846916 91.0660171508789 257.1843566894531 237.5633544921875 98231.0 116.39706420898438 461.4412078857422 107.39100646972656 31.09845733642578 +sub-10285_ses-V3_task-rest_run-01_bold 0.0008522972972972973 0.009395186328828829 6 38.901603870767474 1.0329256690970658 0.9949507035665917 0.5690534214879273 289.2601623535156 0.12713634939117682 9 2.027027027027027 2.691097204436313 2.4606290688900523 2.9204623839512514 2.6922001604676344 0.0112081 -0.023071492090821266 0.11637523025274277 444 90 90 54 2.209176623990393 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.675627920762476 7.1558942794799805 30.07912826538086 13.12387466430664 273353.0 7.975225448608398 115.32702941894527 42.14595413208008 1.6473278233244137 93.03663635253906 260.2983093261719 240.799560546875 97889.0 116.04910278320312 466.9279479980469 108.99913024902344 31.291955947875977 +sub-10285_ses-V3_task-rest_run-02_bold 0.001988562691131498 0.012114820152905199 6 41.17795937199393 1.0344599076380359 0.9967298188957064 0.574197665736909 264.50726318359375 0.15738039932893205 17 5.198776758409786 2.6920944266198745 2.466687401982649 2.9173665507409354 2.6922293271360394 0.00746944 -0.02585717663168907 0.12047839909791946 327 90 90 54 2.197475730136133 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 15.487392408863766 7.7167863845825195 30.63899803161621 13.461773872375488 272564.0 7.90519905090332 116.5316532135009 42.45281982421875 1.7782743857335657 90.4818115234375 255.4169464111328 235.98318481445312 98612.0 114.12875022888184 459.9816589355469 107.38775634765625 29.369129180908203 +sub-10287_ses-V1_task-cuff_run-01_bold 0.0011039503386004515 0.012488433069977427 7 51.27345995665159 1.0791461649773764 0.9999040817194573 0.4372109120056945 2731.395751953125 0.31143347571233926 3 0.6772009029345373 2.5518771593100227 2.5329498993496142 2.489862401061757 2.632819177518696 0.0109234 0.008484586142003536 0.04275427386164665 443 90 90 60 2.3060329037143346 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 71.21519026591274 23.718290328979492 47.51653289794922 17.39954948425293 337959.0 0.06320542097091675 172.3171539306638 109.0865249633789 2.866560376928745 297.8791809082031 970.7328491210938 903.1670532226562 82401.0 439.1512451171875 1715.9029541015625 391.6516418457031 25.42206573486328 +sub-10287_ses-V1_task-cuff_run-02_bold 0.0024559049773755655 0.012182423914027147 8 50.189619215623615 1.091093246371881 1.0371991048526072 0.43795079961435845 2746.030517578125 0.29109512493723 14 3.167420814479638 2.5391938206471454 2.522308233105809 2.4800707347841766 2.615202494051451 0.0155781 0.00965535081923008 0.04127776622772217 442 90 90 60 2.325972486721114 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 71.3936784982973 23.560632705688477 47.13446044921875 17.217195510864258 337842.0 0.03846153989434242 171.6873374938966 107.48308563232422 2.87327551908834 294.0248107910156 962.0296020507812 896.7964477539062 82535.0 436.7396057128906 1697.799194335938 385.5552978515625 25.641796112060547 +sub-10287_ses-V1_task-rest_run-01_bold 0.0017023863636363636 0.01073936325 10 47.18678554822327 1.082622767927107 1.0149023446697039 0.43612258397750797 2740.080810546875 0.22711043908320694 134 30.454545454545453 2.5379771521785957 2.526199899617835 2.478116568195161 2.6096149887227904 0.00848173 0.00731014646589756 0.04198870062828064 440 90 90 60 2.2908214697528346 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 73.90507735624072 23.698049545288086 47.654476165771484 17.399999618530273 338434.0 0.05454545468091965 173.81442489624018 109.56836700439453 2.826048993816457 303.0472717285156 976.0990600585938 907.4454345703125 82125.0 438.9804321289062 1734.680859375 396.119873046875 27.17879295349121 +sub-10287_ses-V1_task-rest_run-02_bold 0.0018096153846153846 0.011496756809954751 8 49.165426734149655 1.078577925328798 1.0366100139002261 0.4386678465630383 2645.488037109375 0.25601823178555594 151 34.16289592760181 2.5287882597777753 2.5172207333079686 2.4712374018018486 2.5979066442235097 0.00846812 0.009963231161236763 0.041326846927404404 442 90 90 60 2.3289156250774883 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 71.88084164424419 23.728343963623047 47.50904083251953 17.472850799560547 337833.0 0.05429864674806595 175.23711547851468 108.27392578125 2.8740564709216923 292.9447937011719 961.7892456054688 896.201416015625 82525.0 437.6027465820313 1697.7013916015626 384.81256103515625 26.22551918029785 +sub-10288_ses-V1_task-rest_run-01_bold 0.0005031981981981983 0.007125051396396396 6 45.46983590577878 1.0715540450112868 0.9895146786230256 0.5320921791793599 455.4088439941406 0.29487611669239505 182 40.990990990990994 3.008436102406412 2.616433229365618 3.061624878341958 3.347250199511659 0.0036602 -0.0018659995403140783 0.09841269254684448 444 90 90 54 2.2408609133346844 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.16418647253016 3.893500804901123 22.66743278503418 10.430180549621582 280808.0 7.691441535949707 74.9676799774169 34.51981735229492 1.217787420360394 88.3216781616211 259.4931945800781 237.55630493164062 92499.0 125.6934700012207 470.7261505126952 106.01060485839844 32.93089294433594 +sub-10288_ses-V1_task-rest_run-02_bold 0.0006686199095022625 0.007151678325791855 8 46.44149701562358 1.088990526258504 1.0021604180272101 0.5336890941077131 432.15655517578125 0.30468006458692226 187 42.30769230769231 2.9942055470475233 2.5875957305115174 3.058908211783242 3.336112698847812 0.00306449 -0.005907159764319658 0.11514081060886383 442 90 90 54 2.212084741376323 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.81879698933065 3.9748499393463135 23.558815002441406 10.47963809967041 283309.0 7.710407733917236 78.94661102294901 36.82231140136719 1.1361745670611025 87.75697326660156 255.31881713867188 232.65272521972656 88584.0 124.73597679138183 465.61925659179684 105.17292022705078 32.58570861816406 +sub-10288_ses-V3_task-cuff_run-01_bold 0.0010150786516853931 0.008343847887640449 5 43.458467835675684 1.0444153004054055 1.0002282879729736 0.5555497874395813 367.6288757324219 0.25242494318114367 0 0.0 2.8614472087077307 2.4923499009629126 3.0663790448197106 3.025612680340569 0.00268703 -0.012179898098111153 0.0973515510559082 445 90 90 54 2.48311968878208 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 38.1914694902416 3.8880839347839355 22.407472610473633 10.79775333404541 273383.0 8.044943809509277 72.09842758178709 32.90083694458008 0.5266845373311959 82.42936706542969 234.62049865722656 221.76853942871094 98469.0 107.63910369873048 399.3820251464842 89.30999755859375 30.743999481201172 +sub-10288_ses-V3_task-cuff_run-02_bold 0.0005550112866817155 0.0070535921218961625 7 44.06246796343888 1.0404108145475104 0.9961609123755649 0.5561494121131486 362.7509765625 0.26698426273809456 0 0.0 2.8526472085351813 2.4954707341722355 3.052629045366087 3.009841846067221 0.00415772 -0.012389549985527992 0.09791798144578934 443 90 90 54 2.464187907598683 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.55149456159848 3.8654754161834717 22.410188674926758 10.792325019836426 273023.0 8.060948371887207 72.71309204101561 32.89183807373047 0.5495454380539879 82.02505493164062 233.36607360839844 220.4198760986328 98921.0 106.26636505126953 398.3498840332031 89.44884490966797 32.5815544128418 +sub-10288_ses-V3_task-rest_run-01_bold 0.0010818243243243242 0.00905625470720721 6 43.062745673273106 1.0435606772009034 0.9903938210835214 0.5525347820423537 378.75079345703125 0.27133951009610446 168 37.83783783783784 2.833870820506227 2.485220734579534 3.0031123806670355 3.0132793462721117 0.00586879 -0.012660416774451733 0.09136757254600525 444 90 90 54 2.4917506042526725 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.031658030706637 3.960284471511841 22.643251419067383 10.804054260253906 275119.0 7.957207202911377 74.24549865722656 32.90093994140625 0.6948503288602508 81.37281799316406 238.0928955078125 224.06982421875 96695.0 113.79977798461914 406.24482727050787 89.9241943359375 30.896373748779297 +sub-10288_ses-V3_task-rest_run-02_bold 0.0012490786516853934 0.009891211887640451 5 44.52597309657659 1.0197071613738746 0.9933323052252256 0.5559090279303335 358.9836730957031 0.3043758827277632 182 40.89887640449438 2.9011416532657273 2.524983232999514 3.1017665434135377 3.0766751833841313 0.0034321 -0.011073581874370575 0.09729303419589996 445 90 90 54 2.4611823616168054 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.6279920383228 3.9447214603424072 22.28788185119629 10.788763999938965 273066.0 7.932584285736084 71.1848316192627 32.3913459777832 0.5755460563800225 81.17164611816406 231.1107635498047 218.21348571777344 98714.0 105.80269927978517 395.0084274291991 88.66160583496094 28.469280242919922 +sub-10292_ses-V1_task-rest_run-01_bold 0.0010995022624434388 0.01214066633484163 8 45.881492839750614 1.131810421791384 0.9909669879365081 0.42097620416618237 7711.41796875 0.2917889791291609 217 49.09502262443439 2.407667366956023 2.423204070377188 2.396074904788538 2.403723125702342 0.00623329 -0.006797941401600838 0.017061136662960052 442 90 90 60 2.897820368032992 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 177.56347293658766 17.710723876953125 30.926286697387695 12.61991024017334 335842.0 0.05882353335618973 116.22353134155284 62.91521453857422 3.4468085065896705 298.7509460449219 1142.405517578125 1098.4027099609375 83541.0 603.194580078125 1810.893798828125 379.04217529296875 31.023786544799805 +sub-10292_ses-V1_task-rest_run-02_bold 0.0012611791383219952 0.00894551380952381 9 44.615488368795454 1.1632163993636366 0.9974383236363635 0.4207796514610034 8077.26318359375 0.26094842506065896 172 39.002267573696145 2.3718548537538564 2.3928957382481997 2.3631124060983497 2.35955641691502 0.00602297 -0.007008034270256758 0.016777925193309784 441 90 90 60 2.9138397524075246 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 153.5270451055576 17.229787826538086 30.73874282836914 12.19727897644043 335936.0 0.0317460335791111 117.37528610229492 63.082393646240234 3.4134645575504354 295.71527099609375 1137.9088134765625 1092.797119140625 83410.0 608.8066009521485 1801.9055664062503 375.0345458984375 35.16904067993164 +sub-10293_ses-V1_task-rest_run-01_bold 0.0008615575620767495 0.008629069074492098 7 46.4402158918099 1.0532378901357462 0.9944788026018098 0.5879115577876747 168.09231567382812 0.2758742180000226 183 41.309255079006775 2.7204166475200604 2.529045732838085 2.945912382939959 2.6862918267821367 0.0119018 -0.004174730274826288 0.11580295115709305 443 90 90 54 2.0772971979928334 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 21.755090874526957 13.048908233642578 36.72012710571289 18.036117553710938 268087.0 8.374717712402344 133.30339355468743 50.889976501464844 2.8316359408530385 101.82096862792969 267.77325439453125 248.9006805419922 102589.0 105.83386535644532 486.82891235351565 119.81890106201172 32.3663330078125 +sub-10293_ses-V1_task-rest_run-02_bold 0.0013632805429864255 0.009293510588235295 8 46.10455913938773 1.0650294062358274 1.0141677520408163 0.5909200263721749 157.87448120117188 0.2778616174912272 196 44.34389140271493 2.7080763697911254 2.5231707330715363 2.9280998836477647 2.672958492654075 0.00783926 -0.00262430333532393 0.11432810127735138 442 90 90 54 2.0803171462585786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 22.126370377210513 13.537969589233398 37.04197311401367 18.350679397583008 267672.0 8.323530197143555 132.93416824340812 50.87281799316406 2.8161654126334943 99.77545166015625 264.42242431640625 245.33372497558594 102806.0 105.46832847595215 480.8772735595703 117.93035125732422 31.579713821411133 +sub-10293_ses-V3_task-cuff_run-01_bold 0.0026227990970654627 0.010117370880361173 7 48.057035083778295 1.0937048543438905 1.026873353167421 0.580628752623571 181.9607391357422 0.34895898213701126 1 0.22573363431151242 2.7566555357007574 2.575441564327814 2.98613321467506 2.7083918280993995 0.00440758 0.003998782951384783 0.11787352710962296 443 90 90 54 2.036476213539058 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.00182214539853 12.690808296203613 35.3907585144043 17.5869083404541 268292.0 8.277652740478516 127.38025054931637 48.343788146972656 2.3050944498626507 106.19181823730469 276.39947509765625 254.4537353515625 102305.0 109.39729309082031 505.7327392578122 124.94744110107422 31.1187686920166 +sub-10293_ses-V3_task-cuff_run-02_bold 0.0007084650112866819 0.012202338758465011 7 48.20666138839371 1.0258140197737562 0.9701107469457007 0.5814068038636685 177.46630859375 0.35330988845357464 0 0.0 2.7696583135431347 2.593020730295947 2.990008214521082 2.7259459958123764 0.00517685 0.00658429367467761 0.11690749228000641 443 90 90 54 2.025835738691371 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.82115062651883 12.848104476928711 35.221431732177734 17.629796981811523 268136.0 8.169300079345703 125.95203399658203 47.41728591918945 2.4889054044413257 105.20451354980469 274.5099792480469 252.2686309814453 102415.0 108.7164794921875 503.40972900390614 124.52510070800781 28.9208984375 +sub-10293_ses-V3_task-rest_run-01_bold 0.00040817567567567566 0.009731906058558558 6 47.33128398282171 1.0278446330925506 0.9673292038600451 0.5790437744836764 191.37017822265625 0.35415085346552494 252 56.75675675675676 2.770034702491849 2.5914040636935205 2.9904957145017104 2.7282043292803166 0.00608183 0.004042234271764755 0.11866168677806854 444 90 90 54 2.0374347303942693 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 20.259353887843204 12.441838264465332 35.199764251708984 17.25225257873535 268359.0 8.141892433166504 127.97320175170893 48.074119567871094 2.5137227643573254 106.60711669921875 277.6068115234375 255.51914978027344 102156.0 110.59121894836426 507.4071044921875 125.41157531738281 30.33627700805664 +sub-10293_ses-V3_task-rest_run-02_bold 0.0007820090293453724 0.012430415191873588 7 47.769182386561084 1.0343579213122174 0.9786901875339377 0.5829795041640059 174.68301391601562 0.3510834388753279 250 56.433408577878104 2.761823591262743 2.5798123974874656 2.990870714486809 2.714787661813954 0.0047109 0.006268464960157871 0.1177394762635231 443 90 90 54 2.034272680171404 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.303743706166657 13.072335243225098 35.50389862060547 17.7020320892334 268002.0 8.133183479309082 127.54842529296872 47.744361877441406 2.4983230682016737 104.2841567993164 272.9131164550781 250.8916473388672 102463.0 109.51038818359375 499.98354492187497 123.33175659179688 28.871368408203125 +sub-10294_ses-V1_task-cuff_run-01_bold 0.0016567272727272728 0.008654985295454545 10 35.31684316296129 1.074953527949886 1.004624333986333 0.5843774157762003 386.6838684082031 0.11497395903630306 1 0.22727272727272727 2.8274222028448412 2.5922290636607386 3.0823082108534092 2.8077293340203764 0.0145363 -0.038559675216674805 0.15426337718963623 440 90 90 54 2.2662272494735802 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 18.069961583583957 7.439967632293701 36.165489196777344 13.504545211791992 256990.0 8.145454406738281 154.35772094726542 56.11679458618164 2.7245602196579544 104.30107879638672 301.9561767578125 287.3613586425781 112135.0 125.3499984741211 531.4838623046874 126.80108642578125 36.06331253051758 +sub-10294_ses-V1_task-cuff_run-02_bold 0.0016208558558558558 0.007519080180180181 6 34.89764936018059 1.0671685324153497 1.0000012349435672 0.5853145673538952 377.1932373046875 0.12132594442100816 2 0.45045045045045046 2.820879147373367 2.591612397018576 3.068608211397798 2.8024168337037265 0.0164168 -0.037909675389528275 0.15247201919555664 444 90 90 54 2.2638223845826646 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 16.263452676161137 7.529882907867432 36.17498016357422 13.558558464050293 256772.0 8.110360145568848 155.59234619140625 55.68995666503906 2.8069360504599166 103.80220031738281 299.83514404296875 285.4009094238281 112261.0 124.50450897216797 527.9752197265625 126.0698013305664 35.777366638183594 +sub-10294_ses-V1_task-rest_run-01_bold 0.0015122799097065463 0.008368891038374716 7 35.38031770101812 1.087658742013575 1.0029648927601809 0.5822151518097107 401.7809753417969 0.11702656189431189 9 2.0316027088036117 2.84093331401208 2.598449896746878 3.098712376868233 2.8256376684211295 0.0116733 -0.035571854561567307 0.14887884259223938 443 90 90 54 2.2815924884571976 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 16.426534702587265 7.2021660804748535 35.22309112548828 13.306998252868652 257357.0 8.08126449584961 151.20678100585886 54.04985046386719 2.638847463816478 104.7075424194336 303.24224853515625 288.820556640625 111792.0 126.68420104980468 532.5039825439453 126.58670043945312 34.296966552734375 +sub-10294_ses-V1_task-rest_run-02_bold 0.0036141573033707866 0.011755935168539325 5 36.26979041725229 1.091836659076577 1.0318280845270271 0.5861782792616451 365.54132080078125 0.14728980953592632 36 8.089887640449438 2.8419777582377264 2.6108957295856583 3.09475404369219 2.8202835014353296 0.0122997 -0.03796859458088875 0.1541028916835785 445 90 90 54 2.264672783329735 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 16.87949358420319 7.686208724975586 36.23988723754883 13.680898666381836 256901.0 8.164045333862305 154.50112915039062 55.531715393066406 2.7764956635296283 102.84259033203125 298.48297119140625 284.15057373046875 112333.0 123.30472106933593 525.644482421875 125.4703598022461 31.886507034301758 +sub-10294_ses-V3_task-cuff_run-01_bold 0.0007964253393665158 0.008080513371040722 8 35.70538568392294 1.0560943083446706 0.978190687528344 0.5723451330099937 381.5196838378906 0.17718422432100941 1 0.22624434389140272 2.959824984598884 2.6700457272352485 3.1227373759135655 3.086691850647838 0.00667243 -0.03250275179743767 0.13441967964172363 442 90 90 54 2.124261120437154 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 16.654967339409954 8.023494720458984 33.47158432006836 13.82579231262207 259985.0 8.11991024017334 130.17602539062483 47.71776580810547 1.5564581841507383 118.700439453125 312.35845947265625 292.13348388671875 110194.0 123.25713386535645 569.7640319824218 137.5217742919922 35.61161422729492 +sub-10294_ses-V3_task-cuff_run-02_bold 0.0009448642533936651 0.0057426142986425335 8 34.953725550997746 1.0886112442403628 1.003609585079364 0.5741544659310591 362.6540832519531 0.12871930088890002 0 0.0 2.9233430399315843 2.646258228180479 3.087587377310301 3.036183514303973 0.00564833 -0.03441730514168739 0.13918401300907135 442 90 90 54 2.1291937440964053 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 16.12835321288429 8.275066375732422 33.83005142211914 14.056561470031738 260289.0 8.185521125793457 132.04751586914062 48.21706771850586 1.6225799649441948 117.90042877197266 310.97100830078125 290.8846130371094 110044.0 124.62591018676758 566.5238861083983 136.61663818359375 40.011009216308594 +sub-10294_ses-V3_task-rest_run-01_bold 0.0006219638826185101 0.006243856523702032 7 35.24225479223983 1.0726103952488686 0.9807495246832583 0.5698095886158507 395.39813232421875 0.15185027643460192 13 2.9345372460496613 2.946529151055444 2.6590957276703624 3.116099876177316 3.064391849318654 0.00460121 -0.03013848513364792 0.1308874934911728 443 90 90 54 2.133127125395786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 16.121698887791602 7.697483539581299 32.852928161621094 13.670429229736328 260740.0 8.171444559097292 128.14503479003895 46.82671356201172 1.5326098250878344 119.84310913085938 314.4260559082031 294.60723876953125 109673.0 123.97020568847657 572.4641235351562 138.10986328125 37.930301666259766 +sub-10294_ses-V3_task-rest_run-02_bold 0.0010963265306122448 0.006806813446712018 9 35.47713504279546 1.0935232826363643 1.0044799184318183 0.5741748721551382 356.43438720703125 0.1463234184771076 14 3.1746031746031744 2.9304860956688237 2.6518373946254497 3.089379043905773 3.0502418484752485 0.00671305 -0.03359641134738922 0.13847772777080536 441 90 90 54 2.1260512004414847 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.757818845183248 8.312321662902832 33.62202072143555 14.094104766845703 260308.0 8.190476417541504 130.8843536376953 47.67780685424805 1.6057672096073166 116.75574493408203 309.6512756347656 288.99774169921875 109945.0 124.17551422119142 565.1719116210937 135.9310760498047 38.130008697509766 +sub-10295_ses-V1_task-cuff_run-01_bold 0.001127392290249433 0.013756877505668934 9 38.462604158659076 1.0629912468181815 0.9509979678636363 0.4326106051681793 9072.36328125 0.20936101097071205 0 0.0 2.5136994161781336 2.4727999017397604 2.63256656205787 2.4357317847367703 0.0143429 -0.009463739581406116 0.026020187884569168 441 90 90 60 2.4985379854902505 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 498.6567941613228 17.22978973388672 37.03568649291992 12.120182037353516 326387.0 0.0634920671582222 139.89592285156257 101.09815216064453 5.636730060270091 338.6082458496094 1221.503662109375 1150.04638671875 91460.0 633.369497680664 2050.2408203125 460.28521728515625 27.813688278198242 +sub-10295_ses-V1_task-cuff_run-02_bold 0.0008281447963800906 0.008346484773755656 8 38.59127801562357 1.1274715626077094 1.0159474276190474 0.4320027601102663 10003.0869140625 0.2054233580039563 0 0.0 2.4618827637248484 2.426120736927957 2.584970730615825 2.3745568236307633 0.0139729 -0.009507409296929836 0.02654099650681019 442 90 90 60 2.5156300622347016 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 519.426655647244 16.533363342285156 36.56015396118164 11.425339698791504 326588.0 0.0067873308435082436 140.84762878417962 100.64686584472656 5.3709326331783895 332.965087890625 1210.8099365234375 1141.52490234375 91347.0 628.62490234375 2028.2276733398437 453.7704772949219 36.31999969482422 +sub-10295_ses-V1_task-rest_run-01_bold 0.0021734389140271493 0.009622676583710407 8 38.784464306394526 1.1346424539002267 1.0466129995918363 0.43097880850899034 10225.962890625 0.2130676893707826 68 15.384615384615385 2.4974049745749523 2.4519457359017633 2.6155790627328925 2.4246901250902018 0.00470327 -0.0097733149304986 0.02593773789703846 442 90 90 60 2.489014128159607 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 567.6802947822556 16.70443344116211 36.98103713989258 11.617647171020508 326692.0 0.029411766678094864 140.93722381591812 104.00214385986328 5.691815309042974 343.9703369140625 1237.7332763671875 1165.04541015625 91072.0 641.3855529785156 2079.089147949219 468.0724792480469 32.79051208496094 +sub-10295_ses-V1_task-rest_run-02_bold 0.0013299321266968327 0.009044367850678733 8 38.460275312743796 1.1219524272335604 0.9890990412244899 0.43183602864148335 9977.1689453125 0.1997532809345283 33 7.46606334841629 2.4761063700264194 2.437616569804487 2.5947832302259113 2.39591931004886 0.00401264 -0.009751016274094582 0.026571720838546753 442 90 90 60 2.5029901687180964 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 561.6763984369599 16.684307098388672 36.65491485595703 11.436652183532715 326718.0 0.0 141.52330856323226 100.82485961914062 5.298354018502737 336.3293762207031 1212.944091796875 1143.6357421875 91369.0 623.5072753906251 2036.2829345703121 456.9053039550781 34.15339660644531 +sub-10295_ses-V3_task-cuff_run-01_bold 0.0024629119638826186 0.008792667449209932 7 37.7731945591855 1.1372593923529406 1.0068159117194575 0.43645909590247217 10484.01171875 0.16129726049744228 0 0.0 2.54026051645699 2.4803624014392534 2.655479061147409 2.4849400867843077 0.0117597 -0.008437941782176495 0.021892230957746506 443 90 90 60 2.5347923091473716 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 184.3832657373128 15.579036712646484 35.23867416381836 10.796839714050293 324391.0 0.009029345586895943 137.28217315673828 89.11527252197266 5.199858062370941 335.456298828125 1177.3099365234375 1113.24609375 93241.0 607.6298217773438 1956.3792724609375 439.1839599609375 34.35166931152344 +sub-10295_ses-V3_task-cuff_run-02_bold 0.0008649090909090909 0.006263705795454546 10 38.11511182667423 1.1342935144191342 1.0216091961503422 0.436547783992059 10458.578125 0.1732043881864879 0 0.0 2.5130383022099196 2.464483235403568 2.6243873957162145 2.4502442755099767 0.00351276 -0.007934648543596268 0.022082621231675148 440 90 90 60 2.5405622728003503 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 243.21783755524834 15.412323951721191 35.40011215209961 10.788636207580566 324488.0 0.02499999850988388 136.61260910034125 92.12689208984375 5.055556178746647 335.25347900390625 1175.2811279296875 1112.1318359375 93094.0 605.181576538086 1954.9659790039043 437.7479248046875 39.47773361206055 +sub-10295_ses-V3_task-rest_run-01_bold 0.0009564044943820224 0.011476023213483146 5 38.31820052396396 1.091213720855857 0.9836227307882881 0.43570714607173233 10360.6923828125 0.1819140100619778 22 4.943820224719101 2.5332896833087624 2.474529068337716 2.639937395098313 2.4854025864902582 0.00353309 -0.008096515201032162 0.022055361419916153 445 90 90 60 2.554203670110024 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 182.38204474527922 15.875504493713379 34.828216552734375 11.006741523742676 324824.0 0.013483146205544472 132.76820297241207 88.71290588378906 5.07705327463994 337.2337341308594 1188.5550537109375 1124.2493896484375 92777.0 616.8826782226563 1974.3204589843742 440.1541442871094 32.870033264160156 +sub-10295_ses-V3_task-rest_run-02_bold 0.0006829545454545454 0.005938756454545454 10 39.506088560865585 1.1395411087699314 0.9860195097266526 0.4352982875598163 10654.03515625 0.19078454466259676 31 7.045454545454546 2.4981480282101916 2.453095735856067 2.607141563068169 2.4342067857063387 0.00402656 -0.008441565558314323 0.02332833781838417 440 90 90 60 2.5378748621679574 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 287.0290042771114 15.580801010131836 35.691200256347656 10.768181800842285 324980.0 0.0022727272007614374 139.47044372558594 95.33372497558594 5.166578497779996 337.11004638671875 1187.4244384765625 1121.78515625 92678.0 615.6384887695312 1974.6827331542959 442.01513671875 39.638675689697266 +sub-10296_ses-V1_task-cuff_run-01_bold 0.0010405630630630632 0.009926259054054053 6 41.78283377932281 1.0526922010158015 0.9964875069300233 0.5838266750934632 281.369140625 0.17216322195966927 3 0.6756756756756757 2.6510902601626793 2.403904071144101 2.9000165514303626 2.649350157913575 0.0115107 -0.011747611686587334 0.14956842362880707 444 90 90 54 2.48322885774167 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 16.996546862793753 8.50158977508545 33.72605514526367 14.04955005645752 270265.0 7.961711883544922 132.42027282714838 49.39750289916992 1.1531677398879099 94.04340362548828 266.8335876464844 253.20045471191406 100952.0 124.18412628173829 449.8394271850585 101.96369934082031 31.949909210205078 +sub-10296_ses-V1_task-cuff_run-02_bold 0.0015615540540540541 0.011218448536036036 6 45.32808126451468 1.0624010000677206 1.0045935061173827 0.5855641030745284 273.23486328125 0.2382391474987728 12 2.7027027027027026 2.6415708157039686 2.395404071481861 2.8918123850897 2.637495990540345 0.0118772 -0.011974437162280083 0.1511373072862625 444 90 90 54 2.4782349048135903 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 16.983252788198303 8.701940536499023 34.058837890625 14.175676345825195 270207.0 7.961711883544922 133.71036529541007 49.7938117980957 1.1742648142839665 93.36555480957031 264.6513977050781 251.02139282226562 101076.0 122.96452713012695 446.5242156982422 101.2898941040039 30.65074348449707 +sub-10296_ses-V1_task-rest_run-01_bold 0.0010269144144144145 0.008038532004504504 6 42.45553941076749 1.0731877817155753 1.0015585523024835 0.5820002327756073 286.0821533203125 0.18056467294242012 90 20.27027027027027 2.652027760037813 2.411158237522513 2.898220718168389 2.6467043244225374 0.00946553 -0.011859088204801083 0.14665602147579193 444 90 90 54 2.473343389570545 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 17.476697861922606 8.421448707580566 33.592620849609375 14.024775505065918 270627.0 8.011260986328125 132.06532287597656 49.56100082397461 1.1811132487864349 95.54436492919922 269.5526123046875 255.659912109375 100787.0 124.44054412841797 455.42885131835936 103.36560821533203 33.41030502319336 +sub-10296_ses-V1_task-rest_run-02_bold 0.0021561036036036037 0.010230506013513514 6 44.808337907088045 1.0748204854401806 1.0189705344920994 0.5858873626743556 267.01641845703125 0.22845137917974556 126 28.37837837837838 2.626958316011981 2.3867665718250843 2.864845719494592 2.6292626567162665 0.0115644 -0.011491600424051285 0.14913640916347504 444 90 90 54 2.478903631413945 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 17.0684891492584 8.698600769042969 33.71913528442383 14.150900840759277 270250.0 7.941441535949707 132.01700439453123 49.064605712890625 1.1930839359647107 92.86465454101562 262.8331298828125 249.45721435546875 101090.0 121.85889968872071 443.33356933593745 100.63157653808594 31.268571853637695 +sub-10297_ses-V1_task-cuff_run-01_bold 0.0015078603603603602 0.006651922139639639 6 36.906897387968385 1.046735264108352 1.0118364275395033 0.5577780447936916 475.72955322265625 0.1591793341355532 0 0.0 2.6779985940814903 2.4548707357855344 2.879804052233535 2.699320994225402 0.0127784 0.0023158991243690252 0.14430679380893707 444 90 90 54 2.17248597739099 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.152798959328134 4.481198787689209 27.979114532470703 10.988739013671875 268942.0 7.837838172912598 105.99291000366199 45.07181930541992 3.2537070417959946 99.2057876586914 276.3530578613281 255.92906188964844 104580.0 124.85113105773925 489.7342529296875 117.80413818359375 34.897796630859375 +sub-10297_ses-V1_task-cuff_run-02_bold 0.0018647404063205418 0.007290786162528217 7 37.4348704218552 1.0356726522624438 1.007688394615385 0.5577460428322527 476.77667236328125 0.16626123187261035 0 0.0 2.674879150004525 2.450308235966832 2.8676540527163326 2.7066751613304114 0.0120886 0.0019787901546806097 0.14566700160503387 443 90 90 54 2.174272681394054 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.36751157665793 4.4712347984313965 27.965957641601562 10.93905258178711 269173.0 7.769752025604248 105.84198760986328 45.2636833190918 3.2985649398710946 98.47758483886719 275.240234375 254.715576171875 104371.0 124.5586929321289 487.9627685546875 117.14922332763672 32.661109924316406 +sub-10297_ses-V1_task-rest_run-01_bold 0.001467607223476298 0.008279069006772008 7 36.348131214253385 1.005534455339367 0.988584700520362 0.5554199038127825 485.1029357910156 0.16786651841544586 56 12.641083521444695 2.7297277608487405 2.4924290676264342 2.932320716813377 2.76443349810641 0.00977187 0.002965394640341401 0.14394024014472961 443 90 90 54 2.1724163088282826 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.803017281383465 4.725584506988525 27.465068817138672 10.96839714050293 268971.0 7.29796838760376 104.08578491210938 44.748924255371094 3.229085368857345 99.76608276367188 277.6557922363281 257.29119873046875 104789.0 123.9611770629883 490.7083618164058 118.43492889404297 33.100669860839844 +sub-10297_ses-V1_task-rest_run-02_bold 0.0016811036036036035 0.006155870472972972 6 37.33017050029344 1.0622496339277654 1.0252376657562081 0.5594947823414286 457.8332214355469 0.15136535330372977 33 7.4324324324324325 2.664738871952235 2.4479540693937114 2.8600457196853273 2.6862168267776667 0.0142733 0.0019360625883564353 0.1438002735376358 444 90 90 54 2.1678827562119243 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 22.288834421754068 4.641480445861816 27.93208885192871 11.04955005645752 268464.0 7.741328930854801 106.33007125854476 44.4518928527832 3.334814391089334 97.63805389404297 272.9139099121094 252.53604125976562 104963.0 123.05022888183595 484.441015625 116.4891586303711 35.23604965209961 +sub-10297_ses-V3_task-rest_run-01_bold 0.0005209932279909707 0.006158311128668171 7 41.51729162570137 1.0503997364253388 0.996750873959276 0.5741479859601816 361.9861145019531 0.2423387209818845 137 30.9255079006772 2.6833291521306175 2.412983237449994 2.8559832198467565 2.781020999095102 0.00683662 -0.010632738471031189 0.11792156845331192 443 90 90 54 2.278014951744111 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 24.169018714603695 5.856780529022217 27.650733947753906 11.961625099182129 257878.0 7.819413185119629 102.34864845275874 43.29243850708008 1.6672022824993595 94.25736236572266 263.6741027832031 245.2031707763672 111319.0 122.01557540893555 463.1643432617186 107.63848114013672 34.87602996826172 +sub-10298_ses-V1_task-cuff_run-01_bold 0.0016049774774774773 0.008514472590090092 6 52.62542536011288 1.1144420371783283 1.0061807126636566 0.5604820684306493 260.0409851074219 0.2777275534786913 2 0.45045045045045046 2.773940260369944 2.5480873987481036 2.9707040486214935 2.8030293337402346 0.012672 -0.020787401124835014 0.09310858696699142 444 90 90 54 2.2213981903144684 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 19.847077214126298 9.21617603302002 32.07475280761719 14.722972869873047 282029.0 8.078828811645508 118.5815322875973 45.799869537353516 0.9205361635860068 102.53829956054688 271.79046630859375 253.965087890625 91302.0 111.40169029235841 484.96667327880846 114.32605743408203 32.03089904785156 +sub-10298_ses-V1_task-cuff_run-02_bold 0.0017428539325842697 0.008456756741573033 5 52.58327283923421 1.1082298935360364 1.0042860348648643 0.5620626697481093 254.14752197265625 0.27318491685425034 5 1.1235955056179776 2.7816763716136474 2.556020731766195 2.9726915485425174 2.816316834532231 0.0169234 -0.022992897778749466 0.09466957300901413 445 90 90 54 2.219266218399279 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 19.24316718326525 9.478660583496094 32.482059478759766 14.856180191040039 281976.0 8.035955429077148 120.35955047607422 46.28012466430664 0.9021589713012763 102.54942321777344 271.6490478515625 254.0516815185547 91535.0 110.91393280029297 484.62360229492197 114.47490692138672 31.051864624023438 +sub-10298_ses-V1_task-rest_run-01_bold 0.0008288939051918735 0.008586142911963883 7 51.43284576721722 1.1068219041176472 0.9946905993891396 0.5581524052164912 274.2524108886719 0.25407218674394777 159 35.89164785553047 2.7996958157265968 2.5699748978783727 3.001183214077027 2.82792933522439 0.00630269 -0.02206140011548996 0.09363342076539993 443 90 90 54 2.243518970204968 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 19.869172200387705 8.909000396728516 31.632253646850586 14.446952819824219 282279.0 8.05643367767334 117.10045547485325 45.3380126953125 0.8223809425405748 104.1904525756836 274.0689697265625 256.9751892089844 91015.0 112.18307189941405 485.62056274414067 114.54049682617188 32.592411041259766 +sub-10298_ses-V1_task-rest_run-02_bold 0.0009741402714932126 0.008530461266968327 8 52.33209018344672 1.1100727690476195 1.000841188435374 0.5634562613797186 251.2444610595703 0.2785095860913078 179 40.497737556561084 2.7863499826451474 2.5636790647952132 2.97584988175035 2.819521001389881 0.00750691 -0.021418506279587746 0.0933355912566185 442 90 90 54 2.227984463389282 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 19.14877130351813 9.569828033447266 32.7595329284668 14.911765098571777 281670.0 8.024887084960938 121.89061698913567 46.62321472167969 0.8741695171958139 102.0312271118164 270.4915771484375 252.89141845703125 91671.0 110.8257942199707 481.90386962890625 113.50619506835938 32.06663513183594 +sub-10298_ses-V3_task-cuff_run-01_bold 0.000661685393258427 0.006612973550561799 5 48.62692506470717 1.1106871659234243 0.9928567190315318 0.5581485968125545 294.2011413574219 0.24253980973261202 0 0.0 2.8030277617354424 2.5670290646620963 2.962883215598932 2.8791710049452983 0.013934 -0.01968519762158394 0.09314541518688202 445 90 90 54 2.2544613843385832 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 18.94959281978937 8.312567710876465 30.92278480529785 13.887640953063965 281004.0 7.941573143005371 115.63943901061997 44.09736251831055 0.8949754796337945 101.59325408935547 273.7582092285156 255.7303466796875 91969.0 115.12044982910157 484.95999755859367 113.4323959350586 34.27345657348633 +sub-10298_ses-V3_task-cuff_run-02_bold 0.0020306787330316746 0.0075447406561085974 8 50.05055715201816 1.1441781455555546 1.019916379115646 0.5602643641459055 277.621826171875 0.23357702081708503 6 1.3574660633484164 2.7953041505498804 2.5609207315714864 2.957337382485971 2.867654337592185 0.0155598 -0.02159806340932846 0.09409651160240173 442 90 90 54 2.245530065479789 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 18.836989111558598 8.78156852722168 31.435123443603516 14.28506851196289 280907.0 7.961538791656494 117.65430450439469 44.7844352722168 0.9085916175737885 101.14903259277344 272.73236083984375 254.40272521972656 92199.0 114.4024917602539 485.0740020751952 113.2923355102539 33.11796951293945 +sub-10298_ses-V3_task-rest_run-01_bold 0.0005993002257336344 0.00709314065462754 7 49.1084970671946 1.1261007189819001 0.9972715067873299 0.5564557896835843 298.96343994140625 0.22395210594958387 131 29.571106094808126 2.8007347060703904 2.5611873982275566 2.9679040487327555 2.8731126712508606 0.0086226 -0.01779770478606224 0.09220831841230392 443 90 90 54 2.2690222523820784 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 19.171397006516184 8.23296070098877 30.67989158630371 13.875846862792969 281380.0 7.966140270233154 114.70903434753413 44.04003143310547 0.8678682632871886 101.93976593017578 274.6996154785156 256.7370300292969 91694.0 116.45282440185548 485.4548645019529 113.14813232421875 34.65298080444336 +sub-10298_ses-V3_task-rest_run-02_bold 0.0023291666666666665 0.008142752837837839 6 50.184945031354424 1.1212348935440175 1.0151202849661394 0.5592912316772857 279.12164306640625 0.25436794824385484 152 34.234234234234236 2.794109706508733 2.558783231656423 2.945145716303757 2.8784001715660197 0.023927 -0.017998231574892998 0.09282629936933517 444 90 90 54 2.2323415386661756 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 18.87048731202652 8.45818042755127 30.693267822265625 13.972972869873047 280799.0 7.9009013175964355 114.61756973266591 43.45859146118164 0.9599000258126114 99.75508880615234 268.72149658203125 250.43919372558594 92219.0 112.55991287231446 478.5211883544919 112.18616485595703 31.166465759277344 +sub-10299_ses-V1_task-cuff_run-01_bold 0.0017782286995515696 0.012748922937219732 4 36.93581551546065 1.1046845257752804 0.9960702862022474 0.41188586220205853 18074.990234375 0.11426442520067188 0 0.0 2.4123313807256133 2.4535040691731744 2.4286665701601278 2.354823502843537 0.0310229 -0.005462307017296553 0.016909189522266388 446 90 90 60 2.8382708489663844 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 81.75545135051424 11.624799728393555 27.5820255279541 7.92825174331665 338197.0 0.0044843051582574844 110.75785064697266 68.09249114990234 1.9289162414425123 308.85662841796875 1107.4024658203125 1058.8262939453125 81074.0 575.1309936523437 1789.3035461425782 373.0509948730469 30.096590042114258 +sub-10299_ses-V1_task-cuff_run-02_bold 0.0023703828828828826 0.011573319144144143 6 38.28336403571104 1.1082061457562067 1.0209884550790072 0.4118190786798335 18999.25390625 0.15066593443979717 3 0.6756756756756757 2.4118036018164517 2.4568249023745494 2.4179624039188066 2.3606234991559987 0.0234992 -0.005178499035537243 0.01838751882314682 444 90 90 60 2.859398819533964 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 88.86684103865456 11.26644229888916 27.420269012451172 7.673423767089844 338357.0 0.0022522523067891598 110.13378448486347 69.21080017089844 1.9500165675817245 301.806396484375 1091.4674072265625 1045.9549560546875 81089.0 567.18154296875 1757.5878662109367 365.79315185546875 31.65640640258789 +sub-10299_ses-V1_task-rest_run-01_bold 0.0038611936936936934 0.013034097680180181 6 36.969766862212204 1.1187462809029347 1.0358232681038377 0.4105815909786597 18243.998046875 0.15018609601217864 39 8.783783783783784 2.4237411005887624 2.4613499021947423 2.445458236159554 2.3644151634119903 0.0301535 -0.006203111261129379 0.01736227050423622 444 90 90 60 2.8111897287028635 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 78.06187304300362 11.59702205657959 27.89807891845703 7.930180549621582 338666.0 0.0045045046135783195 111.81475257873535 69.1971664428711 2.056318443370425 312.3616027832031 1113.2249755859375 1062.6260986328125 80621.0 577.6846923828125 1806.450439453125 377.9963684082031 29.36175537109375 +sub-10299_ses-V1_task-rest_run-02_bold 0.001398565022421525 0.013002929237668163 4 35.025259360898865 1.0897577833033698 0.9896601344269669 0.41186125633884385 18762.41015625 0.10243453283630484 4 0.8968609865470852 2.4232730439383583 2.461049902206663 2.4387499030927855 2.3700193265156257 0.0262808 -0.00524360965937376 0.017894988879561424 446 90 90 60 2.868010635817304 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 78.73582215660575 11.428669929504395 28.184232711791992 7.829596996307373 338839.0 0.0044843051582574844 113.2560562133788 70.62751007080078 1.8870743063701383 306.9850769042969 1109.7098388671875 1063.7904052734375 80688.0 575.3138366699219 1786.155804443359 370.9134826660156 31.331220626831055 +sub-10301_ses-V1_task-cuff_run-01_bold 0.002201923076923077 0.011043331266968324 8 46.72076666863945 1.0953357215192736 1.0068841884580493 0.5164795294623835 2598.74365234375 0.2850432205724287 1 0.22624434389140272 2.456981269806155 2.4097790709106497 2.5093624002868973 2.4518023382209186 0.00619158 0.04076645150780678 0.016027770936489105 442 90 90 60 2.355921285604563 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 38.47017247800916 27.09271240234375 71.2496566772461 20.391403198242188 291191.0 0.1538461595773697 321.61766052246094 167.11558532714844 5.450626943257941 323.1083984375 1129.55615234375 1049.68115234375 121078.0 559.9706420898438 1943.2248596191405 445.54833984375 29.289960861206055 +sub-10301_ses-V1_task-cuff_run-02_bold 0.0008369230769230769 0.008429291153846155 8 46.822427710498914 1.0952886376643995 1.0385313860544223 0.5173132937883121 2544.05517578125 0.29017860154403197 0 0.0 2.4453326484690847 2.4127457374594314 2.503729067177412 2.4195231407704108 0.00801431 0.04017132148146629 0.014501146972179413 442 90 90 60 2.3463524612853996 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 36.83132540116254 27.649526596069336 71.75387573242188 20.674209594726562 290714.0 0.1312217265367508 326.3364501953124 165.69619750976562 5.559593406073782 325.4715576171875 1128.937744140625 1050.522705078125 121409.0 558.440283203125 1945.3453125 447.7240295410156 32.29206848144531 +sub-10301_ses-V1_task-rest_run-01_bold 0.0014410609480812642 0.009366289729119638 7 45.18895764595022 1.0950423844796369 0.993957209886878 0.5140049284970849 2744.472412109375 0.2522307683805365 147 33.182844243792324 2.433986813479734 2.392774904919668 2.4960249008168813 2.4131606347026517 0.00619722 0.04155780002474785 0.014931499026715755 443 90 90 60 2.393202686092757 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 37.15014575892387 26.439180374145508 69.24959564208984 19.927764892578125 292236.0 0.1173814907670021 309.3403091430664 163.23622131347656 5.220330976327078 320.61688232421875 1128.9593505859375 1052.327392578125 120344.0 560.3260894775391 1930.4031066894527 439.7132873535156 31.838333129882812 +sub-10301_ses-V1_task-rest_run-02_bold 0.0009876576576576574 0.007605825585585585 6 45.34209362058688 1.0971411953047399 1.0072564615801358 0.5181268920046062 2577.193603515625 0.27005673226041554 183 41.21621621621622 2.447590982071412 2.413741570753194 2.50842490032415 2.4206064751368923 0.00875302 0.03869091346859932 0.015645544975996017 444 90 90 60 2.330888822252089 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 35.82023349910476 27.4715518951416 72.22637939453125 20.472972869873047 289945.0 0.11711712181568146 332.00675048828043 166.4280548095703 5.4351614324074085 328.7987060546875 1126.7132568359375 1048.115966796875 122056.0 554.5760345458984 1946.3125 449.66180419921875 33.246498107910156 +sub-10302_ses-V1_task-rest_run-01_bold 0.0013011512415349886 0.013488978194130924 7 63.95656505416288 1.140043432760181 0.9823591036651586 0.4572653591632433 5302.3203125 0.6058452020660863 355 80.13544018058691 2.4962105348784562 2.5473082321123988 2.5402915657245493 2.401031806798422 0.0146122 0.007167373783886433 0.02193264663219452 443 90 90 60 2.052060537308056 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 146.39698173904992 23.46728515625 52.44263458251953 16.60496711730957 312718.0 0.09255079180002213 199.8240417480463 136.77078247070312 6.361321663359387 396.90557861328125 1336.1917724609375 1208.6907958984375 103355.0 647.4449462890625 2442.619189453121 589.0103759765625 25.500713348388672 +sub-10302_ses-V1_task-rest_run-02_bold 0.0010983972911963883 0.015491437133182843 7 65.68690212819011 1.1102431581674221 0.9738895763348415 0.457664295093363 4901.83740234375 0.6226485065343806 349 78.78103837471784 2.497607757468185 2.55087906530384 2.543041565615274 2.398902641485442 0.0157478 0.007566447835415602 0.021583234891295433 443 90 90 60 2.0459775265902587 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 145.3497009947552 24.324050903320312 53.103633880615234 17.20767593383789 312978.0 0.07674943655729294 203.3618530273436 137.13986206054688 6.389051784488981 397.89300537109375 1341.0504150390625 1210.2325439453125 103129.0 657.817626953125 2449.0262695312495 591.51513671875 23.965896606445312 +sub-10302_ses-V3_task-rest_run-01_bold 0.002318288288288289 0.011758675675675677 6 65.82318983239286 1.185011771489842 0.9959566001805868 0.4545803780674592 5202.33203125 0.5295210120841813 334 75.22522522522523 2.5321299667669144 2.5503123986596905 2.589033230454396 2.457044271186656 0.0135617 0.0077073886059224606 0.024946216493844986 444 90 90 60 1.891520431195541 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 140.23171747985455 22.6898250579834 52.81321716308594 15.963964462280273 312247.0 0.054054055362939835 202.70743408203134 140.15530395507812 7.440237539578277 403.6935729980469 1297.7928466796875 1156.3536376953125 103778.0 615.3908905029297 2443.3135864257806 611.3325805664062 26.602689743041992 +sub-10302_ses-V3_task-rest_run-02_bold 0.0014708390022675738 0.012301785102040816 9 63.22389169181821 1.1664093704772716 1.0020294860000005 0.454331644884963 4939.70751953125 0.4982120722794742 321 72.78911564625851 2.530885524390197 2.554608231822322 2.5911623970364572 2.446885944311813 0.0114261 0.007533883210271597 0.0251461211591959 441 90 90 60 1.895988060899611 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 143.37272471834467 23.224075317382812 53.16745376586914 16.435375213623047 313186.0 0.08163265138864517 204.48412704467773 138.707763671875 7.085998670515547 405.54058837890625 1299.8773193359375 1158.462646484375 103263.0 615.6417114257813 2447.9261962890614 611.00439453125 26.596057891845703 +sub-10303_ses-V1_task-cuff_run-01_bold 0.000655932584269663 0.008032312494382023 5 44.320010451554054 1.0860165681981977 0.9916217101801797 0.5551480292451768 412.3323669433594 0.19501689487048712 0 0.0 2.762636092598328 2.566841564669547 2.964970715515982 2.756095997609456 0.0211316 -0.024364646524190903 0.11599813401699066 445 90 90 54 2.251793786826494 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 47.045469237406664 5.074164867401123 24.587173461914062 11.47191047668457 263668.0 7.820224761962891 87.08831672668455 38.5408935546875 4.1767606028368665 96.63233947753906 269.77117919921875 251.94607543945312 106303.0 123.27011108398438 464.9076416015625 111.88630676269531 32.096927642822266 +sub-10303_ses-V1_task-cuff_run-02_bold 0.000646328828828829 0.007141920540540541 6 43.61533415986459 1.0931654330925502 0.9960903920090298 0.5557432770963092 408.27764892578125 0.1716960724039514 0 0.0 2.742194426234956 2.5480498987495936 2.9378082165953234 2.74072516335995 0.0219892 -0.0238037109375 0.11393703520298004 444 90 90 54 2.250627452485918 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 46.172891206141365 4.9887566566467285 24.503328323364258 11.432433128356934 263412.0 7.828828811645508 87.30281639099117 38.341278076171875 4.22804725291956 95.6946029663086 268.08099365234375 250.1126251220703 106413.0 123.04505157470703 462.996856689453 111.12965393066406 33.59016418457031 +sub-10303_ses-V1_task-rest_run-01_bold 0.0006307865168539327 0.0068068034157303375 5 43.78591591594596 1.0980320184459451 0.9974639241441443 0.5529369949715567 433.4568786621094 0.18575591701093608 89 20.0 2.7615638703584184 2.5609540649034948 2.9694623820041666 2.7542751641675927 0.0229668 -0.023385491222143173 0.11479204148054123 445 90 90 54 2.2576732895853078 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 49.14089573771155 4.817624568939209 24.416826248168945 11.30112361907959 264115.0 7.8359551429748535 86.26741790771484 38.72032165527344 4.091078566070939 97.47859191894531 272.54205322265625 254.5325927734375 105892.0 124.57775077819825 469.9142654418945 112.7405776977539 33.60749435424805 +sub-10303_ses-V1_task-rest_run-02_bold 0.0008426185101580134 0.008171093498871332 7 44.13638467063345 1.1001737554298643 1.0048439248868777 0.5565450882296242 407.99102783203125 0.1914480387035456 98 22.121896162528216 2.745744426391363 2.5493832320299457 2.9381415499154113 2.7497084972287316 0.0175323 -0.023581277579069138 0.1144154965877533 443 90 90 54 2.2627297429217395 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 45.4371761517161 5.127192974090576 24.49394416809082 11.42889404296875 263553.0 7.6794586181640625 87.26501007080077 37.96148681640625 4.252478658649064 94.80288696289062 266.8229675292969 248.8465118408203 106181.0 123.9164810180664 459.91424560546875 109.97572326660156 32.30392837524414 +sub-10305_ses-V1_task-cuff_run-01_bold 0.0006503370786516854 0.010959941707865168 5 44.791645943400894 1.082736569031533 0.9901721734234229 0.5539762913533468 357.0083312988281 0.24019696455146844 0 0.0 2.7243555389517495 2.4287124034916396 2.9765457150560333 2.7678084983075757 0.00818477 -0.03313835337758064 0.1393580436706543 445 90 90 54 2.777301811385721 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 49.316792604059465 5.720511436462402 25.386648178100586 12.008989334106445 281475.0 7.943820476531982 83.57370910644528 39.85819625854492 1.7818707710517234 81.1550064086914 254.17935180664062 243.33596801757812 92198.0 129.85325469970704 408.3124771118163 87.61548614501953 31.479822158813477 +sub-10305_ses-V1_task-cuff_run-02_bold 0.000597092731829574 0.008708910526315788 6 42.59367139597988 1.0772930987185927 0.9974171621356777 0.5537555176087136 354.6788635253906 0.19226136121400653 0 0.0 2.6835972056384776 2.3954790714788805 2.935808216674796 2.719504328761756 0.0129592 -0.032437413930892944 0.1419713795185089 399 90 90 54 2.8044522882751215 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 58.50690104763024 5.636862277984619 25.204195022583008 11.907268524169922 282387.0 7.882205486297607 83.0669143676758 40.21522903442383 1.8038308482049432 80.0530776977539 252.2501678466797 241.3333282470703 91357.0 130.99148254394532 404.1619018554687 86.05316925048828 33.59803771972656 +sub-10305_ses-V1_task-rest_run-01_bold 0.0007175225225225226 0.010628024864864864 6 43.211737208848774 1.0707555654401804 0.9842699024379227 0.5531831770230516 362.81927490234375 0.22949955906719482 144 32.432432432432435 2.7426249829268627 2.45390406915728 2.9984123808537966 2.7755584987695117 0.0106664 -0.03383927419781685 0.14037269353866577 444 90 90 54 2.7716300642633334 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 55.98782102583544 5.703344821929932 25.401628494262695 11.963964462280273 281027.0 7.846847057342529 84.10360717773438 40.49607467651367 1.706851529640498 82.11245727539062 255.73345947265625 245.04730224609375 92494.0 129.93919372558594 410.81611785888674 88.41222381591797 31.651201248168945 +sub-10305_ses-V1_task-rest_run-02_bold 0.0007039189189189189 0.01148034177927928 6 42.555327930090264 1.0490557165237024 0.973527078261851 0.5553592535590431 342.59698486328125 0.17996247467640755 70 15.765765765765765 2.7018569277782194 2.4098082375761574 2.9568373825058387 2.738925163252661 0.0099264 -0.03332383185625076 0.1443926990032196 444 90 90 54 2.7791571157630144 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 57.01164014949289 5.826894283294678 25.494794845581055 12.063063621520996 281578.0 7.932432651519775 84.09718513488762 40.80398178100586 1.8274008868474079 80.16738891601562 251.29661560058594 240.48312377929688 92144.0 128.35405197143555 402.9986495971679 86.53048706054688 31.645347595214844 +sub-10305_ses-V3_task-cuff_run-01_bold 0.0008440449438202247 0.00930001973033708 5 45.49992830243244 1.1387811315765761 0.9963733762387404 0.5560630125014486 347.0692443847656 0.16995951567055267 0 0.0 2.733201373191074 2.437104069824852 2.956716549177307 2.8057835005710623 0.0101209 -0.03646858409047127 0.13170021772384644 445 90 90 54 2.738910978925825 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.970133118459295 5.683863639831543 24.952993392944336 11.97528076171875 279967.0 7.849438190460205 84.0128082275391 37.27912902832031 1.302760321526672 80.87346649169922 251.56837463378906 239.90562438964844 93179.0 128.59056854248047 409.5894500732421 87.59114074707031 33.01885223388672 +sub-10305_ses-V3_task-cuff_run-02_bold 0.001016749435665914 0.01127092422121896 7 47.292776772262435 1.1337518610859727 0.9940242701809969 0.5566639445375614 344.44781494140625 0.22647641074565242 0 0.0 2.7458180399306458 2.4440582362151844 2.9702707153053796 2.823125168271373 0.0107382 -0.03615712374448776 0.13327324390411377 443 90 90 54 2.750522076343383 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 40.18388686468402 5.8099260330200195 25.010120391845703 11.981941223144531 280264.0 7.724605083465576 83.95677642822261 37.525779724121094 1.2979336289505339 80.11406707763672 250.1884765625 238.55079650878906 93095.0 128.45755920410156 406.57042846679695 86.72881317138672 31.54613494873047 +sub-10305_ses-V3_task-rest_run-01_bold 0.0006390337078651686 0.009710872584269665 5 45.29338425132887 1.1238308691441443 0.9905267750675683 0.5552505151003708 358.0483703613281 0.17845122202004954 72 16.179775280898877 2.7378138729668113 2.4356332365499638 2.9732623818531683 2.8045460004973015 0.0156505 -0.03581957519054413 0.13121621310710907 445 90 90 54 2.7370808690425346 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.09974453422263 5.627224922180176 25.045001983642578 11.905617713928223 280588.0 7.853932857513428 85.04932861328102 37.333885192871094 1.2222132528996497 81.7646713256836 253.30532836914062 242.1202392578125 92778.0 128.31617584228516 412.3531524658203 88.45881652832031 32.965858459472656 +sub-10305_ses-V3_task-rest_run-02_bold 0.0005915238095238095 0.011246324119047621 6 49.09726680520284 1.1454474974224345 0.991449471026253 0.5578351140108934 334.23944091796875 0.24608873366466666 141 33.57142857142857 2.7235819288578913 2.4207082371430304 2.952437382680679 2.797600166749964 0.00579759 -0.03678983077406883 0.13451936841011047 420 90 90 54 2.7461423794670123 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 37.29162055918969 5.905699253082275 25.092771530151367 12.066667556762695 280358.0 7.842857360839844 84.30190849304098 37.45597457885742 1.3415598853492856 79.6121826171875 249.12461853027344 237.31906127929688 92995.0 127.70643157958985 404.52669067382817 86.4186019897461 32.361236572265625 +sub-10307_ses-V1_task-cuff_run-01_bold 0.0008704708520179371 0.011925853228699552 4 38.89468145069665 1.1826920810561787 1.0016710417752808 0.45588801847303145 629179.4375 0.3067948826671486 2 0.4484304932735426 2.528247979294651 2.6335188732394363 2.5696811267605635 2.381543937883954 0.027653 -0.011721241287887096 0.03111136145889759 446 96 96 54 3.9993130262345624 0.7999997138977051 2.21875 2.21875 2.3999977111816406 3 79.29667928074953 35.46066665649414 511.3830871582031 24.09757423400879 327564.0 0.1507600732147694 2438.2267333984373 1104.19140625 1.9431797609762134 4028.224609375 20524.990234375 20422.0703125 100412.0 12021.05439453125 28685.330371093747 5106.369140625 41.48365783691406 +sub-10307_ses-V1_task-cuff_run-02_bold 0.0009844170403587446 0.01231284928251121 4 37.79154075887639 1.1612405906516867 1.0183600843820224 0.45697281147475877 552293.9375 0.3042998206165996 1 0.2242152466367713 2.5154474676065517 2.61056 2.5639301408450703 2.3718522619745848 0.0223528 -0.012131336145102978 0.03168511763215065 446 96 96 54 4.015746699272776 0.7999997138977051 2.21875 2.21875 2.3999977111816406 1 69.84457634173563 37.4661865234375 518.4224243164062 25.494014739990234 327511.0 0.18675687909126282 2476.16455078125 1105.0321044921875 1.905634393607297 4032.01806640625 20462.90625 20324.212890625 100424.0 12102.026318359374 28657.350878906247 5061.10400390625 41.33140563964844 +sub-10307_ses-V1_task-rest_run-01_bold 0.0008105381165919284 0.012296660829596413 4 38.00865292943821 1.169342604853932 1.0020984692359551 0.45585630678500977 613547.9375 0.28399045067175954 186 41.70403587443946 2.5205393235527898 2.6245047887323945 2.560585915492958 2.3765272664330164 0.0233428 -0.01190352812409401 0.030075859278440475 446 96 96 54 4.022263578629352 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 85.3754904227244 36.54016876220703 515.0364379882812 24.797712326049805 327667.0 0.12344789355993271 2451.280493164063 1108.845458984375 1.9737328151798765 4125.0859375 20804.41796875 20668.736328125 100161.0 12378.837890625 29104.37890625 5138.5576171875 40.47037887573242 +sub-10307_ses-V1_task-rest_run-02_bold 0.0011304719101123595 0.011574604966292134 5 37.40213659641893 1.1634471050450457 1.0244976323873873 0.4573620579348854 563254.8125 0.28502351774758233 198 44.49438202247191 2.5190981872005516 2.622237746478873 2.564087887323944 2.370968927798838 0.0219438 -0.012509312480688095 0.031537726521492004 445 96 96 54 3.9696686105479406 0.7999997138977051 2.21875 2.21875 2.3999977111816406 3 51.87019685861519 36.995574951171875 524.444091796875 25.194305419921875 327295.0 0.2011939838528633 2515.0839111328114 1101.2784423828125 1.8647607718418096 4108.5859375 20535.607421875 20412.763671875 100456.0 12042.402587890625 28889.47509765625 5142.15771484375 42.844539642333984 +sub-10307_ses-V3_task-cuff_run-01_bold 0.0007768314606741574 0.017700848764044944 5 47.83136949436936 1.3031717243018028 0.9951201072522523 0.4731181235729414 401377.21875 0.3383081128868749 1 0.2247191011235955 2.5081109704790876 2.583576338028169 2.601712676056338 2.3390438973527563 0.0203797 -0.01876801624894142 0.024696722626686096 445 96 96 54 4.267857042264789 0.7999997138977051 2.21875 2.21875 2.3999977111816406 3 51.024232090075664 45.6264533996582 627.52685546875 31.021581649780273 324105.0 0.23703505396842958 2924.2348144531247 1260.46484375 2.884947992809039 3538.899169921875 21253.498046875 21300.818359375 104172.0 12582.77177734375 28888.970312499998 4990.962890625 38.99479293823242 +sub-10307_ses-V3_task-cuff_run-02_bold 0.000988808988764045 0.015996781348314608 5 47.22528140596848 1.31348216054054 1.0101351233783789 0.47364234257542986 398546.90625 0.325522756155052 2 0.449438202247191 2.513201585571774 2.5887098591549296 2.6091718309859155 2.341723066574478 0.0239806 -0.01866476610302925 0.02526731602847576 445 96 96 54 4.2554890010839745 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 51.76316675009404 45.40690612792969 630.32666015625 30.783008575439453 323788.0 0.1516617327928543 2938.9581787109373 1269.590087890625 2.8502667737834155 3540.80322265625 21179.59375 21239.74609375 104322.0 12499.203466796875 28825.757031250003 4991.1171875 40.731903076171875 +sub-10307_ses-V3_task-rest_run-01_bold 0.0007888143176733781 0.01752713042505593 3 47.84416117477577 1.2863443932511205 1.0409672093946185 0.47231567540083824 434590.09375 0.37944032665120603 264 59.060402684563755 2.530527369736191 2.602870985915493 2.6293588732394366 2.3593522500536444 0.0210506 -0.01856815069913864 0.025933098047971725 447 96 96 54 4.250818436559192 0.7999997138977051 2.21875 2.21875 2.3999977111816406 3 49.87882447186971 43.715904235839844 630.8229370117188 29.69900894165039 324165.0 0.2253356397151947 2956.1544921874997 1264.5977783203125 2.835714614942461 3640.189453125 21492.7421875 21553.35546875 103986.0 12648.196044921875 29253.86083984375 5070.376953125 38.3111686706543 +sub-10307_ses-V3_task-rest_run-02_bold 0.0009235346756152125 0.016769258165548098 3 48.63030153118829 1.3076276543273528 0.9988987589686092 0.4740742758169368 363870.25 0.35551038906553745 263 58.83668903803132 2.5093576852544164 2.5836935211267607 2.601685633802817 2.3426939008336713 0.0226869 -0.018681352958083153 0.025595858693122864 447 96 96 54 4.271638671580966 0.7999997138977051 2.21875 2.21875 2.3999977111816406 4 50.59961632969351 47.90757369995117 638.0634155273438 32.59981155395508 323915.0 0.2750992178916931 2972.9827880859348 1273.461181640625 2.8333707309321854 3559.48046875 21261.802734375 21322.47265625 104272.0 12553.911523437499 28904.498046875 4991.61376953125 39.181243896484375 +sub-10308_ses-V1_task-cuff_run-01_bold 0.0007708053691275168 0.01869321677852349 3 41.53408557744392 1.1897759868161435 0.973057438273542 0.5160116904862725 32445.255859375 0.23227777318786516 2 0.44742729306487694 2.557986308047742 2.621845633802817 2.676885633802817 2.375227656537592 0.0183729 -0.0156388022005558 0.03398577496409416 447 96 96 54 4.195350530996816 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 44.33137561988633 173.77476501464844 1034.013427734375 117.5687484741211 310319.0 0.42337082922458674 4633.672070312487 1860.2264404296875 2.0296755332025107 4265.958984375 23530.189453125 22832.419921875 117303.0 16104.66162109375 33454.505078124996 5442.2919921875 35.71595001220703 +sub-10308_ses-V1_task-cuff_run-02_bold 0.0013233557046979868 0.012976965861297539 3 41.19528096464128 1.251860644663676 1.0061956625560537 0.5155658800834516 32299.65234375 0.19063293792813918 3 0.6711409395973155 2.554962907796811 2.61056 2.658717746478873 2.395610976911559 0.0140407 -0.015951499342918396 0.035876888781785965 447 96 96 54 4.170251908618069 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 39.64496312306332 172.75088500976562 1031.1884765625 116.78578186035156 310624.0 0.30622407346963887 4658.070678710934 1846.852783203125 1.8593359467003063 4382.7578125 23425.84765625 22820.98046875 117019.0 15882.94794921875 33336.909374999996 5472.30322265625 41.26593017578125 +sub-10308_ses-V1_task-rest_run-01_bold 0.0008600447427293065 0.011619706465324384 3 41.96349880414799 1.2502387502914787 0.9993282965470848 0.5145104771153817 35914.34375 0.22177169136986002 96 21.476510067114095 2.5345069303068537 2.59768338028169 2.6315222535211267 2.374315157117744 0.0214062 -0.015757109969854355 0.03373820334672928 447 96 96 54 4.161402621743043 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 46.45965410237611 163.270751953125 1023.8632202148438 110.55522155761719 310624.0 0.5087928652763367 4644.664990234372 1846.225830078125 1.90481357251885 4377.7607421875 23690.88671875 23018.33203125 117074.0 16146.276220703125 33736.5271484375 5531.3642578125 42.82902526855469 +sub-10308_ses-V1_task-rest_run-02_bold 0.0010841479820627802 0.01419363399103139 4 41.341751424314594 1.2372793695056186 1.034142309910112 0.5159240480340195 34405.609375 0.22891974877166618 110 24.663677130044842 2.549696471965746 2.609005070422535 2.6445025352112674 2.3955818102634363 0.0134826 -0.015768220648169518 0.03569016978144646 446 96 96 54 4.2143633392744775 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 43.32169864608674 167.74928283691406 1036.1351318359375 113.55802154541016 310693.0 0.5072367668151856 4665.9724609375 1862.473876953125 1.8766561061855365 4341.447265625 23480.212890625 22855.27734375 117025.0 16003.474609375 33329.921093749996 5423.1630859375 39.78309631347656 +sub-10308_ses-V3_task-rest_run-01_bold 0.0007059192825112108 0.014339027130044844 4 47.215565079235965 1.278518852606742 1.0028167250561797 0.5104064781426033 88261.8671875 0.2187101184263434 104 23.318385650224215 2.5211057378338433 2.5977374647887324 2.613489577464789 2.352090171248009 0.015837 -0.012092863209545612 0.03599264472723007 446 96 96 54 4.3418429942549475 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 37.5584588150395 98.62710571289062 867.3211059570312 66.72933959960938 309787.0 0.26475436985492706 4058.0018798828137 1569.292724609375 2.352119942088123 3826.45458984375 21775.83203125 21267.005859375 117235.0 14838.81689453125 30366.469531249997 4898.130859375 39.97517395019531 +sub-10308_ses-V3_task-rest_run-02_bold 0.0006337977528089887 0.01800898561797753 5 46.0202118641892 1.2424959431531528 0.9836218891666668 0.512719795657158 67682.7890625 0.19944882183524984 74 16.629213483146067 2.54647038138725 2.6189881690140844 2.647882816901409 2.3725401582462573 0.0115314 -0.01281464658677578 0.03661396726965904 445 96 96 54 4.325127765490981 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 45.47851921318038 113.53173065185547 892.9906005859375 76.76235961914062 309515.0 0.23987527787685395 4135.786230468744 1605.8582763671875 2.426861831412361 3761.969970703125 21699.390625 21203.228515625 117734.0 14597.840966796874 30239.2763671875 4902.31494140625 37.09777069091797 +sub-10311_ses-V1_task-cuff_run-01_bold 0.0007985294117647059 0.009789901764705884 8 48.51728098079368 1.1415451704988666 0.9854985706575964 0.44773090811359806 13448.9482421875 0.47615268053687165 26 5.882352941176471 2.523692461601182 2.477608234882027 2.6087373963380895 2.484731753583429 0.0145769 -0.007515470031648874 0.030756819993257523 442 90 90 60 2.3303544266999565 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 249.69140658805418 13.57822322845459 38.371551513671875 9.364253997802734 315800.0 0.0022624435368925333 175.5520477294922 111.27339172363281 4.391894069796683 316.6178894042969 1207.4334716796875 1100.03857421875 100680.0 655.7966094970703 2141.846594238281 472.04541015625 34.82969665527344 +sub-10311_ses-V1_task-rest_run-01_bold 0.0020797727272727274 0.010460320954545455 10 43.43290723471528 1.116941055876993 1.0264526328018229 0.4470878124820797 14244.515625 0.4241767433041971 271 61.59090909090909 2.5354285687342375 2.483937401297196 2.619941562559543 2.5024067423459737 0.0159185 -0.007542220875620842 0.031015396118164062 440 90 90 60 2.3333318519699646 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 265.2339814192616 13.33668041229248 37.94609832763672 9.29772663116455 316085.0 0.015909090638160706 169.98635864257812 110.47300720214844 4.578391923558884 316.2052917480469 1208.12109375 1101.602294921875 100503.0 655.5213684082031 2139.910400390624 472.11322021484375 33.074241638183594 +sub-10311_ses-V1_task-rest_run-02_bold 0.0011648416289592762 0.012029065656108597 8 45.7876808790476 1.1293999677551017 0.9870723224716551 0.44872156156302373 12999.2587890625 0.401888603545765 245 55.42986425339367 2.5334549588472832 2.485308234576057 2.6184165626201406 2.4966400793456525 0.0104008 -0.007238560821861029 0.029921693727374077 442 90 90 60 2.3162265849310004 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 208.25305301687933 13.806314468383789 39.10266876220703 9.5316743850708 315749.0 0.004524887073785067 180.0800994873045 110.44126892089844 4.4838697958418425 315.34478759765625 1205.845458984375 1097.0577392578125 100702.0 656.2072937011718 2144.3815307617183 473.6377258300781 33.75281524658203 +sub-10311_ses-V3_task-cuff_run-01_bold 0.0012472460496613994 0.011122204288939052 7 40.02440846993211 1.106628748800905 0.9795956119230766 0.4358887212949546 11710.6650390625 0.2590925419174006 4 0.9029345372460497 2.57197718214316 2.537691565827864 2.6947082262552486 2.4835317543463677 0.0220792 -0.012663178145885468 0.03550507500767708 443 90 90 60 2.0664409464933273 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 303.8027560825774 15.2376708984375 40.36533737182617 10.713318824768066 319141.0 0.03837471827864647 175.56884765625 116.11860656738281 5.076918461582592 361.1090393066406 1292.806884765625 1162.0203857421875 98007.0 656.2767456054687 2425.116137695312 562.3264770507812 32.530738830566406 +sub-10311_ses-V3_task-cuff_run-02_bold 0.0010744318181818181 0.009083479522727271 10 48.86376567733486 1.2187219542596817 1.0083764078359914 0.4356630427364704 11571.3603515625 0.3680310593464262 12 2.727272727272727 2.5431258003711172 2.514283233424694 2.661612394237026 2.453481773451631 0.0183297 -0.012975391000509262 0.03748108074069023 440 90 90 60 2.0641479044359783 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 314.23367807264344 15.311237335205078 40.616249084472656 10.58863639831543 319300.0 0.004545454401522875 178.71409225463856 120.71349334716797 5.048326075047131 357.3238830566406 1285.0272216796875 1153.210205078125 97802.0 654.6323455810547 2412.5943359374996 558.6829833984375 35.30451583862305 +sub-10311_ses-V3_task-rest_run-01_bold 0.001256884875846501 0.011269607042889391 7 41.09390843518097 1.122205458393664 1.0167129292533938 0.4345386617695737 11757.412109375 0.28981716899528615 159 35.89164785553047 2.565788295088824 2.5340915659709147 2.6877373931989115 2.4755359260966454 0.0222759 -0.012833327986299992 0.0348435677587986 443 90 90 60 2.062984334674891 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 300.52055385072657 15.244364738464355 39.73008346557617 10.731377601623535 319675.0 0.042889390140771866 171.94402465820303 112.63380432128906 5.199461684173912 363.7362060546875 1301.57763671875 1168.61962890625 97550.0 662.4523803710938 2439.3432739257814 566.467529296875 32.517608642578125 +sub-10311_ses-V3_task-rest_run-02_bold 0.001274977578475336 0.0077171540807174895 4 41.53344198519105 1.1829692532584262 1.013674398674156 0.4353746727177958 11643.1533203125 0.2526800867593524 147 32.95964125560538 2.537750802693213 2.5178207332841263 2.652562394596641 2.442869280198873 0.0308764 -0.012878842651844025 0.037331417202949524 446 90 90 60 2.048037477612929 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 310.516121157492 15.301386833190918 41.19651412963867 10.542601585388184 319342.0 0.0022421525791287422 181.62096710205083 123.59514617919922 5.107962660866901 357.53814697265625 1284.326171875 1151.8397216796875 97714.0 651.9296447753907 2419.5367431640625 562.4085693359375 38.08795166015625 +sub-10312_ses-V1_task-cuff_run-01_bold 0.001105237020316027 0.004998398126410834 7 35.87911241205883 1.0350760723529413 1.0160242166968332 0.53219580187155 497.9153137207031 0.20779237612943866 1 0.22573363431151242 2.673818041817436 2.3543124064480305 2.873437385819857 2.793704333184421 0.00489379 -0.02310008369386196 0.10842162370681763 443 90 90 54 2.5982344261864254 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 39.54384946286208 3.3835458755493164 22.0443172454834 10.036117553710938 286629.0 7.582393169403076 74.6672714233398 34.504981994628906 0.5923660817401193 82.41661071777344 249.9671630859375 237.93453979492188 88184.0 114.55982208251953 418.47597961425777 91.574951171875 37.324501037597656 +sub-10312_ses-V1_task-cuff_run-02_bold 0.0037229638009049775 0.00580556515837104 8 36.46307171485262 1.0658854960770974 1.0565395564172335 0.5325873853748399 492.48736572265625 0.2126359403399521 4 0.9049773755656109 2.676038875278174 2.3518749065448876 2.8760248857170385 2.800216833572596 0.00667566 -0.023123476654291153 0.10763844102621078 442 90 90 54 2.6045616635412316 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 14 39.742247471709014 3.347595453262329 21.915664672851562 10.015837669372559 286511.0 7.662896156311035 73.67534255981445 34.286258697509766 0.571653022998198 82.06471252441406 249.08612060546875 236.89593505859375 88218.0 115.35351219177247 415.89379425048816 90.95372772216797 35.68974685668945 +sub-10312_ses-V1_task-rest_run-01_bold 0.0016467727272727272 0.007048843113636362 10 35.76297438496581 1.0039326275170837 0.9943816712300684 0.5322438332346331 495.8415832519531 0.2021591397001511 78 17.727272727272727 2.683549986277775 2.3545874064371026 2.890199885153775 2.8058626672424474 0.00605076 -0.023614551872015 0.10681223124265671 440 90 90 54 2.606841918642687 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 38.99103545238013 3.497593402862549 22.073938369750977 10.15227222442627 286728.0 7.677272319793701 74.14238510131827 34.1320686340332 0.5522366206379701 83.23464965820312 251.6489715576172 239.94772338867188 88117.0 114.75044860839844 419.79906616210934 92.04484558105469 33.68532943725586 +sub-10312_ses-V1_task-rest_run-02_bold 0.0005302267573696145 0.0071922734013605445 9 35.72969099388635 0.9965461618181815 0.9853640609318183 0.5335585283787166 482.12982177734375 0.1810189936482446 58 13.151927437641723 2.682697208645918 2.35438740644505 2.8844582187152614 2.8092460007774434 0.0119491 -0.022927401587367058 0.1104159727692604 441 90 90 54 2.5905512323650246 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.93818584933974 3.3753578662872314 21.89461326599121 10.011338233947754 286467.0 7.63265323638916 73.57460403442388 34.2326545715332 0.6215068775660058 81.41874694824219 246.26844787597656 234.04989624023438 88374.0 114.16837234497072 412.05997772216784 90.34701538085938 33.58659362792969 +sub-10312_ses-V3_task-cuff_run-01_bold 0.0006631306306306306 0.007537492297297298 6 34.508346381196425 1.0192889673814896 0.9834707025507895 0.525863733487244 537.9666748046875 0.16150447937209605 0 0.0 2.6968805398190248 2.3988582380112713 2.930754050208964 2.7610293312368395 0.0159676 -0.022669745609164238 0.10636185854673386 444 90 90 54 2.508214866598241 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 40.9670825136436 3.8434126377105713 23.200197219848633 10.412162780761719 287797.0 7.6666669845581055 79.51126098632812 36.64324188232422 0.7816844302859396 91.22344970703125 270.75189208984375 256.7939147949219 87490.0 121.25225830078125 458.38637390136716 102.38056182861328 35.661888122558594 +sub-10312_ses-V3_task-cuff_run-02_bold 0.0012179729729729731 0.006865652972972972 6 34.11073134455982 1.0286220474040637 1.0005649202934532 0.5262882852634194 537.6633911132812 0.16983513865246416 0 0.0 2.683156928753224 2.3886124050850706 2.914929050837793 2.745929330336809 0.00721702 -0.022468993440270424 0.1071331650018692 444 90 90 54 2.5326630565446657 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 41.684947113804924 3.7165231704711914 23.02073097229004 10.317567825317383 287969.0 7.641891956329346 79.20045471191406 36.33334732055664 0.7463063215629355 89.81098175048828 268.1850891113281 254.4166717529297 87217.0 122.67747955322267 453.2955139160155 100.4536361694336 35.65141677856445 +sub-10312_ses-V3_task-rest_run-01_bold 0.00042788636363636363 0.006420164568181818 10 34.62002301913437 1.0347377551480637 0.9815889517312085 0.5261275365121777 541.8739624023438 0.1450573509248018 6 1.3636363636363635 2.6925930398786018 2.394008238203993 2.926087383727734 2.7576834977040785 0.00493398 -0.024147532880306244 0.10702090710401535 440 90 90 54 2.4992079715592257 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.993023188714254 3.864875316619873 23.498567581176758 10.481818199157715 287797.0 7.754545211791992 81.59636077880864 37.07074737548828 0.7933438516333036 92.7789077758789 272.8866271972656 259.21136474609375 87508.0 120.89783897399903 461.9512420654296 103.71681213378906 36.972938537597656 +sub-10312_ses-V3_task-rest_run-02_bold 0.0016258558558558559 0.007834668063063063 6 34.51720834045141 1.0374570098194127 1.0041740989164782 0.527220036865383 524.5064086914062 0.15359584618472655 11 2.4774774774774775 2.683127762127039 2.3856790718682976 2.91658738410523 2.7471168304075895 0.00629018 -0.02303277887403965 0.10711093991994858 444 90 90 54 2.5157387252729255 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 42.138512843547694 3.9035184383392334 23.11322784423828 10.416666984558105 287797.0 7.5653157234191895 79.49369812011722 36.21229553222656 0.7944533421493669 89.43696594238281 267.283203125 253.20721435546875 87464.0 121.34155426025391 452.89078674316386 100.64867401123047 35.41582489013672 +sub-10313_ses-V1_task-cuff_run-01_bold 0.0014797285067873302 0.010928123597285068 8 35.51841823183676 1.1020786620861678 1.0110219954648527 0.4669791120683138 7555.47802734375 0.1646760535313659 0 0.0 2.42544249351945 2.4501207359742825 2.4824749013553102 2.3437318432287575 0.00748912 0.019354522228240967 0.01739640347659588 442 90 90 60 2.511407908132739 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 46.55440816327466 18.378231048583984 50.03207778930664 12.816742897033691 315642.0 0.020361991599202156 225.93575592041037 117.59107971191406 5.165248509333992 339.45220947265625 1187.3604736328125 1123.6923828125 99443.0 588.0344116210938 1983.9762939453126 447.4329833984375 34.596519470214844 +sub-10313_ses-V1_task-cuff_run-02_bold 0.0019248072562358276 0.013728489954648527 9 36.50884216470454 1.0636889078636351 0.9655786435000002 0.4662410431538875 7519.04150390625 0.18782954602834478 0 0.0 2.4740522018361926 2.4859082345522148 2.5322498993774296 2.4039984715789338 0.00252931 0.018916405737400055 0.016603751108050346 441 90 90 60 2.490115124024681 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 47.87880101427136 18.500591278076172 49.670352935791016 12.870748519897461 315706.0 0.024943310767412186 225.2448959350586 116.33979034423828 5.209484112620082 344.1788330078125 1189.80322265625 1125.780029296875 99559.0 583.9478759765625 1995.1989257812481 452.0973205566406 28.63589859008789 +sub-10313_ses-V1_task-rest_run-01_bold 0.0012632954545454544 0.012022073681818181 10 34.38393152289293 1.0533667495444192 1.0090707057858768 0.463881180398579 7856.47509765625 0.15967004743128754 17 3.8636363636363638 2.4807813682528512 2.492520734289458 2.5459123988345307 2.4039109716345646 0.00257233 0.018657635897397995 0.015255487523972988 440 90 90 60 2.4554926511491795 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 50.252642727612354 18.22589874267578 49.34209060668945 12.738636016845703 316174.0 0.03181818127632141 219.8381782531734 116.9572982788086 5.118244288490979 357.1522216796875 1201.845703125 1138.0772705078125 99233.0 580.7358642578125 2028.0317138671862 463.47991943359375 30.101795196533203 +sub-10313_ses-V1_task-rest_run-02_bold 0.0015112895927601809 0.010360339705882354 8 35.67403839607707 1.0886746841950106 0.9901624493650795 0.46482914802442793 8112.59619140625 0.1891511682378266 47 10.633484162895927 2.4838619216205315 2.4984790673860284 2.538799899117156 2.41430679835841 0.00352526 0.017027152702212334 0.016247142106294632 442 90 90 60 2.43494951258775 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 47.46882104700092 18.0528621673584 50.769901275634766 12.563348770141602 316372.0 0.022624434903264046 232.73440093994162 118.12561798095703 5.438951855236734 355.26275634765625 1205.8385009765625 1138.4219970703125 99088.0 585.3319030761719 2036.780340576172 467.5317687988281 31.051288604736328 +sub-10313_ses-V3_task-cuff_run-01_bold 0.0023992660550458712 0.009860501949541285 14 33.04328237052875 1.1357973399310346 0.9875379680459768 0.45538482932155816 8441.130859375 0.11516035892666664 0 0.0 2.4571341582065807 2.506304067075091 2.5177415666206056 2.3473568409240464 0.00258177 0.01488327607512474 0.02142881229519844 436 90 90 60 2.2168060225862147 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 68.64840213591415 19.508460998535156 52.8367805480957 13.594036102294922 316834.0 0.0458715558052063 232.33106765747067 126.68336486816406 8.217798423174278 407.0269775390625 1360.863037109375 1263.05029296875 98834.0 649.8747222900391 2383.042504882811 569.7584228515625 33.19298553466797 +sub-10313_ses-V3_task-cuff_run-02_bold 0.0013259954751131222 0.010022435995475112 8 33.52669144546485 1.1379969524036277 0.9975501274149662 0.4553796941848873 8108.3193359375 0.11543069505280454 0 0.0 2.4602855494040994 2.518058233274689 2.527691566225228 2.3351068487123814 0.00463367 0.016029497608542442 0.01991940848529339 442 90 90 60 2.224216293554487 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 67.36201274969248 19.9312744140625 53.00873947143555 13.868779182434082 317229.0 0.03393665328621864 231.47738647460938 126.89879608154297 7.871266653840461 413.0036315917969 1365.387451171875 1268.14599609375 98418.0 659.3954040527344 2389.77470703125 570.1511840820312 33.7608642578125 +sub-10313_ses-V3_task-rest_run-01_bold 0.0031968480725623584 0.011165538390022675 9 31.90012265988639 1.1180487094318183 1.0114367381818181 0.45470233756339284 8293.986328125 0.12062391835756808 6 1.3605442176870748 2.4560966584315884 2.5027707338821594 2.5190873999004606 2.346431841512145 0.00254184 0.01490817591547966 0.02127852477133274 441 90 90 60 2.209691951808131 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 68.22483611247608 19.825183868408203 52.84237289428711 13.757369995117188 317050.0 0.02947845868766308 230.42574539184557 127.23893737792969 8.373363075804047 411.316162109375 1369.16015625 1269.343505859375 98594.0 656.6461639404297 2397.596545410156 574.4407348632812 32.18644714355469 +sub-10313_ses-V3_task-rest_run-02_bold 0.0034253287981859414 0.011101147959183674 9 34.114901026886365 1.1510862004545446 1.030431617909091 0.4522605800763851 8180.25927734375 0.10328364002140547 2 0.45351473922902497 2.44578971297199 2.5003499006450216 2.4834165679845586 2.353602670286388 0.00262045 0.0149351442232728 0.02011750638484955 441 90 90 60 2.1621570883038963 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 72.17964388486769 20.342918395996094 54.53618240356445 13.947846412658691 318683.0 0.006802720949053764 237.45238800048787 131.8914794921875 8.70143599551196 419.462158203125 1382.4022216796875 1277.952392578125 97277.0 670.6712280273438 2445.6300292968745 591.0513305664062 33.923309326171875 +sub-10314_ses-V1_task-cuff_run-01_bold 0.0009413995485327314 0.0067329547178329565 7 36.408152170384646 1.0365383392986427 1.004719993506787 0.5258656092682875 377.0015563964844 0.1674882457618969 0 0.0 2.7004513712711695 2.4708624018167495 2.921987383890653 2.708504328106105 0.0111977 -0.012908859178423882 0.06556089222431183 443 90 90 54 2.3687256344158385 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.438245506629755 5.970570087432861 23.12628746032715 12.11963939666748 289055.0 7.787810802459717 73.05553131103511 31.80304527282715 0.6217864743396926 96.17169189453125 265.8957214355469 253.65463256835938 84919.0 105.54153747558594 463.59097900390606 107.08422088623047 33.65616226196289 +sub-10314_ses-V1_task-cuff_run-02_bold 0.0011559684684684687 0.010896561486486487 6 37.76772615760721 0.9907771878781035 0.9862846402708799 0.5271732560229955 366.0809326171875 0.22691382855662223 0 0.0 2.7717319267969507 2.534170732634436 2.9878832146055214 2.7931418331508935 0.0103289 -0.012141737155616283 0.06740978360176086 444 90 90 54 2.3422789449835917 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 30.215286032951248 6.434627532958984 23.33057403564453 12.313063621520996 288346.0 7.353603839874268 73.77646827697754 31.784778594970703 0.6044039001088009 96.17547607421875 262.8438415527344 251.07208251953125 85791.0 101.25225448608398 460.24888610839844 107.19074249267578 26.98322868347168 +sub-10314_ses-V1_task-rest_run-01_bold 0.0005907432432432433 0.00894984792792793 6 37.29097990627538 1.011618940000001 0.9767671164559814 0.5246829008994456 386.8316955566406 0.1878811037386213 44 9.90990990990991 2.7620194265115106 2.5265540662704282 2.9866373813216933 2.7728668319424092 0.00901708 -0.013617213815450668 0.06602411717176437 444 90 90 54 2.3457975309645014 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 31.50510303666185 6.0072102546691895 22.946331024169922 12.07207202911377 288415.0 7.617117404937744 72.24842453002927 31.195903778076172 0.6229844647049774 97.0887451171875 266.22967529296875 254.299560546875 85624.0 102.6670093536377 465.9771438598633 108.40580749511719 29.790225982666016 +sub-10314_ses-V1_task-rest_run-02_bold 0.0005938513513513514 0.007220791914414414 6 37.36025862340856 1.0208050105869075 0.988858471151241 0.5281989672026828 368.6130065917969 0.18405493942948825 54 12.162162162162161 2.715220815981958 2.4823040680287654 2.929087383608525 2.7342709963085845 0.0097936 -0.012756657786667347 0.06727001070976257 444 90 90 54 2.3502567994438333 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.38689398368917 6.02390718460083 23.392349243164062 12.121622085571289 288447.0 7.691441535949707 74.97387695312506 32.29191970825195 0.5904748492451573 95.16869354248047 262.5079040527344 250.35247802734375 85500.0 102.1233154296875 459.3587997436524 106.52070617675781 32.28589630126953 +sub-10314_ses-V3_task-cuff_run-01_bold 0.0007441309255079006 0.0065118420316027095 7 35.16594483285068 1.0232384523529412 0.9959541712669691 0.5205723825309733 416.4730529785156 0.16986625967486763 0 0.0 2.7273291489239706 2.506016567086515 2.938987383215134 2.7369834964702626 0.0128671 -0.013995558023452759 0.06324286013841629 443 90 90 54 2.389439905435146 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.67787111652194 5.878535270690918 22.804445266723633 12.066591262817383 289212.0 7.781038761138916 71.25711364746098 31.08238983154297 0.6179879213628654 98.6616439819336 275.8070373535156 263.8081359863281 84981.0 108.33634948730469 478.17156982421875 110.40519714355469 33.13296890258789 +sub-10314_ses-V3_task-cuff_run-02_bold 0.0008546726862302482 0.008423289232505644 7 34.99092735959278 0.9841015191402706 0.9709606831221723 0.5163487488813938 446.63507080078125 0.19309996689574457 1 0.22573363431151242 2.843631925845456 2.6116623962218606 3.068545711400282 2.8506876699142256 0.00856156 -0.013227232731878757 0.062162913382053375 443 90 90 54 2.3720607789071315 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.101251600310405 5.796539783477783 22.606122970581055 11.878104209899902 290339.0 7.5033860206604 70.98465118408193 30.832908630371094 0.5086197026808059 103.3202896118164 276.8301696777344 266.6388244628906 84351.0 103.12866973876953 478.46728515625 112.40742492675781 29.461883544921875 +sub-10314_ses-V3_task-rest_run-01_bold 0.0007513288288288288 0.007446178648648649 6 35.682698032121905 1.0075359629571112 0.9862603341534985 0.5191300205922332 427.83612060546875 0.2038391890531481 59 13.288288288288289 2.767201370674295 2.5464665654791765 2.9845582147376453 2.7705793318060636 0.0119273 -0.01371270976960659 0.06399595737457275 444 90 90 54 2.3690332962380847 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.23970455159829 5.930408477783203 22.67831802368164 11.986486434936523 288842.0 7.50900936126709 71.09223365783694 30.996788024902344 0.5728087997952143 100.55147552490234 276.5108947753906 264.8806457519531 85390.0 105.64347038269042 479.3571075439453 111.8089370727539 31.398357391357422 +sub-10314_ses-V3_task-rest_run-02_bold 0.0006771011235955056 0.00838561795505618 5 35.25777264759012 0.9941502155855851 0.9755175707882876 0.5177823003334144 430.4498291015625 0.18646046641157288 55 12.359550561797754 2.7784652595929864 2.5592165649725374 2.9911832144743915 2.7849959993320303 0.00963103 -0.01249577198177576 0.06100088357925415 445 90 90 54 2.3862711346977354 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.24139973314854 5.790477752685547 22.719501495361328 12.013483047485352 290306.0 7.826966285705566 71.42022705078125 30.987041473388672 0.5607647859016955 101.59656524658203 278.1453857421875 266.90447998046875 84118.0 107.71966590881348 480.7249481201171 111.84935760498047 30.717714309692383 +sub-10315_ses-V3_task-rest_run-01_bold 0.001899258426966292 0.017710179550561797 5 47.85097214977475 1.1383903967792783 1.001414492027028 0.4588912366878918 177898.734375 0.5016056245532198 330 74.15730337078652 2.6911875137687606 2.743689014084507 2.800500281690141 2.5293732455316342 0.00693479 -0.015891727060079575 0.031645096838474274 445 96 96 54 4.28530097621691 0.7999997138977051 2.21875 2.21875 2.3999977111816406 7 67.88246837359056 71.83442687988281 693.659912109375 48.698944091796875 334907.0 0.26971842050552364 2977.0433349609384 1388.7919921875 1.8049478599676565 3976.55078125 21057.708984375 20843.26171875 94594.0 13369.4794921875 29043.826074218745 4863.87109375 34.19596862792969 +sub-10318_ses-V1_task-cuff_run-01_bold 0.0006740950226244345 0.009075034819004527 8 42.678729241201786 1.0448558609297056 0.9889929138775515 0.526694931856907 459.3434753417969 0.31201014428706964 9 2.0361990950226243 2.6620499830525013 2.409679070914623 2.893808218343726 2.682662659899155 0.0141118 -0.034157127141952515 0.0984896570444107 442 90 90 54 2.3158696362712274 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 56.92487875465177 4.132503509521484 23.17405128479004 10.57918643951416 286833.0 7.6221723556518555 76.65475311279289 36.8241081237793 1.0096807526044218 88.59722900390625 260.74517822265625 242.2013702392578 86870.0 121.61866912841796 463.2603088378907 104.58273315429688 31.77236557006836 +sub-10318_ses-V1_task-cuff_run-02_bold 0.0007836199095022624 0.006984911561085974 8 39.90806247410432 1.0333513236054412 0.9919876422448975 0.5259562720187226 464.6191711425781 0.2351698855767627 1 0.22624434389140272 2.6590041500452273 2.4048332377738464 2.883324885426963 2.6888543269348735 0.00485937 -0.03325666859745979 0.09480652213096619 442 90 90 54 2.3161133927824813 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 53.99496351836979 3.884284019470215 22.732585906982422 10.450226783752441 287009.0 7.705882549285889 75.31040802001942 35.183712005615234 0.992390195652292 87.97333526611328 259.59942626953125 240.90725708007812 86722.0 121.5069034576416 461.2985610961914 104.01298522949219 33.910560607910156 +sub-10318_ses-V1_task-rest_run-01_bold 0.0007479683972911965 0.009216624446952594 7 41.55376272947961 1.032553776764706 0.9817894913574657 0.5263680912205422 470.39691162109375 0.3080208230872142 182 41.08352144469526 2.6891569274277103 2.4284332368360664 2.9259373837336944 2.7131001617133714 0.0232198 -0.0331883542239666 0.09547273814678192 443 90 90 54 2.330255740612794 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 56.23119361178571 4.036159515380859 23.158897399902344 10.54853343963623 287026.0 7.686230659484863 76.96783447265625 36.38592529296875 0.9437208949968214 89.247314453125 262.6971740722656 244.4537353515625 86901.0 122.03837585449219 464.8374938964844 104.90364837646484 30.87986946105957 +sub-10318_ses-V1_task-rest_run-02_bold 0.000675472972972973 0.008696864436936937 6 41.30282798586907 1.0151042320090298 0.9696047249435659 0.5271613192345369 456.1380615234375 0.2671078315260097 141 31.756756756756758 2.6660638721413146 2.409924904238188 2.8947498849729745 2.6935168272127803 0.0143825 -0.03341998904943466 0.09494585543870926 444 90 90 54 2.311136095395368 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 57.80235360487012 3.93356990814209 22.77285385131836 10.47747802734375 286557.0 7.673423767089844 75.48693847656253 35.32904815673828 1.059861111375647 86.79566192626953 258.1193542480469 239.16217041015625 87049.0 121.01306457519532 458.35270385742183 103.48191833496094 30.467609405517578 +sub-10318_ses-V3_task-cuff_run-01_bold 0.0006594796380090498 0.006882344615384615 8 40.088160170929676 1.0618762097732428 1.0008951814058944 0.5167322040001618 519.20263671875 0.24438525242138762 0 0.0 2.6645847063996233 2.4254999036192935 2.848579053474305 2.719675162105272 0.0116855 -0.026857903227210045 0.10055941343307495 442 90 90 54 2.3055230693113153 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 72.3173794168001 3.485121965408325 21.83283042907715 10.06787395477295 289632.0 7.563348770141602 73.52014045715337 35.03888702392578 0.9544505630333315 89.20437622070312 265.28607177734375 244.8710479736328 84737.0 125.41991729736328 471.67015991210934 106.20999908447266 34.322513580322266 +sub-10318_ses-V3_task-cuff_run-02_bold 0.0006460270880361174 0.005877287246049661 7 39.899954960090504 1.0494689933031678 0.9955671632579182 0.517649404088576 506.7588195800781 0.2597113472491746 0 0.0 2.648229150544306 2.418104070579844 2.835587387323881 2.6909959937291936 0.00747147 -0.028379149734973907 0.1007339209318161 443 90 90 54 2.2849662989619546 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 63.31651589542855 3.6412439346313477 22.036781311035156 10.171557426452637 289523.0 7.480813026428223 74.16456146240226 35.12871170043945 1.0784031689879106 89.039794921875 264.3759765625 243.93905639648438 84925.0 123.7751693725586 471.304296875 106.75764465332031 35.046260833740234 +sub-10318_ses-V3_task-rest_run-01_bold 0.000532018140589569 0.007343106507936508 9 38.851490333113624 1.0334541109545452 0.9776265447272723 0.5157407684559056 529.2123413085938 0.21693261342406317 127 28.798185941043084 2.6788791511119023 2.4299999034404793 2.8617207196187686 2.744916830276459 0.00770056 -0.026083355769515038 0.10116070508956909 441 90 90 54 2.3238615199698343 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 73.70673279356046 3.4358716011047363 21.726491928100586 10.049886703491211 290046.0 7.591836929321289 72.98583030700684 34.960304260253906 0.9224998065672567 89.89579010009766 266.8636474609375 246.76303100585938 84458.0 126.51927947998047 471.94762878417964 106.18600463867188 33.25311279296875 +sub-10318_ses-V3_task-rest_run-02_bold 0.00059239898989899 0.008393161565656566 8 38.90367831458228 1.0020909575949377 0.9584968909367084 0.518708879327046 506.1318054199219 0.2220376039705723 105 26.515151515151516 2.661829150930108 2.417729070594745 2.848791553465861 2.7189668287297186 0.0128922 -0.02753353863954544 0.10119174420833588 396 90 90 54 2.300094273225194 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 62.37089152438989 3.5230517387390137 22.03017807006836 10.11111068725586 289606.0 7.601010322570801 73.82323455810547 34.5993766784668 1.086686254630063 87.93777465820312 262.9123229980469 242.26515197753906 84719.0 125.09242706298828 467.7712127685546 105.3277359008789 31.593400955200195 +sub-10319_ses-V1_task-cuff_run-01_bold 0.00044259009009009015 0.003953637454954955 6 33.37588611191874 1.00662172738149 0.998187885191874 0.546441904162017 402.53692626953125 0.07921814829268461 0 0.0 2.7142166485279033 2.500370733977527 2.932991550120054 2.7092876614861288 0.018759 -0.018128102645277977 0.10897855460643768 444 90 90 54 2.379213141586251 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.26985125522864 4.771708965301514 25.05422019958496 11.162162780761719 278398.0 7.7680182456970215 86.43468475341797 38.99814987182617 0.9285360384204675 91.4939193725586 255.45950317382812 241.53717041015625 93358.0 108.31531829833986 441.28671875 101.51922607421875 37.85990524291992 +sub-10319_ses-V1_task-cuff_run-02_bold 0.0004722972972972973 0.004136190675675676 6 34.17215080776525 1.0118353593453733 1.0008006010609485 0.547195911299648 399.8720397949219 0.0919205421747629 0 0.0 2.7085472041020573 2.4949540675260993 2.927641550332644 2.7030459944474297 0.0177833 -0.01892859861254692 0.10984396189451218 444 90 90 54 2.3789084460485155 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 32.41009051897036 4.7950825691223145 25.044401168823242 11.168919563293457 278329.0 7.763513565063477 86.46621704101562 38.83560562133789 0.9442219748966969 90.89788818359375 254.3650665283203 240.45834350585938 93472.0 108.5667823791504 439.69471130371096 101.0787353515625 37.45447540283203 +sub-10319_ses-V1_task-rest_run-01_bold 0.0004076351351351351 0.004299870608108108 6 33.65250721805871 1.0081135251467264 0.994230028419865 0.5457552546164021 407.6634216308594 0.08223659861434199 0 0.0 2.7306652593090917 2.5169790666509044 2.9559540492076057 2.7190626620687643 0.017015 -0.020275861024856567 0.10772476345300674 444 90 90 54 2.3734141442663628 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.73760253916357 4.795083999633789 24.939687728881836 11.19594669342041 277786.0 7.77477502822876 85.93187141418457 38.6842155456543 0.9432452162180147 92.58250427246094 257.6601257324219 243.86036682128906 93906.0 109.03153419494629 446.21959686279297 102.74610900878906 37.27968978881836 +sub-10319_ses-V1_task-rest_run-02_bold 0.000508247191011236 0.004281407415730337 5 34.0575850720946 1.0117996462162162 0.9996084573873879 0.5476159157278392 394.74267578125 0.08834252545356995 0 0.0 2.702370815087447 2.493345734256675 2.921929050559638 2.6918376604460277 0.0247523 -0.019415266811847687 0.11026740819215775 445 90 90 54 2.3775715187792357 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 31.739858226762784 4.757654666900635 24.998727798461914 11.132584571838379 278262.0 7.75955057144165 86.6403373718262 38.65810775756836 0.9782016094670296 90.26383209228516 252.6011199951172 238.73931884765625 93460.0 108.17921714782715 436.89742279052734 100.41255950927734 37.271610260009766 +sub-10320_ses-V1_task-rest_run-01_bold 0.0009376643990929706 0.010152998117913833 9 37.816138605704545 1.0481809264090904 0.9999900579545457 0.44495007113329066 5917.0234375 0.2769851295333362 206 46.71201814058957 2.439763306192834 2.471816568445501 2.402620737861763 2.4448526122712377 0.00859642 -0.006660995073616505 0.016564330086112022 441 90 90 60 2.831433545910768 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 182.68452424587932 20.32274627685547 41.530235290527344 14.219954490661621 329128.0 0.0317460335791111 157.50770797729444 93.58172607421875 4.102443712846692 297.85845947265625 1131.619384765625 1081.9388427734375 89077.0 613.3088623046875 1814.800512695312 382.1148376464844 33.12834930419922 +sub-10320_ses-V1_task-rest_run-02_bold 0.0018579138321995464 0.007165672675736962 9 36.72542699036362 1.1061079757727281 1.0542935587727276 0.44494881409462644 6342.658203125 0.25273052573259336 167 37.868480725623584 2.4290077544422597 2.466658235317141 2.3925124049300988 2.4278526230795396 0.00585752 -0.007248274050652981 0.016956700012087822 441 90 90 60 2.8078597312944034 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 166.77595305605612 19.707515716552734 41.832950592041016 13.725624084472656 328958.0 0.03401360660791397 160.02720642089844 94.66265869140625 4.287654718463641 298.7880859375 1127.391845703125 1077.94775390625 89086.0 608.6763153076172 1812.7415466308594 383.90155029296875 36.361656188964844 +sub-10320_ses-V3_task-rest_run-01_bold 0.0025520454545454544 0.013287037340909092 10 44.97897727309796 1.1352910162870165 1.0226887840546697 0.43373939914315257 10047.89453125 0.36859861331085464 260 59.09090909090909 2.3817188703249417 2.3781790721663207 2.3536832398063643 2.413294299002139 0.00637295 0.007937265560030937 0.016886219382286072 440 90 90 60 2.9349846064457465 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 107.50283738378722 15.722321510314941 34.81476593017578 10.888635635375977 332071.0 0.006818181835114956 132.67385864257812 88.40624237060547 4.692466016926114 271.50823974609375 1122.1328125 1067.6044921875 87785.0 625.3449951171875 1772.0999755859375 363.7492370605469 31.81682014465332 +sub-10320_ses-V3_task-rest_run-02_bold 0.0015532426303854876 0.011145662471655328 9 45.29572113200001 1.1336862135909092 1.0221250625227267 0.43377732426710736 10119.556640625 0.3880300916191367 286 64.85260770975057 2.3672147074830696 2.3691249058594344 2.3355749071925915 2.396944309397183 0.009433 0.007935998030006886 0.01704001985490322 441 90 90 60 2.9446298022802178 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 126.41370973242675 15.612709045410156 35.01256561279297 10.809523582458496 332416.0 0.006802720949053764 133.67404174804688 89.09452819824219 4.846345852406486 270.54974365234375 1117.640380859375 1062.7755126953125 87613.0 628.2381225585938 1762.0467285156242 360.9178466796875 32.929779052734375 +sub-10321_ses-V1_task-cuff_run-01_bold 0.001190447427293065 0.03126492639821029 3 54.59196760419282 1.0916371352690584 1.0340192801121084 0.46686068464751485 109440.1171875 0.7538537091937303 129 28.859060402684563 2.61382571637723 2.6527098591549296 2.790814647887324 2.3979526420894355 0.0199228 -0.02281206101179123 0.04616717994213104 447 96 96 54 4.338540730212245 0.7999997138977051 2.21875 2.21875 2.4000015258789062 38 36.69216952362626 87.0880126953125 892.9850463867188 59.4005012512207 337964.0 0.7316980481147767 3972.1649780273374 1818.15673828125 1.8361597517738728 3749.078125 20896.017578125 20826.69140625 91800.0 12538.402001953125 28519.195703125002 4800.36474609375 25.424137115478516 +sub-10321_ses-V1_task-cuff_run-02_bold 0.0011451569506726457 0.02682687399103139 4 52.20143016869666 1.1133133153932577 0.9744649014831456 0.467576756724291 121666.2734375 0.6473749192135114 98 21.973094170403588 2.597115417924669 2.6264428169014087 2.743238309859155 2.4216651270134437 0.0111918 -0.023377882316708565 0.04683810472488403 446 96 96 54 4.2762369687647315 0.7999997138977051 2.21875 2.21875 2.4000015258789062 12 34.27938183927296 82.41898345947266 896.97607421875 56.218650817871094 338040.0 0.6937405377626419 4019.2719970703115 1818.366943359375 1.6832041466714713 3888.385009765625 21032.92578125 20946.580078125 91890.0 12593.171044921875 28856.991015625 4898.3408203125 28.06466293334961 +sub-10321_ses-V1_task-rest_run-01_bold 0.0015999328859060405 0.027583206040268458 3 54.60838460697313 1.104475578228699 2.240526537107622 0.4675388715462551 111055.671875 0.7244789106735599 364 81.4317673378076 2.614379571613053 2.6549498591549296 2.779127887323944 2.409060968360285 0.0193719 -0.025243010371923447 0.04546956345438957 447 96 96 54 4.250593249534369 0.7999997138977051 2.21875 2.21875 2.4000015258789062 61 37.30516821061689 88.52827453613281 932.32177734375 60.400634765625 338285.0 0.7666367411613464 4156.335644531249 1896.656982421875 1.8266780595297512 3919.19677734375 21377.55078125 21299.125 91654.0 12716.82568359375 29379.355566406244 5010.83203125 26.567787170410156 +sub-10321_ses-V1_task-rest_run-02_bold 0.0019441163310961972 0.021410120894854584 3 44.13897429654708 1.116550091793721 0.9918876358744401 0.4694614651842695 118249.0390625 0.5428233845143499 361 80.76062639821029 2.569667800731266 2.589372394366197 2.69880338028169 2.4208276275459113 0.0165829 -0.02385978028178215 0.045939382165670395 447 96 96 54 4.302081522634043 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 33.419977618823445 83.80107116699219 912.0288696289062 57.05799102783203 337982.0 0.5939913243055344 4131.177270507813 1845.9161376953125 1.7421983129972434 3818.45947265625 20892.482421875 20790.921875 91980.0 12627.40234375 28673.556054687502 4832.732421875 31.651472091674805 +sub-10324_ses-V1_task-cuff_run-01_bold 0.003899185520361991 0.012425894095022625 8 46.769894913446684 1.1551346008843533 1.0202395161224491 0.4358025740281997 11883.34375 0.30491636216649765 0 0.0 2.3839244309834235 2.375345738945574 2.389258238392741 2.3871693156119567 0.00804672 -0.013192383572459221 0.025623181834816933 442 90 90 60 2.8289086066523312 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 131.6591745709679 14.48388385772705 42.656925201416016 9.934389114379883 333039.0 0.009049774147570133 176.8746643066403 114.32627868652344 3.6013805251857782 305.66937255859375 1142.0806884765625 1087.283935546875 85438.0 622.2951354980469 1824.5861816406245 384.3452453613281 30.609539031982422 +sub-10324_ses-V1_task-cuff_run-02_bold 0.0010165532879818594 0.013887843696145125 9 47.29891528211363 1.0844619016818182 0.9711080104545456 0.4349630326735163 11872.6015625 0.3284591348016339 0 0.0 2.4016772036988385 2.381037405386074 2.4148957373739983 2.409098468336443 0.00462139 -0.013245542533695698 0.026645783334970474 441 90 90 60 2.8122161288589282 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 131.9149226620053 14.59909439086914 42.67627716064453 9.958049774169922 333760.0 0.004535147454589605 176.74375915527344 113.64847564697266 3.642957069197661 310.33441162109375 1143.0997314453125 1089.131591796875 85011.0 622.6270141601562 1827.822021484375 387.2835998535156 29.79233169555664 +sub-10324_ses-V1_task-rest_run-01_bold 0.00045636363636363637 0.009061091068181818 10 39.54302822995443 1.09225996261959 0.9724204533712986 0.43487057346793684 12551.2919921875 0.22351676736144144 89 20.227272727272727 2.3785591568452804 2.3779832388407693 2.3877707384518487 2.369923493243222 0.00324314 -0.01403194759041071 0.025502651929855347 440 90 90 60 2.800898779244715 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 116.78239362195741 14.334067344665527 42.892757415771484 9.7409086227417 333016.0 0.0 178.41136169433594 115.5965576171875 3.5827142857154826 312.3117370605469 1153.2247314453125 1097.485107421875 85580.0 623.6663330078126 1848.3167785644534 391.8309020996094 36.21807098388672 +sub-10324_ses-V1_task-rest_run-02_bold 0.0007418778280542986 0.009736364117647058 8 44.73532325074829 1.127430364421769 0.9784680399092968 0.43432432330457105 12033.962890625 0.27888704133120606 204 46.15384615384615 2.3771272120504374 2.361866572814521 2.3975415713969244 2.3719734919398676 0.00530484 -0.013584448024630547 0.02680222876369953 442 90 90 60 2.7742319048852186 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 130.42001936282662 14.624765396118164 43.484352111816406 9.945701599121094 334265.0 0.0 182.70679931640603 115.1220932006836 3.6886524112698638 314.1002502441406 1150.3255615234375 1094.326904296875 84718.0 623.1713012695312 1849.8378295898428 394.4588928222656 34.30678176879883 +sub-10325_ses-V1_task-cuff_run-01_bold 0.002990650224215247 0.02115021390134529 4 35.09681906105621 1.0953104567865164 0.9994747885842687 0.4491268333154199 722986.5625 0.26032734380899997 9 2.0179372197309418 2.8695157394180755 2.893660845070422 3.0933588732394366 2.621527499944369 0.00433109 -0.0216946043074131 0.02454383298754692 446 96 96 54 4.715351991271514 0.7999997138977051 2.21875 2.21875 2.4000015258789062 9 26.33640211864579 35.15720748901367 598.1141967773438 24.124441146850586 337239.0 0.3303122252225876 2891.238305664062 1244.2232666015625 2.4652297498164 3406.54638671875 21411.9453125 21329.11328125 91548.0 14165.131396484376 28835.723828125 4523.3095703125 33.84210205078125 +sub-10325_ses-V1_task-cuff_run-02_bold 0.0008918552036199097 0.01601346443438914 8 34.9672146189796 1.124242506054422 1.00319000165533 0.4500562337693537 406654.5625 0.300006851508299 6 1.3574660633484164 2.854979391741535 2.906852957746479 3.064874366197183 2.5932108512809426 0.00998772 -0.021212169900536537 0.024129122495651245 442 96 96 54 4.5967553978630304 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 25.67968829217845 46.544864654541016 609.16796875 31.778440475463867 336833.0 0.2720009207725525 2964.4612304687453 1266.606201171875 2.4734456315044744 3498.744384765625 21268.86328125 21192.3203125 91923.0 13775.0458984375 28786.8771484375 4610.2529296875 37.437408447265625 +sub-10326_ses-V1_task-cuff_run-01_bold 0.001674785553047404 0.010510315485327312 7 35.97508977649323 1.1294792848190052 1.034113649479638 0.40203206984069234 12452.8349609375 0.1599113042946771 0 0.0 2.4537505434709646 2.480816568087873 2.5227498997549254 2.357685162570095 0.00842732 0.0030757691711187363 0.015790678560733795 443 90 90 60 2.686127718086415 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 149.46989601763684 15.590752601623535 36.50745391845703 10.671558380126953 344748.0 0.0 130.43792724609375 99.7200698852539 4.240665550717442 311.4334716796875 1238.2633056640625 1181.296875 75134.0 602.7900604248047 2042.8230712890613 439.7739562988281 33.41478729248047 +sub-10326_ses-V1_task-cuff_run-02_bold 0.001093560090702948 0.009016334603174603 9 35.797786027727284 1.128268856068182 0.987350808863636 0.40266484170786193 11907.4375 0.14463824316322393 0 0.0 2.4458394148308553 2.4798165681276094 2.520741566501396 2.336960109863561 0.0138673 0.0032740095630288124 0.014612850733101368 441 90 90 60 2.673533911753941 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 1 121.02220583518131 15.89174747467041 37.09781265258789 10.868480682373047 344919.0 0.0 134.01927642822238 100.21636962890625 4.373305752129965 310.5313415527344 1238.4345703125 1180.7210693359375 75044.0 600.1304809570313 2043.755151367187 441.6301574707031 36.02341842651367 +sub-10326_ses-V1_task-rest_run-01_bold 0.0015449547511312217 0.013443694728506787 8 34.832581020521545 1.0503251758730165 1.0218724282312919 0.40357734479607754 11746.384765625 0.1722964713625991 41 9.276018099547512 2.4841894436987855 2.522604066427387 2.5577040650326386 2.3722601996363313 0.0060813 0.004451823886483908 0.01449134387075901 442 90 90 60 2.6767374448226784 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 6 104.76284460452072 15.94636058807373 37.1539421081543 11.042986869812012 344568.0 0.009049774147570133 132.0451393127439 98.6761703491211 4.347271765075479 311.8998107910156 1240.589111328125 1183.237548828125 75369.0 599.3963867187499 2048.716406249999 442.041748046875 31.014047622680664 +sub-10326_ses-V1_task-rest_run-02_bold 0.0010892533936651585 0.008603379004524885 8 35.432197012970505 1.129051337324263 0.9830068370294794 0.4027958679294801 12088.93359375 0.16046506251908896 36 8.144796380090497 2.450675527808922 2.4799040681241324 2.5327707326900666 2.3393517826125656 0.0106379 0.0038708464708179235 0.013215158134698868 442 90 90 60 2.677546738188754 0.800000011920929 2.4000000953674316 2.4000000953674316 2.399993896484375 0 90.74250479562407 15.765228271484375 36.8912353515625 10.780543327331543 344812.0 0.0 134.5067901611328 96.3879623413086 4.369227427431962 312.18170166015625 1241.1812744140625 1181.685546875 74935.0 611.96904296875 2047.7735961914063 441.3284912109375 36.218544006347656 +sub-10327_ses-V1_task-cuff_run-01_bold 0.014753496659242764 0.075493889532294 1 126.94555345598204 1.3049802824553556 1.1999922890624997 0.45035430253080894 421913.5625 3.0192912242829624 317 70.60133630289532 3.1239572880904554 2.9789340845070424 3.6761645070422535 2.716773272722071 0.0551859 -0.020756974816322327 0.03293770179152489 449 96 96 54 3.6700749665014527 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 26.64660769689955 39.96015167236328 595.6000366210938 27.57757568359375 334779.0 0.579346811771393 2701.098193359375 1205.716064453125 4.0666142417992495 3751.8408203125 20176.68359375 19879.203125 93881.0 11508.1767578125 29323.072265625 5416.537109375 11.969513893127441 +sub-10327_ses-V1_task-cuff_run-02_bold 0.014779198218262806 0.07261697349665924 1 119.13911487381684 1.3013648805133944 1.421339434754464 0.4494696466882601 486986.09375 2.7688988140025734 272 60.57906458797327 3.09891902100185 2.958503661971831 3.638688450704225 2.6995649503294943 0.0412256 -0.019575539976358414 0.029068434610962868 449 96 96 54 3.718823294750102 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 28.622491450143244 38.60643768310547 601.4164428710938 26.45036506652832 335487.0 0.35969238877296444 2752.9740478515632 1249.4681396484375 4.215654479648055 3607.230712890625 20471.900390625 20161.75 93564.0 11806.347509765626 29712.59042968748 5421.51123046875 12.717794418334961 +sub-10327_ses-V1_task-rest_run-01_bold 0.013540290178571428 0.05418934642857143 2 91.74152853885901 1.2089558965100666 1.133967824407159 0.4477259787309139 526109.25 1.8664472858336776 370 82.58928571428571 3.0407477723097003 2.923294647887324 3.5332461971830984 2.6657024718586784 0.0158638 -0.01927657052874565 0.026821209117770195 448 96 96 54 3.637271540064595 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 28.4336521819709 37.7495002746582 613.8533935546875 25.784076690673828 335260.0 0.3035933181643486 2776.0578491210936 1294.25439453125 4.411999663979855 3811.21435546875 21167.365234375 20758.51171875 93436.0 12161.786376953125 30972.47607421875 5707.13525390625 15.442150115966797 +sub-10327_ses-V1_task-rest_run-02_bold 0.025603755555555555 0.05774411977777777 0 134.13527557951014 1.3008133917149223 1.2829365608463248 0.45838168631979603 261816.125 2.223272136753242 398 88.44444444444444 3.203304686635878 3.106816901408451 3.7506614084507044 2.7524357500484786 0.173512 -0.03684085234999657 0.06649666279554367 450 96 96 54 3.1014243154367422 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 14.697433642520501 45.48023223876953 701.4443969726562 31.069046020507812 334510.0 0.4043829783797264 3506.3361328125 1352.038330078125 1.8944281196861708 4870.37939453125 18394.26953125 17833.01953125 94124.0 9831.311962890626 28460.14580078123 5749.91455078125 9.710779190063477 +sub-10328_ses-V1_task-cuff_run-01_bold 0.0006210633484162897 0.004871769909502262 8 31.372894278548735 1.014816123265307 1.0024599174829927 0.5061488199854226 652.2847290039062 0.12157488692956397 0 0.0 2.763301375231595 2.5292248994976325 2.857154053133565 2.9035251730635867 0.0187001 -0.009508376009762287 0.07963179051876068 442 90 90 54 2.2433023869366697 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 34.38588326872596 3.4247446060180664 20.064603805541992 9.533937454223633 288468.0 7.042986869812012 67.22398376464844 29.85438346862793 0.9623701800920279 102.10836791992188 281.2947998046875 261.3755798339844 86173.0 123.27737884521484 504.6565795898437 116.51307678222656 38.21458435058594 +sub-10328_ses-V1_task-cuff_run-02_bold 0.0013445701357466065 0.005636151153846154 8 31.703850571065765 1.0230343103401365 1.0199224209297049 0.5069928646131409 641.4775390625 0.1356672228012323 0 0.0 2.7740583199638524 2.535595732577811 2.8614540529626984 2.925125174351047 0.0151511 -0.010376852005720139 0.07951033115386963 442 90 90 54 2.2398546823710612 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 32.37378866706659 3.4750590324401855 20.176877975463867 9.576923370361328 288398.0 7.063348770141602 67.66550102233879 29.638717651367188 0.9914330061301819 101.14734649658203 279.8106384277344 259.8484191894531 86294.0 122.49582138061524 502.27456359863277 116.01061248779297 35.72828674316406 +sub-10328_ses-V1_task-rest_run-01_bold 0.0006207207207207206 0.006666954932432433 6 31.95191066453721 0.9885036517607223 0.9788612120541762 0.5052924406762972 657.2706298828125 0.14221284944531812 9 2.027027027027027 2.786149985997717 2.553820731853615 2.884104052062668 2.920525174076866 0.0154505 -0.009433140978217125 0.07814279198646545 444 90 90 54 2.2445740580602496 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 34.12181290363124 3.4727628231048584 20.009286880493164 9.54955005645752 288353.0 7.022522926330566 66.97747802734375 29.893966674804688 0.9078963135320435 103.14440155029297 283.1138610839844 263.30517578125 86166.0 124.06531715393066 507.1283874511719 117.30673217773438 34.80585861206055 +sub-10328_ses-V1_task-rest_run-02_bold 0.0004895871559633028 0.005360333348623853 14 32.38804985117242 1.006739545402298 0.9945160891954024 0.5075308158796723 634.7640991210938 0.14056448535145952 26 5.963302752293578 2.753656930984811 2.5221165664467584 2.8409332204447897 2.8979210060628855 0.0175022 -0.009962308220565319 0.0806693583726883 436 90 90 54 2.237565005757409 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.05925617196397 3.465071678161621 20.16303062438965 9.555045127868652 288397.0 7.087155818939209 67.55963134765625 29.800769805908203 1.0161931725438968 100.58062744140625 278.8273010253906 258.6318664550781 86188.0 122.97659873962404 500.9332321166991 115.58563232421875 37.359405517578125 +sub-10328_ses-V3_task-rest_run-01_bold 0.0027467924528301888 0.0038904803773584912 8 33.63459869634616 1.0280235567307692 1.0327920890384616 0.5181755890921983 525.1102905273438 0.16525193461987053 2 3.7735849056603774 2.733791653953499 2.4987665673746045 2.8059832218335776 2.8966251726523145 0.00696447 -0.01585109531879425 0.07195647805929184 53 90 90 54 2.2534597125918645 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 35.53877135633986 3.6085987091064453 20.849681854248047 10.226415634155273 284805.0 7.660377502441406 69.3396224975586 30.49371337890625 1.1128374385257782 97.20835876464844 270.4899597167969 251.90567016601562 89146.0 119.6603775024414 484.88208770751953 111.78556060791016 41.90204620361328 +sub-10330_ses-V1_task-cuff_run-01_bold 0.0012360496613995485 0.006418879525959368 7 37.12294506920814 1.0424102331221725 1.00815337719457 0.5091893473732115 663.974365234375 0.17780114358482163 0 0.0 2.702405541765806 2.412849904121959 2.8679165527059016 2.826450168469558 0.0075569 -0.016455790027976036 0.08339732885360718 443 90 90 54 2.5118890821896334 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 74.00187570926533 2.667344570159912 17.46782875061035 8.959367752075195 283713.0 6.984199047088623 50.53318405151343 28.96759605407715 0.8184288317538289 88.604736328125 260.0919189453125 245.90293884277344 89489.0 124.27584686279297 442.7223632812496 97.89507293701172 34.34830093383789 +sub-10330_ses-V1_task-cuff_run-02_bold 0.0025036711711711713 0.007755451396396396 6 39.632684346049665 1.0429590926185095 1.0134982297968407 0.5097399743722489 646.8788452148438 0.21590418627873267 6 1.3513513513513513 2.7098485974375914 2.419716570515769 2.870937385919198 2.8388918358778064 0.0114226 -0.01595115102827549 0.08449617028236389 444 90 90 54 2.5073916198985846 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 10 73.75744839749652 2.824958562850952 17.393068313598633 8.981982231140137 283911.0 6.781531810760498 50.05856132507324 28.67402458190918 0.8500942677147254 88.05455017089844 257.26263427734375 243.1531524658203 89397.0 122.73198547363282 437.98830566406247 96.9739990234375 32.30278778076172 +sub-10330_ses-V1_task-rest_run-01_bold 0.0006491216216216216 0.006510029144144144 6 37.27929818805871 1.0349039681715577 0.99232007972912 0.5068105159589742 687.1669921875 0.1821617498524929 73 16.44144144144144 2.6928027638875283 2.4074665710025402 2.8590498863915648 2.8118918342684807 0.0124104 -0.01665813848376274 0.082870252430439 444 90 90 54 2.5278223348352435 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 76.32159057939428 2.4977166652679443 17.139263153076172 8.860360145568848 284364.0 7.047297477722168 48.88964080810547 28.47447395324707 0.7599985276099783 89.09639739990234 261.73797607421875 247.729736328125 88951.0 124.6238784790039 444.62725830078125 98.00069427490234 34.92452621459961 +sub-10330_ses-V1_task-rest_run-02_bold 0.001615788288288288 0.009591152387387386 6 38.708346700699785 1.0373356023476297 0.9904466754176082 0.5099780280392221 655.8461303710938 0.18342642021764413 72 16.216216216216218 2.725243042189634 2.4243624036644933 2.8847123853718286 2.86665433753258 0.00878188 -0.016081251204013824 0.0842030942440033 444 90 90 54 2.502835137993078 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 74.34655994775612 2.611250877380371 17.400758743286133 8.912162780761719 283761.0 6.9707207679748535 50.10360336303711 28.80978012084961 0.8488039601337185 87.42012023925781 256.56005859375 242.7027130126953 89592.0 121.69087829589844 437.22828521728513 96.97057342529297 30.53030014038086 +sub-10330_ses-V3_task-cuff_run-01_bold 0.002442511312217195 0.00992766875565611 8 37.77343953718821 1.0321095307709751 1.0008356056462584 0.5112989189449341 578.348388671875 0.21480371971221915 0 0.0 2.815702761402733 2.557124898388986 3.0056498805662044 2.8843335052530072 0.00555247 -0.025269487872719765 0.08443288505077362 442 90 90 54 2.2891547342522442 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 58.737126927621766 3.5756876468658447 18.85519027709961 10.004525184631348 280931.0 7.106335163116455 56.35746765136719 27.312973022460938 0.8428816316806125 97.15406799316406 275.47296142578125 255.9717254638672 91724.0 121.65871734619141 487.0521667480466 111.81871032714844 28.54143714904785 +sub-10330_ses-V3_task-cuff_run-02_bold 0.0016195617529880478 0.005922130398406375 6 40.42783203119998 1.0764655968400012 1.0076662510399998 0.5132663858921501 559.041015625 0.22512853942316172 1 0.398406374501992 2.7588597057781623 2.519258233227005 2.9432832163777665 2.8140376677297154 0.00855597 -0.02684570476412773 0.08314517885446548 251 90 90 54 2.27437349122959 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 59.65852736011316 3.3964004516601562 19.093875885009766 10.00796890258789 281305.0 7.517928600311279 57.83984374999996 28.0164737701416 0.8587390651705951 96.14468383789062 273.3095703125 253.51394653320312 91709.0 120.28685302734377 484.38168945312486 111.46479034423828 35.46872329711914 +sub-10330_ses-V3_task-rest_run-01_bold 0.0058864719101123595 0.01079169782022472 5 38.96317142184683 0.9920354797972976 0.9945037519819815 0.50887023722842 590.590087890625 0.25880827001346957 140 31.46067415730337 2.8355749827621772 2.5763623976245564 3.048237378873929 2.8821251717880467 0.0138335 -0.02406834438443184 0.08777175098657608 445 90 90 54 2.296050228697476 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 5 70.63460575509289 3.561577558517456 18.7429256439209 9.934831619262695 281173.0 6.844944000244141 55.78966369628898 28.295032501220703 0.7803036018336664 98.1183090209961 274.515625 255.93482971191406 91721.0 118.92359924316406 483.3236083984375 111.46682739257812 26.46573257446289 +sub-10330_ses-V3_task-rest_run-02_bold 0.001841418918918919 0.01276518837837838 6 41.02886325679461 1.0090580762528227 0.9586423656207673 0.5109716235737709 590.419189453125 0.26993099850753244 156 35.13513513513514 2.8222277605507173 2.5562165650917463 3.044033212374321 2.8664335041860842 0.0314521 -0.027375521138310432 0.08979091048240662 444 90 90 54 2.352649886838967 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 65.1687569687876 3.252375602722168 19.251989364624023 9.961711883544922 282324.0 7.5765767097473145 57.07106094360336 30.141464233398438 0.7398169457205652 96.97357940673828 274.74761962890625 257.5540466308594 90729.0 119.4828872680664 478.4991088867188 109.47341918945312 25.81020736694336 +sub-10331_ses-V1_task-cuff_run-01_bold 0.0009304494382022472 0.01230922961797753 5 45.634813128153155 1.2111881920945935 0.9981362171396395 0.47390067938833214 782247.3125 0.364087002152384 1 0.2247191011235955 2.3978811618177263 2.307231549295775 2.526332394366197 2.3600795417912073 0.00734109 -0.014865908771753311 0.02082100510597229 445 96 96 54 4.055071076988738 0.7999997138977051 2.21875 2.21875 2.3999996185302734 0 95.96916341742947 28.436294555664062 421.94842529296875 19.510784149169922 315447.0 0.25731949806213383 1881.9599243164068 1085.85205078125 1.465527496220215 3917.32763671875 19675.599609375 19117.208984375 112117.0 13023.70546875 28238.249609374998 4714.37451171875 40.724021911621094 +sub-10331_ses-V1_task-cuff_run-02_bold 0.0012028988764044943 0.014559707617977528 5 47.35913000878381 1.1897260752252252 0.9893366939189197 0.4744784547358157 607460.9375 0.39986116804492744 3 0.6741573033707865 2.4056319293596755 2.309827605633803 2.533421971830986 2.373646210614238 0.005869 -0.014677773229777813 0.020949019119143486 445 96 96 54 4.062418967637167 0.7999997138977051 2.21875 2.21875 2.3999996185302734 0 93.10175362661114 32.45855712890625 424.47021484375 22.314411163330078 315270.0 0.2994249120354653 1894.3882568359359 1065.439453125 1.435873496859366 3917.98193359375 19649.146484375 19101.259765625 112176.0 13017.72705078125 28208.15380859375 4701.92138671875 37.51938247680664 +sub-10331_ses-V1_task-rest_run-01_bold 0.0006422522522522523 0.02069233108108108 6 49.1583817181264 1.1227444762753942 0.9563370923250568 0.4746132689835618 613451.8125 0.45623674077793797 310 69.81981981981981 2.459432989479288 2.3480923943661973 2.585185352112676 2.4450212219589904 0.00716947 -0.014102059416472912 0.02027042955160141 444 96 96 54 4.043744546815225 0.7999997138977051 2.21875 2.21875 2.3999996185302734 3 102.53919464307164 32.306358337402344 415.2427673339844 22.339754104614258 314191.0 0.40653373301029205 1831.0289916992188 1059.479736328125 1.4698639382598069 3949.590087890625 19778.556640625 19219.55078125 112914.0 13094.333984375 28446.851757812496 4752.88818359375 31.303590774536133 +sub-10331_ses-V1_task-rest_run-02_bold 0.00047186098654708523 0.02088048878923767 4 48.779722483910106 1.133607815483146 0.9614762091685393 0.47489002073676284 620328.875 0.4594667490504418 312 69.95515695067265 2.463037527705652 2.352392112676056 2.5938659154929575 2.4428545549479415 0.00627607 -0.014277465641498566 0.021483542397618294 446 96 96 54 4.032687671105592 0.7999997138977051 2.21875 2.21875 2.3999996185302734 4 111.27631787009489 31.865652084350586 424.78936767578125 22.0842342376709 314900.0 0.4498512089252472 1867.964129638672 1082.4627685546875 1.5264398465491746 3842.095703125 19426.8359375 18911.6484375 112661.0 12728.9697265625 27908.611328125 4689.568359375 31.269636154174805 +sub-10331_ses-V3_task-cuff_run-01_bold 0.0011845393258426967 0.020203746808988766 5 55.810274287477526 1.0867735802252256 0.9672049495720726 0.45665178999401995 1380679.375 0.598875379009628 73 16.40449438202247 2.514912740737555 2.42168338028169 2.646900281690141 2.476154560240835 0.0091321 -0.009028037078678608 0.020937010645866394 445 96 96 54 3.816266808801174 0.7999997138977051 2.21875 2.21875 2.3999996185302734 4 178.06533304387852 21.43500518798828 348.58636474609375 14.765215873718262 320883.0 0.20868623852729798 1581.815673828124 935.0216674804688 1.484784754141634 4120.220703125 19270.50390625 18623.796875 107172.0 12637.786083984374 28172.605761718747 4880.0859375 28.408050537109375 +sub-10331_ses-V3_task-cuff_run-02_bold 0.0007005617977528091 0.020441967191011233 5 55.15971630520267 1.0936184916891891 0.9606847927477481 0.4577716188706997 1158396.5 0.5725986085440274 74 16.629213483146067 2.4997400211434404 2.4052101408450706 2.6273261971830983 2.4666837254021527 0.00971043 -0.008674765937030315 0.021182198077440262 445 96 96 54 3.8445215011438174 0.7999997138977051 2.21875 2.21875 2.3999996185302734 7 170.37305225231637 23.54974365234375 349.8976745605469 16.179080963134766 320375.0 0.1783207207918167 1578.0766967773432 939.7592163085938 1.4685969142164943 4030.520751953125 19218.080078125 18571.642578125 107485.0 12623.085937500002 28016.827343749996 4830.65478515625 28.97198486328125 +sub-10331_ses-V3_task-rest_run-01_bold 0.0004106966292134832 0.02217311370786517 5 50.159096537567585 1.0705344849324332 0.9425987038063062 0.4560746478249994 1063118.875 0.49359611914055485 300 67.41573033707866 2.5049078617124114 2.407670985915493 2.636718873239437 2.4703337259823046 0.00743447 -0.00855210516601801 0.02043663151562214 445 96 96 54 3.857859633610103 0.7999997138977051 2.21875 2.21875 2.3999996185302734 9 165.19618521016562 25.051908493041992 347.5347595214844 17.22699737548828 321107.0 0.19095761924982071 1551.824450683594 931.5465087890625 1.4502775051184669 4086.290771484375 19416.22265625 18751.046875 106811.0 12789.17724609375 28319.724609375 4860.45654296875 28.066017150878906 +sub-10331_ses-V3_task-rest_run-02_bold 0.0012859775280898876 0.02013043550561798 5 54.91242265295042 1.0941858245270277 0.9758596670495494 0.4583910784669971 990589.4375 0.586097075725873 365 82.02247191011236 2.4953439449312245 2.397719436619718 2.6275245070422533 2.4607878911317016 0.010902 -0.00883321464061737 0.020396128296852112 445 96 96 54 3.840712895106992 0.7999997138977051 2.21875 2.21875 2.3999996185302734 3 155.61378016500234 25.708431243896484 356.19256591796875 17.691059112548828 320196.0 0.22533763200044632 1612.9720153808594 941.177490234375 1.479022906912249 4035.1640625 19220.400390625 18554.8046875 107536.0 12665.530517578125 28104.9755859375 4831.06103515625 28.57925796508789 +sub-10332_ses-V1_task-cuff_run-01_bold 0.0015737136465324385 0.02707414787472036 3 39.95721420580717 1.0700927406502245 1.8981827138789236 0.4299471981103823 251211.328125 0.3979735252803434 16 3.5794183445190155 2.6649473789501883 2.7304202816901406 2.7548484507042255 2.5095734044561993 0.0095394 -0.013366544619202614 0.01710512302815914 447 96 96 54 4.117910341162851 0.7999997138977051 2.21875 2.21875 2.4000015258789062 11 48.754224778644826 50.58101272583008 476.28985595703125 34.8873405456543 344781.0 0.5540112257003784 2178.59814453125 994.0877685546875 1.865132126666242 3362.1220703125 18425.015625 18174.470703125 86067.0 11357.9244140625 25996.56953125 4413.4921875 28.10442352294922 +sub-10332_ses-V1_task-cuff_run-02_bold 0.001155223214285714 0.026566944419642857 2 40.68739499765096 1.0717689694630872 0.9864584675391499 0.43010325021907475 266066.8125 0.4152945972323791 22 4.910714285714286 2.632476345465033 2.693255211267606 2.7101295774647887 2.4940442476627047 0.00861587 -0.01391199603676796 0.019612565636634827 448 96 96 54 4.148542490518066 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 87.37383931511253 49.73732376098633 487.5301818847656 34.340415954589844 345579.0 0.5535140037536621 2234.978344726561 1041.5579833984375 1.7766995904384082 3460.84033203125 18606.91015625 18351.9609375 85434.0 11613.772900390626 26224.00732421874 4423.68701171875 28.231632232666016 +sub-10332_ses-V1_task-rest_run-01_bold 0.0009418202247191012 0.025702979775280903 5 37.347763280608106 1.0596587156081079 2.2797224866216204 0.4316511868840474 267672.40625 0.3086302528152165 209 46.96629213483146 2.687655182237718 2.7534332394366197 2.7726422535211266 2.536890053755408 0.012679 -0.014258277602493763 0.015788760036230087 445 96 96 54 4.010929831959868 0.7999997138977051 2.21875 2.21875 2.4000015258789062 9 52.798176635743694 48.76270294189453 475.1885681152344 33.73157501220703 343744.0 0.5821696579456329 2150.6207885742188 998.6215209960938 1.907095436552373 3394.180419921875 18382.703125 18132.767578125 87262.0 10989.74677734375 26151.191992187498 4520.81298828125 29.445791244506836 +sub-10332_ses-V1_task-rest_run-02_bold 0.002254349775784754 0.031990431390134536 4 41.28331627137076 1.054153171955056 0.9769134534606737 0.42942136977930034 286943.75 0.39717035647596016 256 57.399103139013455 2.6831328177579237 2.7438918309859153 2.780412394366197 2.5250942279216586 0.0117322 -0.012414835393428802 0.016862625256180763 446 96 96 54 4.111302100692605 0.7999997138977051 2.21875 2.21875 2.4000015258789062 22 42.046816948966516 47.005428314208984 467.0495300292969 32.62714767456055 344630.0 0.6685298353433609 2136.6406127929686 961.950439453125 1.9081072908015049 3291.41162109375 18392.15625 18135.703125 86229.0 11305.098046874999 26042.84453124998 4411.15673828125 25.946701049804688 +sub-10333_ses-V1_task-cuff_run-01_bold 0.0004683069977426636 0.00908201920993228 7 36.45974595079189 1.0156421651357461 0.9740400092081445 0.5713415333098797 387.55889892578125 0.12825911959119837 0 0.0 2.7431235915008307 2.55080406530682 2.979029048290688 2.699537660904983 0.0268469 -0.03584938123822212 0.1610884964466095 443 90 90 54 2.236139592221013 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 26.365207054528515 5.582348823547363 29.927282333374023 11.97516918182373 264599.0 7.972912311553955 115.4313774108881 46.80782699584961 1.795040765000535 100.95248413085938 274.8157043457031 255.72122192382812 105654.0 121.66060943603514 485.12777862548796 114.35780334472656 33.25629425048828 +sub-10333_ses-V1_task-cuff_run-02_bold 0.0007151918735891648 0.006688756839729119 7 35.938497862805434 1.046289028868778 1.0018727497737556 0.5716821865157464 382.162841796875 0.10640440762756637 0 0.0 2.706387480523967 2.5233873997295935 2.936266549989917 2.6595084918523924 0.0229328 -0.03469149023294449 0.1607373058795929 443 90 90 54 2.2367986493734304 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 25.58104565340011 5.515415191650391 29.80215072631836 11.923251152038574 264648.0 8.004514694213867 115.33025207519529 46.6291618347168 1.8209407080122766 99.8229751586914 272.21771240234375 253.48081970214844 105619.0 120.2255126953125 480.33229980468747 113.32250213623047 36.589111328125 +sub-10333_ses-V1_task-rest_run-01_bold 0.0005673318385650223 0.008327386748878925 4 36.18156321649438 1.0239335809662924 0.9848909562247191 0.5699025818821277 396.5938415527344 0.13233768882101068 26 5.829596412556054 2.7684833134995905 2.5681790646163996 3.0140498802324185 2.7232209956499536 0.0218227 -0.03543693572282791 0.15759555995464325 446 90 90 54 2.220639500264528 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 25.00792223107953 5.494937419891357 29.8177490234375 11.939462661743164 264609.0 8.042601585388184 116.00045623779286 46.28483963012695 1.7303415574687007 102.87631225585938 276.9591064453125 257.9708557128906 105810.0 120.93599166870118 490.40754241943296 116.16907501220703 34.116615295410156 +sub-10333_ses-V1_task-rest_run-02_bold 0.0006217567567567567 0.006851752477477477 6 36.66885583049662 1.0511998648306995 1.0051383738148987 0.5724415367872588 378.48260498046875 0.1289559214665423 23 5.18018018018018 2.711098591573018 2.5266457329334524 2.943362383041287 2.663287658744315 0.0277922 -0.036014243960380554 0.1621701419353485 444 90 90 54 2.2347543656865283 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 26.350145661293706 5.506331920623779 29.93552017211914 11.925676345825195 264549.0 8.020270347595215 116.03874206542957 47.091548919677734 1.8146779777855375 99.5513916015625 271.59716796875 252.70947265625 105797.0 120.10946502685547 478.6270446777343 113.08100891113281 35.97593307495117 +sub-10333_ses-V3_task-cuff_run-01_bold 0.0008663738738738739 0.007921330923423424 6 37.55137693699773 1.05365763939052 0.9912458631376971 0.5684657904446684 348.7988586425781 0.13397147017468305 1 0.22522522522522523 2.814899978001311 2.6497332280423946 3.0814248775551762 2.7135418284063637 0.0383702 -0.04435963183641434 0.1443263292312622 444 90 90 54 2.0739214687608216 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.303081397291685 6.194205284118652 29.762800216674805 12.641892433166504 261056.0 8.148649215698242 110.8676815032959 46.25206756591797 2.601786828830104 105.18798065185547 279.458984375 257.86712646484375 109112.0 117.4754524230957 509.86701660156245 124.33737182617188 33.643131256103516 +sub-10333_ses-V3_task-cuff_run-02_bold 0.0007338600451467269 0.006828161218961625 7 36.19084165751131 1.0510889600226239 0.9965963063122176 0.5666566848910022 359.58880615234375 0.11249931836144883 0 0.0 2.8733166439255413 2.6977582261340527 3.1609707077276425 2.76122099791493 0.0176572 -0.04036568105220795 0.13789166510105133 443 90 90 54 2.0656935281959576 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 26.724474751733776 6.124518871307373 29.763242721557617 12.643341064453125 261832.0 8.194130897521973 112.49289398193348 45.41596603393555 2.363387108673817 109.49000549316406 284.1377868652344 262.353271484375 108392.0 117.1963882446289 518.9548950195312 127.00434875488281 35.88482666015625 +sub-10333_ses-V3_task-rest_run-01_bold 0.001062454954954955 0.007292233040540541 6 36.877639374401824 1.0622449082167043 1.002593486478556 0.5672335159827986 353.31951904296875 0.12899454797429716 8 1.8018018018018018 2.8316708110890523 2.663404060832498 3.1053582099374846 2.7262501624971724 0.0304686 -0.04452720656991005 0.1436610370874405 444 90 90 54 2.060540087376719 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 29.978825620890703 6.177509784698486 29.872753143310547 12.666666984558105 261216.0 8.191441535949707 111.92849540710449 46.63679122924805 2.538643487290183 107.34507751464844 282.1213684082031 260.20721435546875 109075.0 117.29707489013674 516.5389892578124 126.2804946899414 35.01427459716797 +sub-10333_ses-V3_task-rest_run-02_bold 0.002062700964630225 0.005227909163987138 8 36.0070829946129 1.0883873941290323 1.0333769303870965 0.5668996837989081 352.7246398925781 0.10987068424880791 10 3.215434083601286 2.848298588656999 2.6784540602344644 3.1265748757610767 2.739866829975456 0.014219 -0.039017654955387115 0.13744351267814636 311 90 90 54 2.080216915756972 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 26.19052514474613 6.164002895355225 29.57283592224121 12.67845630645752 261679.0 8.183279991149902 111.55948638916016 44.916255950927734 2.3368230936883094 108.80919647216797 283.1971435546875 261.9244384765625 108384.0 117.67394943237306 515.5048217773438 125.9114990234375 38.63840866088867 +sub-10334_ses-V1_task-cuff_run-01_bold 0.0010366666666666666 0.00974406213963964 6 44.56662201744923 1.0933042953273147 0.990657740790069 0.5241224971022421 543.5852661132812 0.2317712591168202 0 0.0 2.734823598250974 2.4342915699366103 2.8767540523547313 2.8934251724615794 0.00377853 -0.02501571550965309 0.12950371205806732 444 90 90 54 2.542614421855133 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 50.87555022225097 3.365907907485962 22.272993087768555 9.882883071899414 288843.0 7.297297477722168 72.4862632751464 38.7637939453125 0.5180668463509748 90.542236328125 261.2803649902344 245.88063049316406 86331.0 131.60472869873047 441.44483947753906 96.70330047607422 30.68970489501953 +sub-10334_ses-V1_task-cuff_run-02_bold 0.0008512612612612612 0.012375163806306306 6 47.35662592072238 1.0648413038148987 0.9594743259819413 0.5262039888001622 530.5223388671875 0.24941541847349882 3 0.6756756756756757 2.7432069320068653 2.4373874031469263 2.875987385718529 2.9162460071551406 0.00649393 -0.026375271379947662 0.128578320145607 444 90 90 54 2.53493301234846 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 49.49207965221555 3.4527268409729004 22.459177017211914 10.00900936126709 288053.0 7.490991115570068 73.14324493408172 38.16499710083008 0.5588719595536826 90.30850982666016 261.82958984375 246.08221435546875 86986.0 132.87725448608398 442.7196044921875 97.07585906982422 28.7519474029541 +sub-10334_ses-V1_task-rest_run-01_bold 0.0004555882352941176 0.007534666583710407 8 44.57802705485262 1.118544672131519 0.9814320027437642 0.5241106171556333 548.25830078125 0.18335242314757808 46 10.407239819004525 2.7134069309979183 2.4266624035730997 2.8635415528797483 2.8500168365409078 0.00567302 -0.02657485567033291 0.12365272641181946 442 90 90 54 2.5355296451837015 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 49.542692629997504 3.464996099472046 22.377361297607422 9.995475769042969 287628.0 7.4389142990112305 72.24265251159628 38.704505920410156 0.4376375695804282 92.60225677490234 265.475830078125 249.95928955078125 87192.0 132.5422019958496 449.0055633544922 98.58210754394531 34.697811126708984 +sub-10334_ses-V1_task-rest_run-02_bold 0.0006177927927927927 0.00814360286036036 6 44.81492305598195 1.1147298811738142 0.9930623885778769 0.5250761328163798 546.1204833984375 0.1972127395260097 74 16.666666666666668 2.718879154244458 2.4105790708788604 2.858541553078431 2.887516838776082 0.00817274 -0.025424782186746597 0.12843427062034607 444 90 90 54 2.520000716593337 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 48.382499382518205 3.0720579624176025 22.332054138183594 9.801801681518555 288413.0 7.596847057342529 73.11936950683594 38.258277893066406 0.6460272687318134 89.69577026367188 260.10089111328125 244.174560546875 86790.0 131.41622161865234 440.7593521118165 96.89408111572266 33.71257781982422 +sub-10335_ses-V1_task-cuff_run-01_bold 0.0005824107142857142 0.02515182589285714 2 64.73779731239375 1.0909471272930658 0.9604693385682325 0.4562834911880442 151535.90625 0.9988044386558692 241 53.794642857142854 2.8370113975124105 2.8926242253521126 2.9822783098591548 2.6361316573259623 0.00933104 -0.019630707800388336 0.02152428589761257 448 96 96 54 4.221610952329628 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 81.97816318095818 62.99163818359375 560.613037109375 42.63615417480469 334468.0 0.15580486655235293 2381.984448242185 1223.363037109375 1.2975533390259075 3221.995849609375 17689.736328125 17747.5390625 93592.0 9965.023486328126 24509.25693359375 4203.95068359375 27.90566635131836 +sub-10335_ses-V1_task-cuff_run-02_bold 0.0009721875 0.031198388169642856 2 58.0793124714094 1.12321880637584 0.9775699996196865 0.45697143958808895 126247.796875 0.7893681488066981 165 36.830357142857146 2.901504695409676 2.940660281690141 3.052818028169014 2.711035776369873 0.00795274 -0.019807830452919006 0.022490758448839188 448 96 96 54 4.15685181919175 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 88.08071308043168 69.88263702392578 571.8614501953125 47.41236114501953 334266.0 0.2867497131228447 2410.0950927734375 1228.9698486328125 1.2594395909367426 3308.161865234375 17673.65625 17751.86328125 93858.0 9830.919580078124 24595.898828125 4270.48388671875 24.65207290649414 +sub-10335_ses-V1_task-rest_run-01_bold 0.0013446188340807178 0.02974513677130045 4 59.62175316114612 1.1225908851011235 0.9973653829213478 0.45421864345534335 129793.5859375 0.8778383539604393 418 93.72197309417041 2.8755541225611605 2.9247414084507044 3.0200518309859152 2.681869128246862 0.00933427 -0.01891201362013817 0.02213653363287449 446 96 96 54 4.177628595754482 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 80.02095173279658 69.9123764038086 557.3257446289062 47.40557098388672 335271.0 0.2556310147047043 2353.00390625 1188.817138671875 1.193217673447979 3324.79150390625 17807.779296875 17853.689453125 93062.0 9942.17626953125 24755.816015624998 4273.619140625 25.05272674560547 +sub-10335_ses-V1_task-rest_run-02_bold 0.0012938255033557045 0.03456377986577182 3 54.683452999618886 1.1337291282735418 0.9840059482062787 0.4567650761740243 118501.171875 0.649341526290243 369 82.5503355704698 2.882669433821231 2.9210681690140845 3.036912676056338 2.6900274563932696 0.00815324 -0.01979336515069008 0.022650359198451042 447 96 96 54 4.213118970165415 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 70.14885749557179 73.00524139404297 579.1019287109375 49.674869537353516 335333.0 0.4550856351852418 2452.4353515624907 1207.2725830078125 1.303054993582096 3253.72998046875 17801.30078125 17856.31640625 93207.0 10025.5568359375 24637.5298828125 4238.24267578125 24.094266891479492 +sub-10335_ses-V3_task-cuff_run-01_bold 0.0013300000000000002 0.02542426241610738 3 44.17382631156954 1.0902179360313908 0.9837045752017941 0.437251703154116 503029.96875 0.4840573626890186 6 1.342281879194631 2.797813578183014 2.854043943661972 2.910269295774648 2.629127495112422 0.00539041 -0.008551429025828838 0.012090936303138733 447 96 96 54 4.033075670625762 0.7999997138977051 2.21875 2.21875 2.4000015258789062 8 62.92777234784748 38.54431915283203 514.5018920898438 26.403955459594727 340593.0 0.3421117186546325 2305.9979980468734 1171.7135009765625 1.2137924618688496 3689.26171875 19247.3515625 19171.244140625 89121.0 10806.173828125 27151.826171875 4753.47802734375 26.424108505249023 +sub-10335_ses-V3_task-rest_run-01_bold 0.0007584080717488789 0.024114452690582957 4 45.12570735633713 1.0966012381573025 0.974671823325842 0.43441540661156286 532121.1875 0.4461440703289281 330 73.99103139013452 2.770524072050631 2.8357994366197183 2.869399436619718 2.606373342912456 0.00521174 -0.007573910057544708 0.011912437155842781 446 96 96 54 4.019503256359546 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 56.07769974023839 37.563724517822266 496.01629638671875 25.72896957397461 341555.0 0.314097073674202 2250.795385742186 1127.046142578125 1.2456117920358825 3669.520263671875 19395.916015625 19298.5390625 88480.0 10856.96220703125 27490.26845703125 4801.19775390625 27.28111457824707 +sub-10335_ses-V3_task-rest_run-02_bold 0.0004857718120805369 0.028036553243847875 3 44.79823996035875 1.0608304914573992 0.953886887107623 0.43910398760030195 441664.09375 0.49504863846567393 349 78.07606263982103 2.8029640829281823 2.864072112676056 2.91593014084507 2.6288899952634206 0.00593692 -0.008748062886297703 0.01256469450891018 447 96 96 54 4.073252963364605 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 62.54370743283194 40.888206481933594 521.237548828125 28.11013412475586 340022.0 0.42329801321029664 2341.9336914062515 1184.5943603515625 1.2372765830676098 3605.57861328125 19167.17578125 19072.3359375 89463.0 10817.83486328125 26939.837109375 4682.30908203125 25.643978118896484 +sub-10337_ses-V1_task-rest_run-01_bold 0.0020985168539325843 0.019708107191011237 5 41.81493851497746 1.0449761311486494 0.9900295392342343 0.42155917590584574 10962.0888671875 0.30869151842217485 167 37.52808988764045 2.4415549708105924 2.4505957359554076 2.4192624038671493 2.4548067726092193 0.0186421 0.002135686809197068 0.016124509274959564 445 90 90 60 2.9852911312415893 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 19 63.16089764501329 15.698925971984863 34.30027389526367 10.858427047729492 337791.0 0.03595505654811859 124.04381942749023 81.81829833984375 4.60364588470079 280.66326904296875 1151.1527099609375 1103.166259765625 82178.0 656.4611114501954 1797.2912475585927 369.5316467285156 25.0289363861084 +sub-10337_ses-V1_task-rest_run-02_bold 0.001680921348314607 0.01942320415730337 5 45.164929952680176 1.0498149547747744 0.9656329463963963 0.4227124152710127 10098.232421875 0.3811286553076156 223 50.1123595505618 2.426471637481398 2.4349499032437842 2.3866624051625567 2.4578026040378544 0.00653136 0.002784961136057973 0.016702191904187202 445 90 90 60 3.042827860520573 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 66.87202045643247 15.925480842590332 33.80221176147461 11.159550666809082 338411.0 0.08089888095855713 122.26179885864258 79.68019104003906 4.274762060800498 274.128173828125 1132.296142578125 1085.864013671875 81808.0 654.9473052978516 1758.9005859374997 356.85797119140625 25.51418113708496 +sub-10337_ses-V3_task-cuff_run-01_bold 0.0028378409090909088 0.024064042045454544 10 36.26659946820045 1.005504528268793 0.9440306915034175 0.4272239270369272 10530.5576171875 0.1863030358603213 0 0.0 2.4506702455894853 2.4553790690986683 2.4285540701645982 2.46807759750519 0.0188354 0.004577596206218004 0.01475178450345993 440 90 90 60 2.934087125832072 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 55 60.715049109891154 14.627218246459961 33.359840393066406 10.304545402526855 334106.0 0.06363636255264282 127.53295135498047 81.2007827758789 4.772836653360411 269.7223205566406 1096.2657470703125 1047.2681884765625 84547.0 619.6165832519531 1715.882666015625 356.9294128417969 23.26248550415039 +sub-10337_ses-V3_task-cuff_run-02_bold 0.0023010158013544017 0.023407589616252823 7 38.255155830769205 1.0362355920588235 1.059786801221719 0.4278690285812076 10627.4501953125 0.25713340354403996 5 1.1286681715575622 2.4504688570033104 2.447295736086538 2.4375165698084604 2.4665942651149337 0.00777157 0.005536904092878103 0.016029730439186096 443 90 90 60 2.961516367050062 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 16 66.51984403388133 14.742353439331055 34.44916534423828 10.354401588439941 334693.0 0.056433409452438354 130.5345367431639 86.55299377441406 4.722631545564773 265.8609619140625 1092.4912109375 1044.275390625 84211.0 621.4447021484375 1705.8499145507812 352.6130065917969 24.204824447631836 +sub-10337_ses-V3_task-rest_run-01_bold 0.0021416742081447966 0.013686345248868779 8 35.65318396052154 1.069720428730158 0.9799530830612255 0.426166249355745 11088.0107421875 0.15810848922977047 22 4.97737556561086 2.422629974057719 2.4254624036207835 2.4001790712921194 2.4422484472602544 0.00697981 0.002832113765180111 0.015150251798331738 442 90 90 60 2.827757356649801 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 62.17435268537007 14.507364273071289 34.04468536376953 10.070136070251465 333845.0 0.018099548295140266 133.9547576904297 84.66641235351562 5.021264136742291 281.3640441894531 1117.5223388671875 1065.4898681640625 84678.0 620.7983062744141 1774.6247741699212 376.7945556640625 30.66909408569336 +sub-10337_ses-V3_task-rest_run-02_bold 0.00325249433106576 0.01609740650793651 9 41.560671711000005 1.1440322127954539 1.0254986445227268 0.4266852458510502 10603.412109375 0.28091089622436344 154 34.92063492063492 2.3948355349239905 2.3902707383525077 2.3731582390324975 2.421077627386966 0.00323308 0.006280491128563881 0.0161419827491045 441 90 90 60 2.9642919773306806 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 72.19727164413855 14.641117095947266 34.68265151977539 10.210884094238281 336042.0 0.02947845868766308 132.15601043701182 90.02631378173828 4.690813169989602 263.997314453125 1094.61083984375 1046.385498046875 83563.0 624.8206420898438 1707.8884277343745 352.9946594238281 29.353485107421875 +sub-10340_ses-V1_task-cuff_run-01_bold 0.002940990990990991 0.012354790405405405 6 40.718379879796814 1.0345418465462761 0.9639695645598194 0.5109937350533441 640.8510131835938 0.2140119682719226 8 1.8018018018018018 2.818966646700165 2.678941560215093 2.9981665475302317 2.7797918323551714 0.015744 -0.020096875727176666 0.08024393767118454 444 90 90 54 2.2220192727712913 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 29.257836507601745 3.299123525619507 19.53075408935547 9.939188957214355 280410.0 7.5292792320251465 61.680067825317145 27.39056396484375 3.2302694474124394 99.80517578125 289.65838623046875 267.6103820800781 92565.0 139.73739624023438 510.53153076171895 120.43502044677734 27.130971908569336 +sub-10340_ses-V1_task-cuff_run-02_bold 0.003319229024943311 0.015955919433106577 9 42.83638987981818 1.0448062306818187 0.9800333531818185 0.5108147400683158 626.165771484375 0.2529685101730618 9 2.0408163265306123 2.8235777576926195 2.6775123936052165 3.0114790470012407 2.7817418324714 0.0367179 -0.019661927595734596 0.08339813351631165 441 90 90 54 2.2569594890235893 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 8 29.534312207704474 3.42242431640625 19.089828491210938 9.895691871643066 280599.0 7.222222328186035 59.9551040649413 26.55131721496582 3.1462394943260845 97.058349609375 284.6234130859375 263.0929870605469 92367.0 139.49274749755858 498.4288085937499 116.56902313232422 24.42267608642578 +sub-10340_ses-V1_task-rest_run-01_bold 0.001630045146726862 0.008367853521444694 7 36.61537775843891 1.0862444797511313 0.9994703326244343 0.5095288069002324 654.9820556640625 0.11308951246725665 10 2.2573363431151243 2.823795812859668 2.6796373935207765 3.0214790466038766 2.770270998454352 0.0120488 -0.019819285720586777 0.08209353685379028 443 90 90 54 2.2061131356308503 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 31.003702946462546 3.3550984859466553 19.414905548095703 9.852144241333008 280222.0 7.200902938842773 61.853275299072266 27.811992645263672 3.240525439062319 101.07131958007812 291.0634460449219 269.1885070800781 92760.0 138.28431091308593 514.7541931152344 122.0186996459961 32.896305084228516 +sub-10340_ses-V1_task-rest_run-02_bold 0.0013483783783783787 0.01713784324324324 6 43.38325749318285 1.009227941693001 0.9286759671783292 0.5114679666062468 634.404296875 0.22790930852356583 78 17.56756756756757 2.812956924480261 2.6616457275690344 3.004574880608921 2.772650165262828 0.0322477 -0.019780069589614868 0.08776858448982239 444 90 90 54 2.2846884684929707 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 6 31.617550446799264 3.07873797416687 18.814922332763672 9.662162780761719 281130.0 7.301802158355713 58.62162399291992 26.41834259033203 2.9067364116364427 95.73470306396484 281.0284118652344 260.12725830078125 92048.0 138.56160659790038 489.9119369506833 113.85615539550781 24.533491134643555 +sub-10340_ses-V3_task-cuff_run-01_bold 0.0005618552036199096 0.00597781871040724 8 34.08788304736962 1.0555972880272106 0.9848661798639462 0.5056096181981955 577.490478515625 0.10993874934857831 0 0.0 2.7944777555429607 2.6903123930965904 3.0112165470116716 2.681904326520621 0.0120597 -0.028734002262353897 0.07549101859331131 442 90 90 54 2.0055203312034933 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 31.980184775198857 3.9379537105560303 20.064544677734375 10.57918643951416 278977.0 7.651584148406982 63.70905380249029 27.3060245513916 4.042676123632695 104.68950653076172 300.2072448730469 273.4604187011719 93234.0 138.27817153930664 560.8054412841793 136.35311889648438 35.76935577392578 +sub-10340_ses-V3_task-cuff_run-02_bold 0.0023020681818181816 0.008671658636363638 10 35.11339783298405 1.0402599925512528 0.9863244005239176 0.5058628486390659 562.7699584960938 0.1399444591849029 0 0.0 2.81688053336903 2.7148457254550564 3.0255498797754496 2.7102459948765834 0.0158538 -0.02937103807926178 0.07391929626464844 440 90 90 54 1.998647319449326 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.862110282180033 4.296177864074707 20.253366470336914 10.763635635375977 279342.0 7.468181610107422 64.33159027099614 27.326534271240234 4.079848534139166 104.35833740234375 299.59637451171875 273.1227111816406 93039.0 137.3040817260742 562.5781921386716 136.65304565429688 30.685354232788086 +sub-10340_ses-V3_task-rest_run-01_bold 0.0012459049773755658 0.01300515339366516 8 35.58620602113379 0.9665425801587301 0.9215490715646258 0.5034705457064255 568.271240234375 0.14996676612708212 31 7.013574660633484 2.876283310244046 2.776895722989411 3.097687376908963 2.754266830833763 0.0297569 -0.028208382427692413 0.07256316393613815 442 90 90 54 1.986757802718256 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.16792678681805 4.400846004486084 20.13547706604004 10.880090713500977 279300.0 7.5158371925354 62.631678009033095 26.688261032104492 4.072640018495334 106.27609252929688 304.8404235839844 277.6900634765625 93004.0 138.15419311523436 573.3370361328124 139.76971435546875 25.758655548095703 +sub-10340_ses-V3_task-rest_run-02_bold 0.0033352714932126694 0.012717571470588234 8 35.822106268480724 1.0202105255328804 0.9746337065306111 0.5069238017656308 543.0659790039062 0.1609052487491585 46 10.407239819004525 2.8563777549628924 2.7521707239718944 3.0782957110128515 2.7386668299039303 0.0286755 -0.02936417981982231 0.07477705180644989 442 90 90 54 1.9880834099350604 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 30.256357007410905 4.367303848266602 20.260053634643555 10.891403198242188 278720.0 7.633484363555908 63.2580362319946 26.783540725708008 4.172361263262489 103.34608459472656 297.2427062988281 270.9140319824219 93645.0 135.1923065185547 558.6534057617188 136.26821899414062 25.308645248413086 +sub-10341_ses-V1_task-cuff_run-01_bold 0.0006533483146067416 0.011471554876404494 5 42.977802474076555 1.2132087248423418 1.0057329384009013 0.4328582360940048 1212218.0 0.2702078929335963 0 0.0 2.6625359307990477 2.811691267605634 2.7005430985915493 2.47537342619996 0.00533174 -0.008211851119995117 0.007454663515090942 445 96 96 54 4.621041181238507 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 30.503643134674384 24.441383361816406 430.7639465332031 16.57467269897461 340332.0 0.07377059273421764 2006.5223632812501 933.019775390625 2.252215716214222 2969.65234375 19030.763671875 18759.16015625 88880.0 13053.646875 26480.97890625 4059.486572265625 44.78622817993164 +sub-10341_ses-V1_task-cuff_run-02_bold 0.0031143370786516854 0.016586300808988763 5 42.55968130813064 1.2406919831081076 1.0390959560585589 0.43497331598476996 927875.4375 0.24204342611436555 0 0.0 2.717106249112796 2.854314366197183 2.7544518309859156 2.54255255015529 0.00168377 -0.008376424200832844 0.007043445482850075 445 96 96 54 4.5824343424113225 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 33.70298220532927 27.509235382080078 434.3902587890625 18.74092674255371 339446.0 0.13792941719293594 2032.8073425292969 946.557373046875 2.3566456745037128 2990.6767578125 18802.689453125 18561.35546875 89792.0 12774.539013671874 26102.3412109375 4050.522216796875 38.29402542114258 +sub-10341_ses-V1_task-rest_run-01_bold 0.0005749662921348315 0.0138013817752809 5 43.0515691053153 1.2088052607432438 0.9997513254054062 0.43208005976298314 1208084.625 0.29126297835034576 222 49.8876404494382 2.69946889573554 2.8471481690140843 2.7359684507042252 2.5152900674883094 0.00448298 -0.007928523235023022 0.007008235435932875 445 96 96 54 4.578743615449882 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 30.737189388147655 24.44757652282715 424.26666259765625 16.640031814575195 340281.0 0.12226292490959167 1983.6121826171875 923.2537841796875 2.413751912170592 2991.7841796875 19005.796875 18742.087890625 88957.0 12969.0279296875 26492.424609374997 4093.2587890625 41.44786834716797 +sub-10341_ses-V1_task-rest_run-02_bold 0.0008629054054054056 0.012487183288288288 6 42.85907593803616 1.222144307358917 1.0101602951241535 0.4349017404360155 1145887.125 0.23772390445034272 131 29.504504504504503 2.6950692781637713 2.8411042253521126 2.742634366197183 2.5014692429420196 0.00261319 -0.008415309712290764 0.007556273601949215 444 96 96 54 4.599589202506466 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 31.992323190836288 24.72066879272461 433.7068176269531 16.805896759033203 339459.0 0.10975440442562104 2029.238659667967 938.22314453125 2.228824560242897 2967.251708984375 18753.873046875 18512.037109375 89659.0 12757.08310546875 26052.377343749995 4024.69287109375 43.19099807739258 +sub-10341_ses-V3_task-cuff_run-01_bold 0.006324426966292134 0.01526504642696629 5 38.502998025518046 1.1723007298648642 1.089416531666667 0.44105254155529916 558915.6875 0.30370581433372096 13 2.9213483146067416 2.6142119051891926 2.710336901408451 2.694846197183099 2.437452616976028 0.00288866 -0.010351455770432949 0.013957047834992409 445 96 96 54 4.546924981590606 0.7999997138977051 2.21875 2.21875 2.4000015258789062 21 115.78465953479822 38.87495422363281 524.5075073242188 26.531339645385742 338411.0 0.2857586592435837 2332.61767578125 1189.477294921875 1.6892848817781516 3411.146240234375 20460.666015625 20092.798828125 90911.0 13985.43212890625 28321.4736328125 4418.9619140625 37.892181396484375 +sub-10341_ses-V3_task-cuff_run-02_bold 0.022695123595505615 0.024105871393258423 5 42.896426574346826 1.2942734141891905 1.2293996044144135 0.43710116497453877 515560.5625 0.407733077239488 24 5.393258426966292 2.649924873300716 2.7447707042253517 2.7241554929577467 2.480848422719051 0.0108042 -0.008655017241835594 0.014270246028900146 445 96 96 54 4.480638071234528 0.7999997138977051 2.21875 2.21875 2.4000015258789062 79 56.1149848710427 41.45417022705078 516.3858642578125 28.318483352661133 340667.0 0.34102549254894254 2325.8581298828135 1096.1588134765625 1.6400439271365617 3508.943115234375 20655.32421875 20296.82421875 89393.0 14025.278710937502 28701.96171875 4529.87060546875 28.635181427001953 +sub-10341_ses-V3_task-rest_run-01_bold 0.0005361936936936937 0.010982105563063066 6 37.00397053993224 1.1316500986907443 0.9964602441986457 0.4408920044324938 612882.3125 0.2680573336435449 197 44.369369369369366 2.604054488592473 2.71303661971831 2.68600338028169 2.413123465777419 0.00133667 -0.010549208149313927 0.012200438417494297 444 96 96 54 4.5400074483804165 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 84.62961171754253 37.321800231933594 521.1630249023438 25.307329177856445 338219.0 0.12286180332303048 2339.502197265621 1155.18310546875 1.6224263409803186 3453.10498046875 20572.560546875 20188.56640625 90988.0 14103.145068359376 28560.49960937498 4446.7890625 45.161285400390625 +sub-10341_ses-V3_task-rest_run-02_bold 0.0005995280898876404 0.01327405391011236 5 37.36114873105854 1.1168877513513509 0.9870163385585583 0.4370876571673282 501566.375 0.2469769451808026 155 34.831460674157306 2.6310425616887723 2.7417915492957747 2.6917543661971832 2.459581769573358 0.00241414 -0.008915402926504612 0.014758600853383541 445 96 96 54 4.423196891576167 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 48.6841149655214 41.913761138916016 520.242431640625 28.543060302734375 340563.0 0.24618982225656508 2365.7462402343726 1103.3433837890625 1.6659205898382323 3555.671142578125 20641.462890625 20277.650390625 89491.0 13840.76953125 28768.796875 4584.3623046875 40.81765365600586 +sub-10342_ses-V1_task-cuff_run-01_bold 0.0026162528216704286 0.009973888984198645 7 43.976587166018135 1.082810819434389 1.0558985607692306 0.5611446738737979 276.2398376464844 0.23060995574206947 0 0.0 2.7258555417411645 2.3862749051779546 2.937445716609728 2.8538460034358106 0.0106215 -0.0052319359965622425 0.10345879942178726 443 90 90 54 2.290817498927195 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 20.281151985104415 7.684097766876221 28.398235321044922 13.347630500793457 282787.0 7.837471961975098 100.25056457519531 38.77616500854492 0.9695499551787274 92.38987731933594 252.20973205566406 236.80361938476562 90982.0 105.10880432128906 442.11152954101556 103.37022399902344 29.403776168823242 +sub-10342_ses-V1_task-cuff_run-02_bold 0.0014184943820224718 0.010713552988764044 5 44.41008682078825 1.0538761452027028 1.008835381891892 0.5645579132707421 261.42138671875 0.22726276086669245 2 0.449438202247191 2.722393041058084 2.390649905004108 2.947466549544869 2.829062668625275 0.010037 -0.010017605498433113 0.10551901906728745 445 90 90 54 2.2860500407432225 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 20.384260549056467 8.112667083740234 29.1821231842041 13.761797904968262 281485.0 7.921348571777344 103.3986526489257 39.68577575683594 1.06108581970937 92.69761657714844 252.60882568359375 237.28314208984375 91853.0 104.84808807373048 443.17303466796875 103.79556274414062 29.26616859436035 +sub-10342_ses-V1_task-rest_run-01_bold 0.0014134684684684686 0.008579798986486486 6 42.53484117158012 1.0659325378555309 1.0218908548306995 0.5592061394281312 282.11102294921875 0.2015387891165601 82 18.46846846846847 2.7129902639784533 2.3764624055678683 2.9236457171580903 2.838862669209401 0.0114502 -0.005688657984137535 0.10284899920225143 444 90 90 54 2.3051196258087843 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 21.965811705750166 7.439725875854492 28.31180191040039 13.279279708862305 283565.0 7.943694114685059 99.91396331787107 39.2275505065918 0.9527375571012202 92.51907348632812 253.54708862304688 238.27703857421875 90345.0 106.67387542724609 442.9896484375 103.36804962158203 31.306673049926758 +sub-10342_ses-V1_task-rest_run-02_bold 0.0009395270270270271 0.008034543130630631 6 42.70234720690745 1.0628842552144475 1.0069561601354406 0.5653699559370216 260.88519287109375 0.19232401445419972 68 15.315315315315315 2.738437485591687 2.4098540709076692 2.9544498826007093 2.8510085032666823 0.0108712 -0.009276624768972397 0.10439436882734299 444 90 90 54 2.3373247024011494 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 20.360022109512695 8.114241600036621 29.525087356567383 13.855855941772461 282249.0 7.975225448608398 106.45856170654292 40.78728485107422 0.9109591120788982 92.21855926513672 252.9696502685547 239.14865112304688 91299.0 105.10653228759766 438.9033935546875 102.31669616699219 33.344966888427734 +sub-10343_ses-V1_task-rest_run-01_bold 0.00218979683972912 0.019291892189616258 7 45.77729706753395 1.1094976867194575 1.0163757093665158 0.4158939701012049 9762.705078125 0.44047259829615426 290 65.4627539503386 2.481742505018667 2.505683233766427 2.6649498941044056 2.2745943871851684 0.015667 0.00025626271963119507 0.011084713973104954 443 90 90 60 2.6967307548539208 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 85.05974233974288 16.586402893066406 36.27692794799805 11.562076568603516 340472.0 0.029345372691750526 149.27540588378906 83.82478332519531 5.377581953031184 277.8188781738281 1180.91015625 1115.7562255859375 79681.0 645.3521728515625 1954.2235107421875 413.7414245605469 26.114118576049805 +sub-10343_ses-V1_task-rest_run-02_bold 0.001968758465011287 0.02083972776523702 7 41.09039429622172 1.0501891786877822 0.9721589872624437 0.4173599981297367 9471.65625 0.2973929443943739 173 39.05191873589165 2.4468869496303918 2.4525832358764315 2.607354063059725 2.2807235499550185 0.0147276 0.0023860095534473658 0.013512386940419674 443 90 90 60 2.8162762470811074 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 36 97.72827114641477 16.275157928466797 35.14406967163086 11.288939476013184 340685.0 0.018058691173791885 143.89526367187483 83.1920166015625 5.928136581723436 254.52731323242188 1137.755615234375 1077.06103515625 79820.0 633.9771911621094 1845.2307373046876 382.43914794921875 26.64459991455078 +sub-10343_ses-V3_task-rest_run-01_bold 0.003369066059225513 0.013048927038724373 11 41.33508638262559 1.1190216236073058 1.0198265123059376 0.43108859880083406 6348.61767578125 0.262598123346153 165 37.58542141230068 2.4592520357014624 2.524120733033787 2.605216563144661 2.2484188109259393 0.0114653 -0.001339996699243784 0.015999549999833107 439 90 90 60 2.4273073269120844 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 94.4458132096531 19.824317932128906 46.496620178222656 13.808656692504883 335429.0 0.04100228101015091 199.61002807617172 102.87432098388672 7.532081515493511 298.91998291015625 1168.5328369140625 1097.6640625 82880.0 604.839190673828 1956.5548034667972 452.21197509765625 29.82353401184082 +sub-10343_ses-V3_task-rest_run-02_bold 0.003273340909090909 0.011937005840909091 10 40.78744460781322 1.1205499973348514 1.1226307241457856 0.43170390585422197 6773.4716796875 0.26236792333358255 151 34.31818181818182 2.440377032814497 2.498045734069914 2.585649897255504 2.2374354671180727 0.0279624 -0.0008587855845689774 0.016414491459727287 440 90 90 60 2.474364987501715 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 98.41311564370166 19.128938674926758 46.32194900512695 13.293181419372559 335194.0 0.02499999850988388 199.65499038696225 104.58020782470703 6.819609567567502 297.59869384765625 1155.95849609375 1088.4794921875 82764.0 602.7374755859375 1931.885821533203 439.89990234375 30.825881958007812 +sub-10344_ses-V1_task-cuff_run-01_bold 0.001373877551020408 0.02717299863945578 9 56.22962095079544 1.1887877944090903 0.9742025820681817 0.4144321946077286 6871.9755859375 0.3038808218207876 1 0.22675736961451248 2.49720634721375 2.5293207328271574 2.455779069082774 2.5065192397313183 0.00454798 -0.002871639560908079 0.016713924705982208 441 90 90 60 2.276062768948069 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 229.9912937160562 18.816608428955078 38.32006072998047 13.47165584564209 336807.0 0.04988662153482437 145.38662872314467 97.05963134765625 2.8977530432676044 344.02435302734375 1221.72802734375 1109.8162841796875 82277.0 613.643115234375 2175.05078125 487.6005859375 22.947235107421875 +sub-10344_ses-V1_task-cuff_run-02_bold 0.0019263800904977379 0.020031830135746605 8 56.14561389750566 1.2812640062358274 1.0121398410884348 0.41465533234338087 7079.5859375 0.2872369058517464 4 0.9049773755656109 2.433649420957597 2.4784124015167395 2.3948499048372147 2.427685956518837 0.00797101 -0.001905031269416213 0.01703978143632412 442 90 90 60 2.2668342865389626 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 226.87954128463628 18.334623336791992 38.40715408325195 13.02715015411377 336448.0 0.020361991599202156 148.04898376464837 98.36969757080078 3.024170519019579 340.75030517578125 1215.4874267578125 1103.3936767578125 82443.0 608.3941345214844 2166.9190673828116 486.75238037109375 27.8356990814209 +sub-10344_ses-V1_task-rest_run-01_bold 0.0014303619909502262 0.019332555656108596 8 52.91140856065762 1.1823969956235834 1.0057580530839005 0.414835008635855 7242.55078125 0.28313537978096315 187 42.30769230769231 2.4831785745763177 2.5202415665212645 2.445841569477655 2.4834525877300337 0.0152644 -0.0026617327239364386 0.016851045191287994 442 90 90 60 2.2723387187631015 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 17 232.25697330458596 18.291019439697266 38.37700653076172 13.16063404083252 336258.0 0.06787330657243729 147.22274398803688 97.59516143798828 2.980150077643235 343.9502868652344 1227.6627197265625 1116.357421875 82788.0 615.1198425292969 2188.494433593749 491.2782897949219 26.81575584411621 +sub-10344_ses-V1_task-rest_run-02_bold 0.0024969683257918544 0.015535015339366515 8 54.4829475162585 1.2698881851020403 1.0141185804988664 0.41545392633221456 6796.40576171875 0.26860628421581867 142 32.126696832579185 2.43979803091293 2.485779067890681 2.4013415712459256 2.4322734536021846 0.00737007 -0.001936294254846871 0.01826065592467785 442 90 90 60 2.2442395468829437 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 240.60910154080057 18.53923797607422 38.327396392822266 13.221719741821289 335744.0 0.029411766678094864 148.61958007812495 97.7072982788086 3.03248438898634 340.39306640625 1208.568115234375 1096.4898681640625 83064.0 603.3197082519531 2165.774853515624 488.5767517089844 28.81557846069336 +sub-10345_ses-V1_task-cuff_run-01_bold 0.0006471235955056181 0.011558887617977527 5 43.01447589112612 0.9744596190540554 0.959652804684685 0.5669350394294853 363.05755615234375 0.2477014797376823 3 0.6741573033707865 2.7556208195297867 2.5118957335195646 2.8650748861521524 2.8898918389176433 0.0263388 -0.01986238919198513 0.11447206884622574 445 90 90 54 2.3498008650034947 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 43.9793322104196 5.327373504638672 25.529916763305664 11.600000381469727 265597.0 7.710112571716309 87.51505889892574 40.34144973754883 0.8682655804891346 90.60198211669922 251.32237243652344 236.73483276367188 105091.0 105.52359390258789 437.26629638671875 100.74628448486328 26.271190643310547 +sub-10345_ses-V1_task-cuff_run-02_bold 0.0016295033860045146 0.013197102979683973 7 43.89996966174209 1.004505709705882 0.9845891588235287 0.5631253281301681 368.4803771972656 0.28124447358756804 9 2.0316027088036117 2.760940264242038 2.505570733770898 2.872887385841712 2.9043626731135053 0.0140487 -0.015492981299757957 0.11425695568323135 443 90 90 54 2.3597198776372803 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 46.20494572807716 5.257715702056885 24.8944149017334 11.42212200164795 267454.0 7.593679428100586 84.49289398193355 39.47562026977539 0.7819912367632065 87.90525817871094 246.26405334472656 231.15914916992188 103368.0 106.74582710266114 428.73883666992185 97.95994567871094 24.97800064086914 +sub-10345_ses-V1_task-rest_run-01_bold 0.000735945945945946 0.008991433468468469 6 40.228868247787794 1.0080340086004518 0.9847777100902936 0.5637893546195617 377.40728759765625 0.23213001812336218 129 29.054054054054053 2.7457569304285285 2.5001040673214567 2.8655248861342715 2.8716418378298583 0.0235719 -0.018879150971770287 0.11263252049684525 444 90 90 54 2.364038040457658 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 45.474774166773244 5.1256632804870605 24.96851348876953 11.430180549621582 266451.0 7.716216564178467 84.10473251342773 39.57405471801758 0.868242734051277 90.90454864501953 252.58595275878906 237.79730224609375 104182.0 108.14426231384277 438.4305206298827 100.58897399902344 29.624053955078125 +sub-10345_ses-V1_task-rest_run-02_bold 0.0016966966292134833 0.008232832831460674 5 39.693840490833296 1.0183311442567573 1.0064104842792803 0.5603844709745384 383.8008117675781 0.20191872160356983 88 19.775280898876403 2.7244833201892464 2.4721915684306 2.828816554259596 2.8724418378775423 0.00720063 -0.012886661104857922 0.11819788068532944 445 90 90 54 2.335007715648217 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 45.96441356469252 4.597733020782471 23.87616729736328 10.89438247680664 268602.0 7.503370761871338 80.5570796966552 38.17109298706055 0.7545061121803545 87.43190002441406 243.799560546875 228.471923828125 102582.0 104.86100921630859 426.16394958496096 97.8458480834961 30.2846736907959 +sub-10346_ses-V1_task-cuff_run-01_bold 0.001717088036117382 0.018640749435665915 7 58.10806396079182 1.1295337050000005 1.0012955363800906 0.44606337946174085 5619.03125 0.5528838383440297 43 9.706546275395034 2.4313035044743345 2.409924904238188 2.3976790713914604 2.4863065377933546 0.00938002 -0.0010145212290808558 0.026825301349163055 443 90 90 60 3.0247626840094175 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 21 251.13731957802779 18.771820068359375 39.77000045776367 13.338601112365723 330953.0 0.06320542097091675 146.08939819335907 101.4046630859375 4.8196663156600446 231.30259704589844 1031.47314453125 985.3792724609375 88029.0 574.9408935546875 1622.8339111328123 325.7689208984375 25.82562255859375 +sub-10346_ses-V1_task-cuff_run-02_bold 0.002205327313769752 0.023330916252821673 7 65.40369928800895 1.1249291777149324 0.9799139140271482 0.44750865297956116 5245.51953125 0.6618007864569337 107 24.153498871331827 2.4539673989750064 2.4292874034687912 2.4266415702405943 2.505973223215634 0.0116154 -0.0009043629979714751 0.026252569630742073 443 90 90 60 3.053160377415118 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 19 248.0065645944832 19.297256469726562 39.97515106201172 13.77652359008789 330398.0 0.08352144807577133 146.88521118164056 101.5804214477539 4.614514929658131 229.291259765625 1031.9527587890625 986.443603515625 88462.0 574.7364654541016 1618.3491821289062 323.0875244140625 23.605283737182617 +sub-10346_ses-V1_task-rest_run-01_bold 0.0010834684684684686 0.01528236454954955 6 55.80832030602708 1.1167691284650112 0.9784478437923253 0.44549335254576866 5933.0322265625 0.47397288698638423 309 69.5945945945946 2.4179118296860853 2.400841571265794 2.3927207382551536 2.4601731795373087 0.00487372 -0.0018102978356182575 0.02619240991771221 444 90 90 60 3.022563832143518 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 253.73450163154445 18.565919876098633 39.788639068603516 13.065315246582031 330831.0 0.03378378599882126 146.01239013671875 102.97148132324219 4.966006858052496 233.00564575195312 1039.9388427734375 993.9505004882812 88117.0 579.7950439453125 1633.8986816406248 328.8416442871094 29.221437454223633 +sub-10346_ses-V1_task-rest_run-02_bold 0.0014018284424379235 0.01920982415349887 7 63.59766415547514 1.1222489146606331 0.9943050057466063 0.4477050184662157 5557.1953125 0.6578866892241679 345 77.87810383747178 2.439502116862918 2.414274904065335 2.4130832374460205 2.4911482090773984 0.0162453 -0.0007041601347737014 0.02648133598268032 443 90 90 60 3.058446737875224 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 12 238.36171546390483 19.042905807495117 40.598304748535156 13.483070373535156 330602.0 0.042889390140771866 150.7942474365235 103.80960083007812 4.7234871531961256 229.07041931152344 1037.093505859375 991.255126953125 88290.0 582.1136444091796 1625.8116943359378 324.1022644042969 26.033512115478516 +sub-10346_ses-V3_task-rest_run-01_bold 0.00190568848758465 0.024223575169300227 7 75.88829117328054 1.1496057133710404 1.0052745722624437 0.44785150358885345 5553.46728515625 0.743269100818961 379 85.55304740406321 2.462000743567889 2.4196040705202395 2.4254582369542823 2.5409399232291445 0.0103792 0.0003527867083903402 0.02824794128537178 443 90 90 60 3.1028526108496193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 29 221.81118005191752 19.076372146606445 40.16767120361328 13.559820175170898 330614.0 0.06546275317668915 144.27167968749995 101.27071380615234 3.453350595880054 236.8080596923828 1031.62109375 993.01806640625 88419.0 567.219451904297 1612.1348144531246 320.0321044921875 22.486061096191406 +sub-10347_ses-V1_task-cuff_run-01_bold 0.0012122696629213482 0.016407659460674157 5 36.756905521238735 1.036476781216216 0.9922418847522517 0.43619241648713136 4117.931640625 0.1529586231315059 0 0.0 2.481117385442644 2.5231415664060286 2.4518457359057373 2.468364854016165 0.00948184 -0.0025321661960333586 0.03379221260547638 445 90 90 60 3.3234329022145874 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 243.0933746285194 20.586515426635742 39.98658752441406 14.417977333068848 343245.0 0.017977528274059296 149.5788757324218 90.7989501953125 2.442210882249931 219.8482666015625 916.819580078125 906.9617919921875 76881.0 478.1438293457031 1370.6202392578125 272.8973083496094 28.3432674407959 +sub-10347_ses-V1_task-rest_run-01_bold 0.0005998648648648649 0.01472709490990991 6 36.87976891424379 1.034205084537246 0.9758100912641083 0.43580137048054246 3897.458984375 0.14362200284739343 32 7.207207207207207 2.4584715447721366 2.503308233860801 2.4286165701621147 2.4434898302934935 0.00940303 -0.0016522089717909694 0.03349887952208519 444 90 90 60 3.323251900654978 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 17 249.0485786178953 21.123743057250977 40.14744186401367 14.819820404052734 342899.0 0.006756756920367479 149.3716278076172 92.70208740234375 2.381013468551556 219.85922241210938 925.0286865234375 915.4324340820312 77001.0 480.87164306640625 1385.1260986328125 275.4610595703125 29.547582626342773 +sub-10347_ses-V1_task-rest_run-02_bold 0.0010851351351351352 0.0200814 6 37.445511191557536 1.0118879016027094 1.0128382277200905 0.4379966414073475 4020.909912109375 0.1660486905679228 44 9.90990990990991 2.5023826737720545 2.5288915661775446 2.475474901633465 2.502781553505154 0.0126327 0.001145682530477643 0.03491505607962608 444 90 90 60 3.399819382949213 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 12 237.23756116258207 20.559419631958008 39.57305145263672 14.450450897216797 342763.0 0.029279280453920364 146.95721435546875 89.98245239257812 2.2543938478505323 209.4309539794922 898.317626953125 889.358154296875 77425.0 475.9946044921875 1335.3653808593751 261.588134765625 25.19939613342285 +sub-10348_ses-V1_task-rest_run-01_bold 0.00067562358276644 0.013025240725623582 9 45.105401169204576 1.0058277985681823 0.9672371384090909 0.5395552866910373 419.7672119140625 0.35592723981941815 240 54.42176870748299 2.7709736006177472 2.4118707374942012 2.892770718384953 3.0082793459740884 0.00716656 -0.028636230155825615 0.09888744354248047 441 90 90 54 2.3787193697319458 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 79.47606974309308 4.457892417907715 22.577606201171875 10.81179141998291 278175.0 7.62811803817749 70.3219985961914 37.229164123535156 0.9614422044668354 87.55083465576172 254.6045684814453 235.4421844482422 95427.0 130.02857055664063 445.95013427734375 98.97802734375 27.73597526550293 +sub-10348_ses-V3_task-rest_run-01_bold 0.0007715124153498871 0.005367355553047405 7 39.028176363755605 1.0612498200904978 1.0025785377375562 0.5323897462630763 424.39678955078125 0.1853606476944402 63 14.221218961625283 2.7398291500430756 2.491887400981291 2.9418207164358807 2.7857793327120546 0.00745138 -0.029591817408800125 0.09917145222425461 443 90 90 54 2.1580146394333335 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 70.01861559092737 4.544862270355225 22.892995834350586 11.058691024780273 277239.0 7.8103837966918945 72.64356689453119 37.382083892822266 2.3273552535698823 91.01437377929688 266.98883056640625 244.0383758544922 96226.0 127.11286926269531 487.4018249511719 113.0840835571289 36.7397575378418 +sub-10349_ses-V1_task-rest_run-01_bold 0.002808823529411764 0.022186945475113126 8 39.85874153977321 1.0262793773015864 0.9300292738321999 0.4202271695953234 7363.57568359375 0.21580793828470132 81 18.32579185520362 2.488949426833285 2.525020732998024 2.5547748984823664 2.3870526490194646 0.00866387 0.0037286386359483004 0.01604967936873436 442 90 90 60 2.4883915575614264 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 89.5964166223256 19.874250411987305 44.44308090209961 13.945701599121094 337708.0 0.04977375641465187 181.45159072875944 102.49934387207031 4.409437854536125 334.67401123046875 1260.919189453125 1184.883544921875 81260.0 640.1135986328125 2151.079577636719 476.1614990234375 24.52322006225586 +sub-10349_ses-V1_task-rest_run-02_bold 0.0014453061224489795 0.0134579310430839 9 39.09948254054546 1.0812413869772721 0.9567993030909094 0.42054768770919804 7907.10888671875 0.21452610612186346 108 24.489795918367346 2.4460605480636586 2.4835582346455958 2.509924900264545 2.3446985092808346 0.0110839 0.003365053329616785 0.017099138349294662 441 90 90 60 2.5014110279090103 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 23 94.40482489430138 19.240209579467773 44.841041564941406 13.464852333068848 337894.0 0.022675737738609314 188.1520401000975 103.77884674072266 4.468018245433589 332.7046813964844 1257.47802734375 1181.054443359375 81033.0 644.2630249023438 2134.7116210937497 472.1523742675781 30.546825408935547 +sub-10349_ses-V3_task-cuff_run-01_bold 0.0015973181818181817 0.013360724363636362 10 55.39406321109341 1.2892389126423698 1.0125857252391812 0.41350853864455595 9329.51171875 0.28478441979514146 1 0.22727272727272727 2.3962077747917694 2.40932490426203 2.4473082360860414 2.331990184027237 0.00324919 0.006336224265396595 0.009508800692856312 440 90 90 60 2.581896974257981 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 64.03612794387146 16.140146255493164 35.48396682739258 11.186363220214844 339424.0 0.006818181835114956 143.59544372558594 86.01366424560547 4.5042970798550686 298.17144775390625 1140.75048828125 1074.4908447265625 80193.0 593.7108764648438 1892.9372070312486 416.1607360839844 32.362571716308594 +sub-10349_ses-V3_task-rest_run-01_bold 0.001610068181818182 0.014747506499999999 10 57.09668980198174 1.2634523043735761 0.9989021783371304 0.41426286882510677 9403.986328125 0.40333213837875526 282 64.0909090909091 2.418760547762656 2.4288624034856796 2.475745734956037 2.351673504846252 0.00411116 0.006569479126483202 0.010308591648936272 440 90 90 60 2.6105390948449814 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 61.634723097577705 16.00873374938965 35.160099029541016 11.1159086227417 339119.0 0.004545454401522875 140.9252288818359 84.81199645996094 4.374700595413648 293.17120361328125 1132.75732421875 1069.0250244140625 80547.0 590.7572387695313 1872.6701782226562 409.5010070800781 30.715709686279297 +sub-10349_ses-V3_task-rest_run-02_bold 0.0009149659863945577 0.012121856916099774 9 52.04585704788635 1.2573457598409086 0.9957848891136367 0.41385120203532383 9191.6123046875 0.25890613445469146 171 38.775510204081634 2.3924619434161163 2.3995999046484666 2.454899902451042 2.3228860231488397 0.00297096 0.006631867028772831 0.009518615901470184 441 90 90 60 2.565752474692826 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 61.46905185294746 16.17751121520996 35.85494613647461 11.263038635253906 339381.0 0.00907029490917921 145.34921264648438 85.81848907470703 4.635083657401889 300.0000915527344 1140.230712890625 1074.3402099609375 80339.0 591.6907287597656 1899.2560668945312 418.72064208984375 34.6446418762207 +sub-10350_ses-V1_task-cuff_run-01_bold 0.0024203579418344517 0.0286005225950783 3 49.35057817993279 1.1656384133408078 1.019708765650224 0.5027689212273339 23365.126953125 0.677655535420934 140 31.319910514541387 2.594986727152564 2.5967053521126764 2.7599188732394366 2.428335956105578 0.00458087 -0.011516043916344643 0.035430844873189926 447 96 96 54 4.905009764731593 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 48.44151151665273 179.6739501953125 780.1414794921875 121.42057037353516 316373.0 0.26588723063468933 3292.926611328121 1338.7606201171875 2.9606764415295217 2881.8271484375 19252.78125 19371.84765625 110578.0 12324.789355468749 25211.6931640625 3949.382568359375 31.543380737304688 +sub-10350_ses-V1_task-cuff_run-02_bold 0.0012873496659242761 0.0376026416481069 1 53.931450588303555 1.1098746324330357 0.9952892921651786 0.5040879374954977 22008.2890625 0.7280175603995039 153 34.075723830734965 2.6281417781423926 2.6258118309859153 2.7939650704225354 2.464648433018727 0.0146702 -0.012063409201800823 0.03701120242476463 449 96 96 54 4.899547798344171 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 51.641447697441436 184.1713104248047 796.9413452148438 124.7127914428711 316283.0 0.5426287055015564 3332.4734375000003 1354.4844970703125 2.9031012913980625 2930.11572265625 19173.228515625 19328.0390625 110628.0 12255.0431640625 25085.5345703125 3944.843994140625 26.291160583496094 +sub-10350_ses-V1_task-rest_run-01_bold 0.001229621380846325 0.03131317884187082 1 48.6908578959152 1.1230085395312497 0.9932354513839288 0.5013182566037389 22624.77734375 0.6188204720593463 346 77.06013363028953 2.5994267151228425 2.601870422535211 2.7482321126760563 2.448177610157261 0.00866829 -0.01154866348952055 0.035187724977731705 449 96 96 54 4.869535386237425 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 55.68021816776001 181.5303192138672 770.8861694335938 122.83847045898438 316593.0 0.4314115643501282 3239.6632324218735 1319.7042236328125 2.8634858894413338 2964.596435546875 19311.54296875 19429.046875 110251.0 12378.056640625 25398.056640625 3989.89990234375 29.033594131469727 +sub-10350_ses-V1_task-rest_run-02_bold 0.0034426681614349777 0.027560929147982062 4 51.02599184249436 1.1793443314606733 1.1614157612134828 0.5050754848382832 22357.037109375 0.6311798330948495 320 71.74887892376681 2.5780707198754507 2.5866771830985913 2.7476281690140847 2.3999068075136774 0.0197295 -0.012428268790245056 0.03754790872335434 446 96 96 54 4.933344922271541 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 57.0810901044025 178.27162170410156 789.6050415039062 120.4858627319336 315964.0 0.2715500995516777 3329.918017578123 1357.766357421875 3.008762266424343 2828.509765625 18870.43359375 19000.732421875 110809.0 12146.012304687501 24674.148828125 3851.473388671875 31.333303451538086 +sub-10350_ses-V3_task-cuff_run-01_bold 0.0013540134529147984 0.027747205605381162 4 49.093887684853925 1.1851655892134825 1.0189448108089894 0.505020187252515 15333.982421875 0.5744373682384877 70 15.695067264573991 2.5959378594472704 2.6117723943661972 2.7368969014084508 2.4391442825671628 0.0129532 -0.015870094299316406 0.04019104316830635 446 96 96 54 4.5492718362889235 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 87.40243647405401 299.81829833984375 1104.4466552734375 203.23504638671875 316564.0 1.011974322795868 4609.25412597656 1953.927978515625 2.6588423423695016 3967.281494140625 25757.076171875 25740.615234375 111455.0 16109.63701171875 35012.43281249999 5658.158203125 31.163665771484375 +sub-10350_ses-V3_task-cuff_run-02_bold 0.000554675615212528 0.024681554138702464 3 46.558679409618826 1.165555517399103 0.989988290336324 0.5058577768293144 14998.8310546875 0.5155176586365905 37 8.277404921700224 2.580316102470763 2.6018388732394366 2.7168901408450705 2.422219293327781 0.00879774 -0.01570124179124832 0.04103996232151985 447 96 96 54 4.54623768827532 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 86.65425155875643 301.99713134765625 1117.068359375 204.49404907226562 316658.0 0.8213644981384277 4682.199462890625 1979.5013427734375 2.8285611060839493 3896.498779296875 25753.10546875 25719.59375 111507.0 16223.315820312502 35048.579296874996 5657.310546875 33.87279510498047 +sub-10350_ses-V3_task-rest_run-01_bold 0.0010079418344519015 0.022876750335570472 3 49.988806489663695 1.195310950627803 1.0245922450000005 0.5040370721589704 15954.56640625 0.6169002698590944 362 80.98434004474272 2.56604659210371 2.5919594366197183 2.7051943661971833 2.4009859734942287 0.015562 -0.01586851477622986 0.03950606286525726 447 96 96 54 4.5570649059434665 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 92.98530717966294 294.1932067871094 1091.5023193359375 199.38247680664062 316606.0 0.964344248175621 4565.8316650390625 1953.4407958984375 2.7900189767252757 3938.448974609375 26009.12890625 25966.6484375 111391.0 16422.9912109375 35398.474609375 5698.08251953125 34.92510986328125 +sub-10352_ses-V1_task-cuff_run-01_bold 0.0009622297297297298 0.008248945788288288 6 38.44455247968395 1.049638303611739 1.0022774129119632 0.5304441634280342 457.1907653808594 0.14592417220416173 0 0.0 2.599458314603959 2.3763040722408264 2.86832905268951 2.553741818881541 0.00933419 -0.03152996301651001 0.09281522780656815 444 90 90 54 2.4041670562039106 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 41.4370548185214 4.0637993812561035 21.07483673095703 10.64639663696289 281824.0 7.77477502822876 67.1318683624266 29.73630142211914 1.9069023832890784 83.68689727783203 258.0353088378906 243.85360717773438 90667.0 115.57680282592776 448.20205078125 101.42900085449219 34.01821517944336 +sub-10352_ses-V1_task-cuff_run-02_bold 0.001518108108108108 0.00968234560810811 6 40.05893519559819 1.0600439126636567 1.010015528239278 0.5319512682336993 448.15203857421875 0.18821199209015338 0 0.0 2.604372203749451 2.3735957390151126 2.872133219205013 2.5673876530282294 0.0128646 -0.03269832581281662 0.09571139514446259 444 90 90 54 2.4098161152093813 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 43.01686332698698 4.153958320617676 21.161270141601562 10.675676345825195 281669.0 7.725225448608398 67.18378448486322 30.07303237915039 1.9010525174981598 82.10077667236328 255.49691772460938 241.43919372558594 90823.0 114.76959686279298 443.4633117675781 100.1893310546875 31.80901336669922 +sub-10352_ses-V1_task-rest_run-01_bold 0.0012802257336343114 0.010046037020316026 7 38.595620919230754 1.0517848220814487 1.0062866175565617 0.5299279257481273 469.85107421875 0.16503729899146177 66 14.89841986455982 2.639829147754367 2.4115124041751064 2.9113123843148396 2.596662654773155 0.0127705 -0.03167359158396721 0.09361426532268524 443 90 90 54 2.402201597966469 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 39.09472106250733 4.109786510467529 21.107114791870117 10.620767593383789 281837.0 7.645598411560059 67.56298217773443 29.536611557006836 1.8321730262478493 85.34165954589844 260.1427917480469 245.9796905517578 90817.0 116.39051818847656 451.86591796874995 102.39704132080078 31.3546142578125 +sub-10352_ses-V1_task-rest_run-02_bold 0.0005613513513513514 0.010150862184684686 6 39.253937637223494 1.0340397197291193 0.9853053465914232 0.5330063098078848 438.1222839355469 0.16620799711832435 56 12.612612612612613 2.587522203950866 2.3629665727708113 2.8463498868962174 2.5532501521855684 0.0151911 -0.032431844621896744 0.09585202485322952 444 90 90 54 2.4187248103600214 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 41.31785091590803 4.330935001373291 21.331262588500977 10.770270347595215 281792.0 7.657657623291016 68.25731811523451 30.28365135192871 1.8984310242382314 81.77351379394531 255.4415740966797 241.0968475341797 90727.0 115.96689224243164 443.40563049316404 99.67877197265625 31.594402313232422 +sub-10352_ses-V3_task-rest_run-01_bold 0.0033112962962962966 0.005597398333333333 6 39.59960066547169 1.1354042366037735 1.0635678683018865 0.5334649098520918 459.3902282714844 0.12979422884926145 3 5.555555555555555 2.624624981991953 2.3855082385417528 2.882641552120783 2.6057251553133223 0.0171937 -0.028856055811047554 0.08634781837463379 54 90 90 54 2.4196084975920074 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.28141811105268 4.283072471618652 21.74114990234375 10.851851463317871 280978.0 7.796296119689941 71.66666412353516 29.666854858398438 1.5941207104175117 86.78713989257812 265.0122375488281 249.79629516601562 91515.0 121.03148345947267 458.5185241699219 103.23774719238281 38.90692901611328 +sub-10353_ses-V1_task-cuff_run-01_bold 0.0004142307692307692 0.006560042443438913 8 53.09721963569152 1.076327976802721 0.9956929651247163 0.5667254635292632 246.4325408935547 0.4396876104619925 1 0.22624434389140272 2.6714708161839518 2.4247582369820977 2.9017832180268277 2.687870993542929 0.00990206 0.005391542799770832 0.09390223026275635 442 90 90 54 2.163313160496738 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.111970065656905 8.734607696533203 30.538612365722656 14.470588684082031 274736.0 8.042986869812012 108.52659034729004 44.71656036376953 0.6599130819458754 97.26475524902344 266.7516174316406 243.3529510498047 97531.0 121.21719741821289 487.5577087402344 112.49028015136719 33.19504165649414 +sub-10353_ses-V1_task-cuff_run-02_bold 0.00026135746606334844 0.006502178823529412 8 54.74297267854878 1.0698301208390035 0.986903307460318 0.5672800694577869 244.23609924316406 0.4723742780404999 0 0.0 2.6587249829020547 2.4162749039858618 2.8857707186631076 2.674129326057195 0.0053423 0.0045796656049788 0.09544792026281357 442 90 90 54 2.164245573888834 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.21238051951491 8.744670867919922 30.62213134765625 14.450226783752441 274825.0 8.022624969482422 109.33891906738279 44.90574645996094 0.6865816318539424 96.47647094726562 265.4504699707031 242.00906372070312 97431.0 121.36199569702148 485.2420959472656 111.82086944580078 33.65826416015625 +sub-10353_ses-V1_task-rest_run-01_bold 0.00033669683257918554 0.006436489004524887 8 52.30996194628121 1.0693131658503399 0.9904621794104304 0.5648989075277077 255.68820190429688 0.4248539277777412 310 70.13574660633485 2.6809791494848056 2.4306915700796616 2.913945717543534 2.6983001608312227 0.00547994 0.0054591139778494835 0.09241077303886414 442 90 90 54 2.1712000709967954 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 29.818903539915468 8.526639938354492 30.209110260009766 14.291855812072754 274972.0 8.029412269592285 107.8506851196289 44.35663604736328 0.6159173501995374 98.12010192871094 267.775634765625 244.66064453125 97413.0 120.90226745605469 487.6787536621093 112.68394470214844 33.74607467651367 +sub-10353_ses-V1_task-rest_run-02_bold 0.00025328054298642534 0.00631944391402715 8 54.19720161428567 1.0632467699092965 0.9847753608163267 0.5671468890036995 245.8730926513672 0.46183584199762234 326 73.75565610859728 2.6480194275025752 2.4074332376705314 2.8706290525981166 2.6659959922390772 0.00596478 0.006969215348362923 0.09541165828704834 442 90 90 54 2.154462252741748 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.213508803623114 8.674230575561523 30.536218643188477 14.357466697692871 274996.0 8.002263069152832 108.79016304016113 44.91160202026367 0.7227063829287443 95.80728912353516 264.03314208984375 240.41290283203125 97354.0 120.28122787475587 483.912010192871 111.58778381347656 33.80582809448242 +sub-10354_ses-V1_task-cuff_run-01_bold 0.0012293033707865169 0.009120808943820224 5 42.03117514943695 1.1844378813963956 1.012028546261262 0.4736189149722991 280788.75 0.32549990016480446 0 0.0 2.6103499234823855 2.675623661971831 2.6713735211267604 2.4840525873485646 0.00347114 -0.005350644234567881 0.029233576729893684 445 96 96 54 4.043811821474274 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 97.15555802943643 51.36878204345703 507.2933654785156 34.81052017211914 318675.0 0.1428509742021561 2291.6470703124987 1090.9658203125 1.6145186690722877 3818.691162109375 20080.751953125 19582.568359375 109105.0 13079.760351562501 28867.518749999996 4842.5791015625 45.165287017822266 +sub-10354_ses-V1_task-cuff_run-02_bold 0.004554009009009009 0.012038878220720719 6 43.00580011370204 1.2300152844921002 1.0561038056207677 0.473759533355956 285529.21875 0.3455466902876028 6 1.3513513513513513 2.6444786374507014 2.711184225352113 2.70663661971831 2.5156150672816806 0.00732591 -0.005394462961703539 0.0293345358222723 444 96 96 54 4.092666085067175 0.7999997138977051 2.21875 2.21875 2.4000015258789062 15 67.52540054659721 51.131507873535156 513.93212890625 34.7458610534668 318995.0 0.22858162522315978 2342.678125 1082.34326171875 1.5811096262528297 3822.0341796875 20177.787109375 19685.04296875 108792.0 13210.248193359375 28887.259374999998 4809.8115234375 39.77811813354492 +sub-10354_ses-V1_task-rest_run-01_bold 0.0014274215246636772 0.010068161255605381 4 42.10469857537078 1.198307364089886 1.01952655330337 0.47336490487889393 356123.34375 0.3355742987767176 258 57.847533632286996 2.620531039294058 2.6868552112676056 2.675943661971831 2.498794244642738 0.00565945 -0.006420606281608343 0.028183700516819954 446 96 96 54 4.070779610809042 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 87.8856505510766 46.04180908203125 511.4826965332031 31.19696044921875 318674.0 0.13658018931746485 2299.614526367186 1100.573486328125 1.566587696975664 3935.865966796875 20445.900390625 19934.697265625 108934.0 13451.850341796875 29248.337988281248 4896.99951171875 42.92700958251953 +sub-10354_ses-V1_task-rest_run-02_bold 0.002710493273542601 0.013423668116591927 4 43.662131860426975 1.2088810851910097 1.033682225168539 0.4742649680640423 271599.0 0.34242414854368364 253 56.72645739910314 2.6419809619612686 2.7031481690140846 2.7098546478873238 2.5129400689823984 0.00628816 -0.00593947758898139 0.030344726517796516 446 96 96 54 4.058660432293187 0.7999997138977051 2.21875 2.21875 2.4000015258789062 10 78.35770826123287 52.09149932861328 518.5739135742188 35.41910171508789 318993.0 0.24860875010490419 2364.9093749999984 1092.9237060546875 1.6456791406199365 3785.33544921875 20058.28515625 19579.91796875 108941.0 13054.8896484375 28766.3828125 4824.20947265625 38.61618423461914 +sub-10355_ses-V1_task-cuff_run-01_bold 0.002063325842696629 0.02493575191011236 5 90.11882564639639 1.1738551419144134 0.9771909233108116 0.40574183164836075 19236.138671875 0.7331137388861427 168 37.752808988764045 2.588274383608686 2.6256665623320514 2.554412398496771 2.584744189997234 0.0103947 -0.007501344196498394 0.022604867815971375 445 90 90 60 2.273156016533297 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 28 84.61549281877963 12.327254295349121 29.418489456176758 8.595505714416504 336199.0 0.0696629211306572 120.37191238403295 65.93994903564453 5.9539558330563995 377.0174865722656 1259.728515625 1165.986572265625 83747.0 617.0658264160156 2196.6395996093747 512.9342651367188 19.26837158203125 +sub-10355_ses-V1_task-cuff_run-02_bold 0.0030943018018018023 0.030439044144144143 6 106.77048455399537 1.2120061870880359 1.016223870925507 0.40415068815448296 18801.91015625 0.9594605994671529 236 53.153153153153156 2.5809938237371495 2.6115748962253376 2.523483233059119 2.607923341926993 0.0150298 -0.00620137806981802 0.021129824221134186 444 90 90 60 2.3351065078946265 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 37 69.42275271184222 12.293242454528809 27.910917282104492 8.516891479492188 337180.0 0.045045047998428345 113.44392051696772 61.795204162597656 4.7887778741222 369.18646240234375 1243.3858642578125 1154.864990234375 83038.0 608.0419006347656 2154.4713867187493 494.5633239746094 18.020221710205078 +sub-10355_ses-V1_task-rest_run-01_bold 0.0016389864864864866 0.021855737612612613 6 95.22908953453725 1.2114770290067713 0.9871894992325057 0.4049645805713154 20413.86328125 0.71106049194392 360 81.08108108108108 2.5581132807923286 2.616454062698123 2.508858233640264 2.5490275460385985 0.00961361 -0.009106067009270191 0.022608434781432152 444 90 90 60 2.249541372895928 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 88.15157585180616 12.014422416687012 29.404569625854492 8.319820404052734 335556.0 0.038288287818431854 121.73480033874512 67.14100646972656 6.371222581108967 375.9415283203125 1263.2880859375 1166.11376953125 84056.0 620.7117309570312 2214.0889282226562 518.3753662109375 21.909900665283203 +sub-10355_ses-V1_task-rest_run-02_bold 0.0023735730337078654 0.027192613483146066 5 95.70212185493237 1.18425570240991 0.9760320564864857 0.4047625985289271 19264.962890625 0.7696615537760463 317 71.23595505617978 2.5682479954518302 2.6153457294088316 2.5043332338200712 2.5850650231265875 0.0115132 -0.0070095001719892025 0.019666176289319992 445 90 90 60 2.3058606589018984 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 59.46174812049378 12.260621070861816 28.674236297607422 8.474157333374023 336600.0 0.03146067261695862 118.35516929626462 62.8112907409668 5.396324857182389 371.52166748046875 1257.20751953125 1163.01904296875 83350.0 622.1943756103515 2190.7919555664066 504.3722229003906 19.722248077392578 +sub-10355_ses-V3_task-cuff_run-01_bold 0.0011988036117381489 0.021605494130925506 7 94.15122830920808 1.1978668704298645 1.0173571448868777 0.42323700157654826 11123.5234375 0.9010339344835765 243 54.853273137697514 2.491161823341223 2.507658233687948 2.516024900022153 2.4498023363135686 0.00392492 -0.011007547378540039 0.02682868205010891 443 90 90 60 2.5105104778582192 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 109.36676584614679 14.605138778686523 31.183080673217773 10.178329467773438 331750.0 0.045146726071834564 128.85823974609366 66.41329193115234 4.379061509824163 325.2923889160156 1148.8873291015625 1076.1873779296875 86723.0 583.6761108398438 1935.666357421874 428.6702575683594 22.281909942626953 +sub-10355_ses-V3_task-cuff_run-02_bold 0.0010279909706546275 0.02033486433408578 7 92.73306462570136 1.1907360225565609 0.972787612533937 0.424474542768729 11072.943359375 0.82272818010968 213 48.081264108352144 2.4937771027742457 2.509354066953895 2.5168623999888737 2.455114841379968 0.00576867 -0.01203316729515791 0.026689520105719566 443 90 90 60 2.499159721319294 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 93.07435313523725 14.571672439575195 31.761445999145508 10.142212867736816 331125.0 0.031602710485458374 133.0866882324218 67.51019287109375 4.425631145761228 324.6429748535156 1143.197265625 1072.400634765625 87196.0 573.7189636230469 1922.6784057617188 429.1020202636719 23.303977966308594 +sub-10355_ses-V3_task-rest_run-01_bold 0.001105339366515837 0.020954181674208146 8 88.6110739845124 1.196842683106575 0.9896513692290256 0.423628742966228 10470.486328125 0.7651345575816412 374 84.61538461538461 2.5026757107681417 2.5261748996188285 2.5350832325981765 2.44676900008742 0.00400209 -0.011583996936678886 0.026816321536898613 442 90 90 60 2.5107434000046474 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 16 112.1278639010175 14.715331077575684 31.258159637451172 10.402715682983398 331718.0 0.09049773961305618 127.83100090026839 65.49427032470703 4.070041551781398 327.49755859375 1138.197509765625 1068.2467041015625 86895.0 569.7149475097656 1908.8272216796877 425.46783447265625 22.57234001159668 +sub-10356_ses-V1_task-cuff_run-01_bold 0.0005953914988814317 0.026751354362416106 3 47.288186402645806 1.099368307130045 0.9871957894618835 0.4658290258718072 161082.15625 0.4728144726432444 26 5.8165548098434 2.6694170169160976 2.770523943661972 2.792103661971831 2.4456234451144887 0.0124623 -0.025182079523801804 0.0281930360943079 447 96 96 54 4.603738836009637 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 22.40869365660645 57.790916442871094 600.0010986328125 39.433074951171875 333160.0 0.5300990641117096 2588.1387207031235 1157.363037109375 1.9004048880088238 2865.25341796875 17015.541015625 16855.228515625 95039.0 11112.96865234375 22952.642578124996 3661.18505859375 28.94786834716797 +sub-10356_ses-V1_task-cuff_run-02_bold 0.0009980803571428573 0.025581043526785717 2 47.90037681686802 1.1114072004697992 1.0937170178299778 0.4664886923005049 123282.0390625 0.4758790094077584 31 6.919642857142857 2.6713954745319946 2.773421971830986 2.790832676056338 2.449931775708659 0.00923114 -0.025196217000484467 0.027822012081742287 448 96 96 54 4.6110914952608315 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 22.299039081449383 66.4908447265625 604.6976318359375 45.42149353027344 333258.0 0.6299283653497697 2608.8778198242126 1160.20166015625 1.7885928123202222 2892.85107421875 17009.060546875 16848.0625 94848.0 11079.855908203126 22969.508984374996 3653.79296875 29.360376358032227 +sub-10356_ses-V1_task-rest_run-01_bold 0.0011587024608501115 0.03061764362416107 3 47.44985605264573 1.1088997708295965 0.9936381113004485 0.46380396285253134 146543.828125 0.4490931470013515 309 69.12751677852349 2.6679043595111693 2.768347042253521 2.78544676056338 2.4499192757166064 0.0105956 -0.025496531277894974 0.02686414308845997 447 96 96 54 4.524578637525656 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 24.009883479718606 61.85847854614258 603.3682861328125 42.23298263549805 334241.0 0.6055393218994141 2592.9833984375 1163.309326171875 1.854706541100155 2966.3701171875 17291.896484375 17113.517578125 94130.0 11198.59619140625 23496.241601562502 3782.324951171875 27.102275848388672 +sub-10356_ses-V1_task-rest_run-02_bold 0.000746875 0.02603217522321429 2 49.135965684586104 1.117003075727069 1.0701929074049217 0.46665215787370157 155575.375 0.4733464201468445 321 71.65178571428571 2.6428272514074487 2.743103098591549 2.757034366197183 2.428344289433613 0.0102683 -0.025386052206158638 0.02755982056260109 448 96 96 54 4.600974114745728 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 21.19105822275783 58.52127456665039 605.6035766601562 39.949432373046875 333422.0 0.5555999964475631 2612.420263671875 1152.2864990234375 1.8479858491976486 2909.123291015625 17015.3984375 16842.974609375 94709.0 11179.7501953125 22994.931640625 3660.7216796875 29.045269012451172 +sub-10357_ses-V1_task-rest_run-01_bold 0.003873828828828829 0.013955282072072072 6 40.99618023954851 1.0720282088713324 1.0427644281264115 0.5775030193029281 272.47857666015625 0.16114399377713698 34 7.657657657657658 2.8620222020338595 2.633808228675197 3.127499875724321 2.8247585017020604 0.0110073 -0.030333932489156723 0.16265153884887695 444 90 90 54 2.0785986214030374 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 17.409994299626387 8.688583374023438 36.442081451416016 14.515766143798828 268449.0 8.310811042785645 147.2481994628905 54.495384216308594 3.5475282686590424 102.93235778808594 275.12054443359375 255.26126098632812 102906.0 114.54955291748047 497.1796417236328 122.80390167236328 29.025318145751953 +sub-10360_ses-V1_task-cuff_run-01_bold 0.0006035346756152126 0.013297728612975393 3 33.968098922847496 1.1054766052017937 0.9970238393049337 0.46915416257022896 222818.8125 0.29904710283278285 1 0.22371364653243847 2.6702520723235694 2.681167323943662 2.8131154929577464 2.5164734000693003 0.00777953 -0.007831725291907787 0.039452649652957916 447 96 96 54 4.8679351774368715 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 84.46803052160467 65.18031311035156 797.6512451171875 44.24028015136719 334446.0 0.25564486533403397 3790.515380859375 1663.10595703125 2.3946396635094622 3308.096923828125 21019.412109375 21034.091796875 95661.0 13769.9658203125 27782.486328125 4320.9248046875 44.596229553222656 +sub-10360_ses-V1_task-cuff_run-02_bold 0.0012262639821029081 0.015769755704697987 3 34.439205340739925 1.10808845970852 0.9983827685426014 0.47074043291464884 215544.375 0.30517658787473056 3 0.6711409395973155 2.6780123682185235 2.681910985915493 2.8288360563380284 2.52329006240205 0.00806388 -0.007536616176366806 0.03806169331073761 447 96 96 54 4.933460635207117 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 77.63116794567703 64.85238647460938 800.3973999023438 43.97037887573242 334143.0 0.20829803049564363 3805.2604492187465 1653.4893798828125 2.5140301396214637 3178.69189453125 20679.458984375 20702.43359375 95912.0 13577.106054687501 27237.066796875 4196.30908203125 41.2901611328125 +sub-10360_ses-V1_task-rest_run-01_bold 0.0006171588366890381 0.02456747874720358 3 33.62896012183857 1.0600979193049322 0.9631494024663682 0.4701982738557088 184660.84375 0.2883934453606781 195 43.624161073825505 2.691838605896787 2.700516056338028 2.821259718309859 2.5537400430424735 0.00515174 -0.009059451520442963 0.0363459512591362 447 96 96 54 4.87695066228709 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 78.4073260987234 71.61424255371094 812.0302734375 48.57387924194336 334149.0 0.2355150431394577 3782.920117187498 1663.60546875 2.326096751724366 3312.7763671875 21111.11328125 21094.35546875 95625.0 13818.3208984375 27916.893359375 4325.2939453125 35.952003479003906 +sub-10361_ses-V3_task-cuff_run-01_bold 0.0013550678733031676 0.013543760271493214 8 49.86025257074835 1.1216253516780044 0.9766701269841274 0.446210426239952 7622.4716796875 0.31754315958313667 2 0.45248868778280543 2.4573813680361227 2.4515082359191482 2.5109540668903167 2.4096818012989036 0.0131778 -0.0035384027287364006 0.03058808669447899 442 90 90 60 2.643437702392251 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 357.9246600887457 19.206745147705078 42.67893600463867 13.41402816772461 323257.0 0.06108597666025162 166.77647399902358 108.24417877197266 3.4405832731711232 353.62579345703125 1241.13232421875 1178.4061279296875 93164.0 640.0648315429688 2054.2610351562494 445.7830810546875 27.21611976623535 +sub-10361_ses-V3_task-cuff_run-02_bold 0.0011379411764705883 0.014199128529411763 8 50.73337787156463 1.1114697800453521 0.9891092541723359 0.4471900872874416 7393.24853515625 0.33752483998673494 0 0.0 2.463273034316353 2.4556665690872443 2.523704066383677 2.410448467478137 0.00873182 -0.0044821323826909065 0.031816188246011734 442 90 90 60 2.6634385764614916 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 343.1567686370508 19.29730987548828 42.34568786621094 13.556561470031738 323073.0 0.0882352963089943 165.48462524414 104.55897521972656 3.3056728287088744 349.6961364746094 1231.4334716796875 1168.9705810546875 93317.0 640.7416381835938 2033.0312988281248 438.8929138183594 27.025981903076172 +sub-10361_ses-V3_task-rest_run-01_bold 0.0019328668171557564 0.010491820948081263 7 46.435374087420826 1.1516714302941184 1.0590703597737554 0.4453495152279768 8042.388671875 0.2458536896141092 154 34.762979683972915 2.4448660964412743 2.445854069477158 2.5076790670204536 2.3810651528262117 0.00599369 -0.003411161480471492 0.030181284993886948 443 90 90 60 2.63983895744832 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 366.07915091943096 18.78855323791504 42.07309341430664 13.14447021484375 323190.0 0.04740406572818756 165.07618713378895 106.45352172851562 3.4185233259215266 355.3627624511719 1246.7427978515625 1183.6253662109375 93280.0 643.56015625 2062.531420898438 448.3678894042969 31.38317108154297 +sub-10361_ses-V3_task-rest_run-02_bold 0.001080158013544018 0.011855977088036117 7 49.55250923042983 1.1162665164027143 1.0044349502714929 0.44667266877684253 7946.552734375 0.3224027635490291 223 50.33860045146727 2.4730160881701413 2.462399902153019 2.5395832324193623 2.417065129938043 0.00670875 -0.004550070036202669 0.03260008990764618 443 90 90 60 2.625875791885228 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 322.4803059812241 18.607830047607422 42.08082962036133 12.966139793395996 322654.0 0.04740406572818756 166.14842224121068 104.51907348632812 3.3843953293437234 353.2156066894531 1221.6646728515625 1161.040771484375 93632.0 625.5084655761718 2026.9018249511714 442.1513671875 28.482471466064453 +sub-10362_ses-V1_task-rest_run-01_bold 0.0007202040816326531 0.008269148367346938 9 43.38679942193182 1.1467021293863626 0.9838623033636364 0.4426531940387111 7722.7978515625 0.24732376069898263 135 30.612244897959183 2.457086941493866 2.4907707343589967 2.5608540649074687 2.3196360252151327 0.00639177 -0.013279921375215054 0.025741243734955788 441 90 90 60 2.4074732094673754 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 226.36319192305783 17.552532196044922 35.5624885559082 12.083900451660156 320983.0 0.006802720949053764 138.0088516235351 79.28155517578125 6.676426934672559 306.0548095703125 1155.6009521484375 1077.166748046875 95356.0 606.9886627197266 1971.6820068359375 447.4239196777344 35.59031677246094 +sub-10362_ses-V1_task-rest_run-02_bold 0.0006024943310657596 0.008531133242630386 9 45.32182299865909 1.1526827439999998 0.9781790931818176 0.44386267919772643 7513.4931640625 0.26876263179769067 166 37.641723356009074 2.4515952753450976 2.4765874015892586 2.560070731605262 2.3181276928407715 0.00228602 -0.01357914786785841 0.025608228519558907 441 90 90 60 2.430432629600877 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 152.6825970746212 17.71726417541504 35.86708450317383 12.199546813964844 321264.0 0.004535147454589605 137.65691299438467 77.4578857421875 6.664556470996377 304.703369140625 1149.453857421875 1072.6734619140625 95089.0 609.1882202148438 1956.1274902343744 441.3485107421875 34.97193145751953 +sub-10362_ses-V3_task-cuff_run-01_bold 0.0011855855855855855 0.011822171193693694 6 48.155883453476264 1.1623651355756217 0.9968830388939061 0.44496181240932464 7068.07958984375 0.28300938451642726 0 0.0 2.466368884388977 2.506358233739605 2.5671707313231336 2.325577688104192 0.00719255 -0.014577082358300686 0.02940462715923786 444 90 90 60 2.360450964071516 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 291.9520819221176 17.153440475463867 34.68602752685547 11.993243217468262 319941.0 0.04054054245352745 134.3446044921875 77.1412582397461 7.787991909740972 291.1944274902344 1090.1597900390625 1013.3761596679688 96123.0 572.0772705078125 1870.8883056640625 429.3124084472656 30.425649642944336 +sub-10362_ses-V3_task-rest_run-01_bold 0.0007548181818181819 0.01359246584090909 10 46.47520232141232 1.1148539619362192 0.9564901380865615 0.44432163203768715 7380.134765625 0.2663629963725113 167 37.95454545454545 2.4822911011480504 2.504183233826032 2.5927998969713886 2.3498901726467305 0.00279762 -0.0146421417593956 0.029834197834134102 440 90 90 60 2.384624817338826 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 330.5361275642158 17.006120681762695 34.3988037109375 11.77727222442627 319998.0 0.020454544574022293 132.05749053955063 79.93956756591797 7.415252049338941 296.7596435546875 1104.04443359375 1028.380615234375 96274.0 578.0883026123047 1886.4192443847655 431.25244140625 29.277936935424805 +sub-10362_ses-V3_task-rest_run-02_bold 0.0010769614512471657 0.011277705351473924 9 45.70168985911362 1.135809984704546 1.000359692386364 0.445852384184675 7144.046875 0.26337165810046365 160 36.281179138321995 2.4559480532164764 2.4941082342263763 2.55694989839594 2.316786027027113 0.00692095 -0.014680006541311741 0.02987346425652504 441 90 90 60 2.37250095512795 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 277.3653351583309 17.054969787597656 34.972354888916016 11.904762268066406 319712.0 0.03401360660791397 135.29183883667008 78.30584716796875 7.871480083063544 290.8068542480469 1086.17822265625 1010.611083984375 96286.0 568.6366424560547 1857.1275939941406 425.9664611816406 31.13253402709961 +sub-10363_ses-V1_task-cuff_run-01_bold 0.0010150446428571428 0.03519995424107143 2 93.31440204031311 1.147557816062639 0.9736939299105141 0.4623656452089648 96553.8125 1.5782341613646476 337 75.22321428571429 3.0572292899135096 3.1342242253521126 3.129915492957746 2.9075481514306696 0.00899869 -0.02435266226530075 0.02225804142653942 448 96 96 54 3.972550860498925 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 127.68207843256255 81.31492614746094 596.6674194335938 55.242984771728516 331677.0 0.38551416397094723 2561.471630859376 1325.4857177734375 1.4151647751641008 3962.5498046875 18237.22265625 18598.201171875 97633.0 10091.803125 25336.613671875 4681.6533203125 22.033008575439453 +sub-10363_ses-V1_task-cuff_run-02_bold 0.0011188616071428571 0.03822243727678572 2 92.8228689787249 1.149435253534676 0.9807912724161074 0.463165507902344 101471.1015625 1.5498636819660694 315 70.3125 3.0887955423899833 3.1508912676056338 3.1734805633802816 2.9420147961840337 0.00798561 -0.024228312075138092 0.023508761078119278 448 96 96 54 4.020462712428274 0.7999997138977051 2.21875 2.21875 2.4000015258789062 11 150.62274623646053 80.03174591064453 601.3807983398438 54.466732025146484 330597.0 0.45803097486495975 2610.22763671875 1380.046630859375 1.4649503149941134 3925.81494140625 18259.595703125 18631.451171875 98104.0 10159.748046875 25239.156542968747 4634.13232421875 20.748905181884766 +sub-10363_ses-V1_task-rest_run-01_bold 0.0022434375 0.03769144375 2 96.65957788420579 1.1503903721923945 0.9892612278747205 0.46197054184805547 92736.6640625 1.6942411717289454 441 98.4375 3.1116975350262788 3.177054647887324 3.184969014084507 2.9730689431070054 0.0100364 -0.02312162145972252 0.020467771217226982 448 96 96 54 3.9596792792571023 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 87.2177263951115 82.70501708984375 576.7393798828125 56.361244201660156 330912.0 0.5582636028528214 2514.028210449219 1213.2056884765625 1.3942590054185073 3988.9384765625 18252.69921875 18615.91796875 98113.0 9998.633984375001 25342.776953125 4701.34619140625 20.534515380859375 +sub-10364_ses-V1_task-cuff_run-01_bold 0.00046141891891891894 0.005695191509009009 6 40.693992812686254 1.1343812428893907 0.988772206410835 0.523245313676089 535.1422119140625 0.11962786630029505 0 0.0 2.564106927757799 2.3732999056935347 2.746012390883271 2.5730084866965903 0.0157407 -0.04140833392739296 0.09477061778306961 444 90 90 54 2.4898959230690827 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 48.147572192926376 3.426013708114624 20.49125099182129 10.087838172912598 284914.0 7.680180549621582 64.26430206298824 29.666622161865234 1.355309459160412 87.283203125 265.6122131347656 249.48536682128906 89534.0 132.81903381347655 452.189208984375 100.19855499267578 39.53870391845703 +sub-10364_ses-V1_task-cuff_run-02_bold 0.0006538651685393258 0.005503240764044944 5 39.931093280427966 1.1321290099549555 1.0057835496621608 0.5250501560910199 520.417724609375 0.12048040426871053 0 0.0 2.557493038825007 2.3686207392128016 2.7401123911177163 2.563745986144502 0.0208543 -0.04218767583370209 0.09592441469430923 445 90 90 54 2.4868737734058133 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 47.22152282013765 3.508270502090454 20.676067352294922 10.139326095581055 284923.0 7.680899143218994 64.76786499023414 29.90601921081543 1.4066119533616952 86.05589294433594 263.1649475097656 247.0786590576172 89624.0 131.41798400878906 448.4195541381835 99.3525619506836 39.05061340332031 +sub-10364_ses-V1_task-rest_run-01_bold 0.0005037612612612612 0.005430265427927928 6 40.58207454620768 1.1430208150564336 0.9951755327539498 0.5221045545924013 549.4510498046875 0.1347416794598809 3 0.6756756756756757 2.588530538624145 2.3908957383276728 2.779770722875169 2.594925154669592 0.0107824 -0.04153722524642944 0.09492956101894379 444 90 90 54 2.4851611861132525 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 47.59035522571032 3.3725857734680176 20.516437530517578 10.07207202911377 285135.0 7.711711883544922 64.23198699951172 29.738540649414062 1.3190580463882045 89.06967163085938 268.380615234375 252.08558654785156 89418.0 133.73130416870117 456.3719772338867 101.43574523925781 39.28700256347656 +sub-10364_ses-V1_task-rest_run-02_bold 0.0005099324324324325 0.006258042657657658 6 39.41516187329572 1.0775910304966148 0.995544418690746 0.5270054020405285 501.1939697265625 0.16308860838690303 20 4.504504504504505 2.5326152608104384 2.3505415732645365 2.720562391894563 2.526741817272215 0.0240686 -0.04346103221178055 0.09810458868741989 444 90 90 54 2.484397099739841 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 47.41152581385803 3.582955837249756 20.812902450561523 10.168919563293457 285051.0 7.664414405822754 64.95608139038086 30.24338150024414 1.503832130702217 83.9773941040039 258.9089050292969 243.06532287597656 89425.0 128.60586547851562 440.67343750000003 97.83619689941406 36.70110321044922 +sub-10366_ses-V1_task-cuff_run-01_bold 0.00048088235294117636 0.0056674816289592755 8 45.67956666666665 1.208880306643992 0.9891941142176871 0.5542166755361618 431.7239685058594 0.1004965179571266 0 0.0 2.691794429867969 2.481229068071482 2.8041957219046068 2.7899584996278186 0.00660994 -0.022455869242548943 0.08237053453922272 442 90 90 54 2.2985354832815243 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 50.198219101155836 5.393720626831055 23.001686096191406 11.699095726013184 260398.0 7.662896156311035 70.87625083923336 36.50992202758789 0.981042312323257 99.76204681396484 279.6640319824219 260.46380615234375 110012.0 124.37444114685059 493.36394653320303 113.3167724609375 39.03877639770508 +sub-10366_ses-V1_task-cuff_run-02_bold 0.0006475280898876405 0.005860850337078652 5 44.15527164204959 1.1945936985135133 1.0004425835360367 0.554504522663562 427.02825927734375 0.10819035807282792 0 0.0 2.6758097076822547 2.4690124018902617 2.7865373892729526 2.7718793318835497 0.018241 -0.02053380385041237 0.0831240713596344 445 90 90 54 2.3058891660588365 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 51.56854230845199 5.330704689025879 22.946210861206055 11.647191047668457 260788.0 7.656179904937744 70.56393394470211 36.55247116088867 0.9275964064352835 98.38817596435547 276.961669921875 257.7640380859375 109519.0 124.00584564208984 488.2202331542967 111.78458404541016 38.726097106933594 +sub-10366_ses-V1_task-rest_run-01_bold 0.000875972850678733 0.0075047923755656104 8 44.78746358818593 1.186434986780046 0.9771041683219954 0.5519809718997274 455.56005859375 0.09670739866593545 5 1.1312217194570136 2.7287722074969287 2.5101332335896003 2.846345720229716 2.8298376686714692 0.00734313 -0.021964535117149353 0.0807647854089737 442 90 90 54 2.3100285466741868 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 51.44202508871719 5.236068248748779 22.698806762695312 11.540724754333496 260424.0 7.619909763336182 69.61018409728993 36.113624572753906 0.9283301434125444 100.96452331542969 282.22064208984375 263.5497741699219 109917.0 124.35249176025391 497.38735961914057 114.08888244628906 36.1408576965332 +sub-10366_ses-V1_task-rest_run-02_bold 0.0031472747747747745 0.008599883806306306 6 45.47582856284422 1.1967739008577878 0.9971344517607226 0.5535149060584994 426.6689147949219 0.1131307683548671 9 2.027027027027027 2.701934708356946 2.474441568341193 2.807758221763046 2.8236043349666002 0.00836243 -0.01886734738945961 0.08319962024688721 444 90 90 54 2.315313258937423 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 50.17544036389873 5.315998077392578 22.529573440551758 11.563063621520996 261309.0 7.599099159240723 68.7189224243163 35.65031051635742 0.8712722171064997 96.90174865722656 274.5634765625 255.28378295898438 108978.0 123.92274856567383 483.4418014526367 110.25834655761719 33.716670989990234 +sub-10367_ses-V1_task-cuff_run-01_bold 0.0007844444444444445 0.011896656326530612 9 36.6369823627273 1.0494184220681821 0.9614934464318182 0.4516421705445919 8217.6865234375 0.22858154359890642 0 0.0 2.387738313119552 2.362058239473572 2.3807624053970016 2.420394294488084 0.013532 0.012853674590587616 0.009411662817001343 441 90 90 60 2.8370009465746344 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 48.25146646462205 18.11060905456543 42.6196174621582 12.782313346862793 323013.0 0.0317460335791111 167.67891235351556 106.29833221435547 2.2830454750128855 325.900146484375 1214.221435546875 1158.23583984375 94402.0 637.8249359130859 1968.3421813964844 408.25848388671875 30.134841918945312 +sub-10367_ses-V1_task-cuff_run-02_bold 0.002160496613995485 0.011497477945823929 7 36.826572983461546 1.0718717199547512 0.9933627914027148 0.4531923399271165 8214.6806640625 0.26666987030963657 1 0.22573363431151242 2.4113702563600383 2.3982749047011174 2.4141082374052907 2.4217276269737074 0.00766734 0.012060228735208511 0.008058280684053898 443 90 90 60 2.8028224161663284 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 45.07134791436643 18.196182250976562 43.142860412597656 12.839729309082031 322042.0 0.03837471827864647 172.25700073242194 105.29602813720703 2.39656931856409 329.24139404296875 1211.1251220703125 1158.3792724609375 95335.0 622.4537353515625 1971.2953491210944 413.2881164550781 30.40534210205078 +sub-10367_ses-V1_task-rest_run-01_bold 0.0022922747747747742 0.013024765472972974 6 39.15412443864561 1.0792667408352141 1.001163387629797 0.4522407884037994 7915.94091796875 0.257816042137609 153 34.45945945945946 2.4073744205902017 2.392008238283466 2.39532490481834 2.4347901186687984 0.0119796 0.013877240009605885 0.008164678700268269 444 90 90 60 2.8266919480457435 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 48.17504291302577 18.469083786010742 42.97240447998047 13.132883071899414 322831.0 0.06756757199764252 166.6768035888672 107.17134857177734 2.318865393488738 325.52801513671875 1214.2982177734375 1159.8626708984375 94625.0 632.3000122070313 1969.0243896484376 410.32293701171875 28.348310470581055 +sub-10367_ses-V3_task-cuff_run-01_bold 0.0017820135746606336 0.012246989411764705 8 38.663769853809505 1.0936991624489798 0.9967717719047621 0.4426722100916955 9691.2998046875 0.2723561203538906 0 0.0 2.338268885581735 2.344033240189821 2.325579074256457 2.345194342298926 0.00487975 0.014472194947302341 0.00941411592066288 442 90 90 60 2.87722702725504 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 65.95089176628022 16.24489402770996 36.418975830078125 11.300905227661133 326078.0 0.011312217451632023 135.66549987792962 91.99262237548828 2.5906939179820947 293.7228698730469 1159.820556640625 1109.512451171875 92256.0 600.0056915283203 1860.6341247558594 385.6165771484375 31.129188537597656 +sub-10367_ses-V3_task-cuff_run-02_bold 0.0014802499999999998 0.010831956954545455 10 38.55278938009111 1.0722516445785872 0.9861370239863319 0.4424974014808573 9718.3837890625 0.2515201370960883 0 0.0 2.3281022223961423 2.337058240466982 2.3175415745758383 2.3297068521456072 0.00816656 0.014180668629705906 0.010293318890035152 440 90 90 60 2.8829071020459818 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 64.79465409320106 16.167102813720703 36.090091705322266 11.163636207580566 326429.0 0.0022727272007614374 135.97999267578115 90.72163391113281 2.543230688237368 291.29949951171875 1150.618896484375 1101.5830078125 92186.0 596.9369201660156 1847.7971496582031 382.1063232421875 32.40956115722656 +sub-10367_ses-V3_task-rest_run-01_bold 0.0031351025056947607 0.014356882369020501 11 37.6062813849315 1.07142805956621 1.0066658300913238 0.44277405696900146 9616.5234375 0.2528834072125952 122 27.790432801822323 2.3519230468166 2.3446957401634956 2.3412707402995925 2.369802659986712 0.0122905 0.01424830686300993 0.008904620073735714 439 90 90 60 2.874224168267355 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 66.01441258705174 16.57880401611328 36.63612747192383 11.546697616577148 325960.0 0.013667427003383636 136.14373703002926 91.68901824951172 2.5634489011088037 299.1513366699219 1172.0169677734375 1121.1685791015625 92234.0 607.3682556152344 1882.5696533203122 390.0748291015625 28.443601608276367 +sub-10367_ses-V3_task-rest_run-02_bold 0.0011935454545454545 0.014648252568181818 10 39.840882377448736 1.0548414258997718 0.9493759553986325 0.44242101632287784 9311.5634765625 0.2645459241862106 147 33.40909090909091 2.342248048268138 2.339595740366151 2.3227165743702023 2.3644318300680607 0.00352088 0.01589616946876049 0.010408908128738403 440 90 90 60 2.9013855477174815 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 64.09135221157747 16.338951110839844 35.79957962036133 11.375 326418.0 0.011363635770976543 133.05453491210938 90.20267486572266 2.512595101465699 288.462158203125 1146.885498046875 1096.673828125 91974.0 598.6573425292969 1831.8095947265617 377.9807434082031 28.809825897216797 +sub-10368_ses-V1_task-cuff_run-01_bold 0.0009065603644646925 0.006512038542141231 11 31.9435673978767 1.045983055525114 0.9757295094748862 0.44863704577198205 10074.0107421875 0.11770634540770152 0 0.0 2.4144772137079413 2.4432874029124814 2.4439832362181653 2.3561610019931782 0.0239703 0.005718247964978218 0.019395897164940834 439 90 90 60 2.339939621157798 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 65.43973829902546 15.99454402923584 44.3841552734375 11.006834030151367 321653.0 0.002277904422953725 208.00228881835938 102.48849487304688 4.382770933131829 339.1393737792969 1217.5677490234375 1111.977294921875 95462.0 648.4929748535156 2151.1720703124997 475.2137451171875 37.549564361572266 +sub-10368_ses-V1_task-cuff_run-02_bold 0.0015886590909090907 0.005836704159090909 10 31.81894341043279 1.055003425717539 0.9989873536446476 0.4490108944198241 10168.3330078125 0.11336662444151059 0 0.0 2.403186937543572 2.430549903418624 2.4287124034916396 2.3502985057204526 0.0078725 0.0060389600694179535 0.019877824932336807 440 90 90 60 2.342367167341827 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 61.83615638010866 15.803192138671875 44.03114700317383 10.863636016845703 321529.0 0.0022727272007614374 206.22590026855448 101.56521606445312 4.371825400064046 333.1811828613281 1206.99755859375 1102.9385986328125 95627.0 640.491796875 2130.533349609375 470.86248779296875 39.284217834472656 +sub-10368_ses-V1_task-rest_run-01_bold 0.0018459529411764706 0.006220854 11 32.06161981707548 1.056000227759434 0.9829062497877367 0.44700990283040104 9749.552734375 0.11631117309781745 4 0.9411764705882353 2.3994883281142494 2.432454070009626 2.4234374037012496 2.3425735106318726 0.00585476 0.005717490334063768 0.019248245283961296 425 90 90 60 2.3329848395032413 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 66.22261396421246 16.176063537597656 42.98325729370117 11.089411735534668 321846.0 0.0 200.24940490722656 100.1714859008789 4.342293526329289 335.29840087890625 1211.0433349609375 1105.396484375 95332.0 644.0029235839844 2143.4953124999997 473.80963134765625 38.011695861816406 +sub-10372_ses-V1_task-cuff_run-01_bold 0.001698143176733781 0.041805200223713646 3 49.66884342764572 1.1136618076233185 0.9743396615695071 0.43959599364848556 284445.34375 0.37453635249550077 9 2.0134228187919465 2.5329757965498474 2.600680563380282 2.62784 2.37040682626926 0.00534716 -0.0037398699205368757 0.015194274485111237 447 96 96 54 4.543384372231597 0.7999997138977051 2.21875 2.21875 2.4000015258789062 11 62.05320730623376 52.672420501708984 475.72418212890625 36.00813293457031 340763.0 0.4422247141599655 1951.131823730467 953.3972778320312 2.2812181039604935 3100.703125 18958.3046875 18726.99609375 89934.0 12563.27724609375 25860.633300781246 4121.79345703125 25.70260238647461 +sub-10372_ses-V1_task-cuff_run-02_bold 0.002631146067415731 0.02744937146067416 5 49.516280354572096 1.1579609291216215 1.014165513873873 0.4385868390906502 313258.40625 0.3940401552761022 14 3.146067415730337 2.507711534149227 2.583242816901408 2.5792766197183097 2.3606151658279635 0.00538084 -0.0037746108137071133 0.01511042844504118 445 96 96 54 4.530399489189192 0.7999997138977051 2.21875 2.21875 2.4000015258789062 8 50.02554392871127 51.120033264160156 479.7217712402344 34.770713806152344 341425.0 0.2841367721557617 1994.9430664062497 945.0841064453125 2.2644807018217117 3201.93017578125 19132.962890625 18904.796875 89468.0 12768.21171875 26126.865234374985 4172.85302734375 29.354137420654297 +sub-10372_ses-V1_task-rest_run-01_bold 0.002101932584269663 0.037049874157303375 5 53.25058394936935 1.1394553030630632 0.9962541411036034 0.43816163337031266 397485.78125 0.4803160617752187 301 67.64044943820225 2.525631070587988 2.582287323943662 2.6065532394366198 2.388052648383682 0.00401477 -0.004276454448699951 0.01506240013986826 445 96 96 54 4.562117487943589 0.7999997138977051 2.21875 2.21875 2.4000015258789062 14 66.8598543976026 44.16259765625 461.2447814941406 30.17030143737793 341345.0 0.3837935328483582 1893.5997070312499 933.2191162109375 2.3055311195392525 3110.065185546875 18963.677734375 18733.81640625 89491.0 12657.09423828125 25806.55859375 4106.36328125 25.711565017700195 +sub-10372_ses-V1_task-rest_run-02_bold 0.0012056152125279641 0.035480442729306484 3 53.01387161632287 1.1338403818609868 0.9912833845067269 0.4404120551575431 426353.25 0.46470766919654666 315 70.46979865771812 2.52427241289851 2.5774242253521127 2.6090861971830983 2.386306816160319 0.00700827 -0.0028610422741621733 0.012210299260914326 447 96 96 54 4.620857802139171 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 46.995437560565996 42.512847900390625 457.5281066894531 28.961654663085938 339921.0 0.27164989709854126 1915.9700927734375 892.69140625 2.3463431415848337 3007.693115234375 18783.283203125 18547.54296875 90675.0 12650.352246093751 25535.73515625 4013.852294921875 27.636959075927734 +sub-10375_ses-V1_task-rest_run-01_bold 0.0005024099099099099 0.00867538105855856 6 54.46582956909705 1.1112643859819407 0.9777622355756204 0.5282373354512995 527.2600708007812 0.4625378383101126 311 70.04504504504504 2.7377110915624763 2.5165832333333 3.001645714058649 2.6949043272954816 0.00630598 -0.05610853061079979 0.14228814840316772 444 90 90 54 2.2583758314883373 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 45.35101517020788 4.9152936935424805 27.51214599609375 11.43693733215332 282159.0 7.977477550506592 95.7950439453125 46.94845199584961 1.4138914417643358 108.90281677246094 305.1397399902344 283.6993408203125 90952.0 145.08953704833985 547.3846801757812 125.62026977539062 33.02543258666992 +sub-10379_ses-V1_task-cuff_run-01_bold 0.0004884875846501128 0.007106626568848758 7 34.22798223635748 1.0206931313574668 0.9738763966515833 0.5256026588711009 470.3326416015625 0.15389167735175283 0 0.0 2.8103249809144337 2.5434498989323817 3.091499877154832 2.796025166656087 0.0155592 -0.027157112956047058 0.09366896003484726 443 90 90 54 2.417987393388032 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 30.533092708685906 5.565614700317383 25.1605167388916 11.778780937194824 289749.0 7.681715965270996 86.38375091552734 36.81245422363281 1.5039490984492376 102.17241668701172 285.54681396484375 273.9864501953125 85027.0 121.15192260742188 486.83388061523436 113.31111145019531 35.95661163330078 +sub-10379_ses-V1_task-cuff_run-02_bold 0.0017529954954954954 0.008820255923423424 6 35.11380480207678 1.0245805026862294 0.9919087737471775 0.5265289536554835 485.5074768066406 0.18636691456229582 0 0.0 2.8167319247652873 2.542633232298166 3.121774875951812 2.7857876660458842 0.0200826 -0.027050558477640152 0.0937144011259079 444 90 90 54 2.4544832401525314 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 30.56983463564041 5.332692623138428 25.114023208618164 11.605855941772461 289227.0 7.7094597816467285 85.92139816284188 36.6577033996582 1.5115679136375295 99.7484359741211 283.85906982421875 272.3153076171875 85211.0 123.96171188354492 482.3085632324219 110.9454345703125 31.417245864868164 +sub-10379_ses-V1_task-rest_run-01_bold 0.0005139864864864865 0.005773819234234235 6 33.43160523794584 1.0296260390293446 0.985407022054175 0.5230216978389657 488.9722900390625 0.14807863243867211 16 3.6036036036036037 2.8097027585677865 2.5458040655055023 3.0917832104769065 2.791520999720951 0.0199001 -0.027161575853824615 0.09105429798364639 444 90 90 54 2.4075333383238924 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 30.241344007142736 5.2558913230896 24.950904846191406 11.635135650634766 290087.0 7.871621608734131 86.11801910400396 36.527740478515625 1.5421566048547382 103.91572570800781 288.3446960449219 276.6711730957031 84652.0 121.94516220092774 492.41961212158196 114.91825866699219 38.408843994140625 +sub-10379_ses-V1_task-rest_run-02_bold 0.0016014672686230247 0.00784451638826185 7 34.98836871624434 1.0346114554524892 0.9845817406334844 0.5271257362365606 480.38818359375 0.15653829754431647 21 4.74040632054176 2.786569426015577 2.5118457335215516 3.0605123783861647 2.7873501661390163 0.00436243 -0.028081221505999565 0.09554599970579147 443 90 90 54 2.461132658874026 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 29.96310672712255 5.287837028503418 24.840858459472656 11.528217315673828 289838.0 7.688487529754639 84.79006958007812 35.63225173950195 1.5317262237760065 98.56461334228516 282.0091552734375 270.4537353515625 84705.0 123.43973236083986 478.21580810546885 109.88929748535156 35.04650115966797 +sub-10380_ses-V1_task-rest_run-01_bold 0.0008385810810810809 0.00581555349099099 6 33.243719118216696 1.007791655846501 1.0018406309029346 0.5215346582062809 524.5885620117188 0.15137363241533652 20 4.504504504504505 2.6655972115943887 2.3607290728597214 2.7582957237285086 2.877766838194937 0.00604691 -0.005114970728754997 0.0788319855928421 444 90 90 54 2.5415694465625704 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 57.028057188212415 3.6697754859924316 20.993589401245117 10.096847534179688 288159.0 7.445946216583252 66.83603744506826 33.528053283691406 0.7588371670662433 86.1612319946289 258.04095458984375 244.48873901367188 86101.0 118.7747802734375 434.7657775878906 96.1954116821289 36.629608154296875 +sub-10382_ses-V1_task-cuff_run-01_bold 0.0006465688487584649 0.009855740586907451 7 46.226516335158365 1.142139583642534 0.9716794512443433 0.5397721951898838 462.0614013671875 0.1823926170308711 0 0.0 2.6808458209370083 2.4436582362310793 2.756220723810962 2.8426585027689835 0.0131165 -0.034720487892627716 0.10016734153032303 443 90 90 54 2.4021735334249135 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 75.07383095503464 4.521434307098389 22.707592010498047 10.977426528930664 275090.0 7.6952595710754395 73.02381744384763 37.410648345947266 1.4310780753614738 91.84102630615234 271.0755615234375 252.4243927001953 98527.0 135.29481201171876 469.5318420410156 105.08113098144531 32.24245834350586 +sub-10382_ses-V1_task-cuff_run-02_bold 0.0008695045045045046 0.008411127522522523 6 46.47596540085784 1.1627869374717839 0.9931069345823933 0.5388429446293115 465.84393310546875 0.20960198364025934 0 0.0 2.724066653637925 2.4953374008442 2.8014373886808794 2.875425171388696 0.00772245 -0.03452151641249657 0.09817720949649811 444 90 90 54 2.4365020336685137 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 75.95855062735671 4.751672744750977 22.978878021240234 11.123873710632324 275962.0 7.486486434936523 74.81531524658203 38.02217102050781 1.3935293136495135 94.17361450195312 273.1507568359375 256.424560546875 97832.0 134.74459915161134 468.32411499023436 105.24237060546875 33.60932159423828 +sub-10382_ses-V1_task-rest_run-01_bold 0.0006119683257918553 0.009142476968325791 8 46.724791381791405 1.194873786507936 1.0030252904761914 0.53777528416447 481.90447998046875 0.1839225042718394 74 16.742081447963802 2.685598598309999 2.450608235954911 2.7700498899281065 2.836137669046978 0.019855 -0.03350356966257095 0.0980299860239029 442 90 90 54 2.395227136292407 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 72.00585156373134 4.3002166748046875 22.33538818359375 10.81447982788086 275224.0 7.735294342041016 72.37975654602045 36.32476806640625 1.4045314778293614 93.25969696044922 272.7445983886719 254.2895965576172 98391.0 134.84503173828125 472.24322509765625 106.16458892822266 34.383121490478516 +sub-10382_ses-V1_task-rest_run-02_bold 0.0007448306997742663 0.009132082528216706 7 43.136471450746576 1.1287154754977387 0.9859102971266973 0.5425762604824941 461.0791015625 0.1497724280957035 38 8.577878103837472 2.7427847089752344 2.5089249003042817 2.828133220953416 2.891296005668005 0.0059614 -0.03416689112782478 0.09853816777467728 443 90 90 54 2.40276344573268 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 64.96824904466084 4.638570785522461 23.08850860595703 11.065463066101074 274124.0 7.575621128082275 75.66648101806615 37.03207778930664 1.4424263230147005 93.63319396972656 270.968017578125 253.66592407226562 99480.0 132.23917541503906 468.1268844604491 105.5720443725586 33.46638107299805 +sub-10384_ses-V1_task-rest_run-01_bold 0.001755034013605442 0.011885369319727892 9 38.50928554109093 1.1044552334545457 0.9909768355000003 0.4059639798003837 26161.09765625 0.2526962670533332 129 29.25170068027211 2.3399244385821842 2.3277165741715202 2.3343332405752646 2.357723500999768 0.00596023 -0.008129817433655262 0.014055227860808372 441 90 90 60 2.9258198915781617 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 477.4056158176353 9.5646333694458 21.291641235351562 6.507936477661133 337340.0 0.0 79.75283813476562 58.87984085083008 2.464009691322498 276.71710205078125 1088.954345703125 1029.621337890625 82660.0 615.9258422851562 1752.4344177246094 351.9065246582031 32.31606674194336 +sub-10384_ses-V1_task-rest_run-02_bold 0.0008770135746606335 0.013714536108597285 8 46.159426414421795 1.1113722608163266 0.9930675695238086 0.40676465993849 26180.109375 0.41228803465069946 261 59.04977375565611 2.3450549905041216 2.3333665739470097 2.326812407540782 2.374985990024573 0.014244 -0.007639954332262278 0.014122750610113144 442 90 90 60 2.9466621181041135 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 543.2769675448457 9.613434791564941 21.585424423217773 6.540724277496338 337297.0 0.0022624435368925333 81.2131286621094 60.148048400878906 2.3584355601879787 279.34307861328125 1093.3450927734375 1033.86767578125 82650.0 625.0633544921875 1754.7716308593751 350.8584899902344 29.88085174560547 +sub-10384_ses-V3_task-rest_run-01_bold 0.0011960722347629797 0.0115239730248307 7 38.06433071368776 1.12084271739819 0.9854415035746599 0.4049344651343809 17005.326171875 0.21699719728168287 95 21.44469525959368 2.425435534381919 2.4489332360214697 2.4096874042476255 2.4176859628766616 0.008573 -0.010158021003007889 0.01650831289589405 443 90 90 60 2.6080539834109806 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 339.2228207496831 12.392949104309082 25.897193908691406 8.48532772064209 337559.0 0.0022573363967239857 99.87607269287103 65.23973083496094 3.833661947986693 319.98455810546875 1190.4691162109375 1112.230224609375 81927.0 645.3828857421875 1989.5146850585934 426.45721435546875 32.26556396484375 +sub-10384_ses-V3_task-rest_run-02_bold 0.001081354401805869 0.012047075643340859 7 39.79790413961541 1.102069508574661 0.9894726152488698 0.4061953284056086 17101.427734375 0.2470043823540645 120 27.08803611738149 2.428320255441465 2.453862402492269 2.408137404309217 2.422960959522909 0.00731238 -0.00970525573939085 0.016697334125638008 443 90 90 60 2.612995122627143 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 320.1462165315001 12.265772819519043 26.357410430908203 8.465011596679688 337512.0 0.006772009190171957 102.12291107177737 66.29607391357422 3.75849523536281 318.443115234375 1185.966796875 1107.592529296875 82048.0 644.5691864013672 1985.6715087890618 423.8759460449219 30.787826538085938 +sub-10385_ses-V1_task-cuff_run-01_bold 0.000654185520361991 0.005961494502262443 8 40.585660367913846 1.1142521497959172 1.0076605579138322 0.55907693790353 448.5334777832031 0.10285088642722368 0 0.0 2.5527291490761272 2.263004076742964 2.863124886229639 2.5320584842557796 0.0256677 -0.025598663836717606 0.11379461735486984 442 90 90 54 2.7897818816819435 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 58.912934705066704 3.8943469524383545 23.05429458618164 10.395928382873535 270479.0 7.615385055541992 79.56131515502925 38.26676940917969 0.5764520921773753 80.24501037597656 246.36277770996094 235.68553161621094 100453.0 132.05340270996095 400.2660766601562 84.48128509521484 36.536495208740234 +sub-10385_ses-V1_task-cuff_run-02_bold 0.0012155981941309256 0.006861132257336344 7 38.36688922866516 1.0670420030090495 1.006414322420814 0.5602654441410517 445.7944030761719 0.10054715409199771 0 0.0 2.546751371200609 2.2616624101296106 2.856658219819934 2.521933483652283 0.0143485 -0.02583792433142662 0.11512089520692825 443 90 90 54 2.7941990644892405 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 54.20789241027537 3.9123291969299316 23.17812728881836 10.363430976867676 270221.0 7.550790309906006 80.715576171875 38.37702560424805 0.5778986816902227 79.23723602294922 244.26513671875 233.41761779785156 100477.0 131.64288940429688 396.5282287597656 83.53608703613281 34.322608947753906 +sub-10385_ses-V1_task-rest_run-01_bold 0.0006571331828442437 0.006695376613995485 7 42.40352459753396 1.1402162963800901 1.0008200381674202 0.5575183343819436 465.29193115234375 0.10724170504136683 1 0.22573363431151242 2.5674472045085004 2.2760915762229135 2.8802498855491527 2.546000151753435 0.0228579 -0.02582697942852974 0.11191347986459732 443 90 90 54 2.7954883539486426 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 58.10786911657118 3.795194387435913 22.951305389404297 10.338601112365723 270256.0 7.62753963470459 79.1269760131836 38.24882125854492 0.5612655339926835 81.21849060058594 249.53378295898438 238.65011596679688 100525.0 134.00361328125 405.28035888671866 85.36931610107422 36.082008361816406 +sub-10385_ses-V1_task-rest_run-02_bold 0.0004558690744920993 0.005662947607223477 7 37.75438636685519 1.0430469853619908 0.9880435616968322 0.5613202015059882 433.99346923828125 0.10183449908010243 7 1.580135440180587 2.532305538078569 2.254479077081717 2.8314582208212924 2.5109793163326968 0.0123479 -0.025336233898997307 0.11345969885587692 443 90 90 54 2.782531121172484 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 55.7558441111385 3.959183692932129 23.29168701171875 10.417607307434082 270158.0 7.582393169403076 81.7278827667236 38.55461120605469 0.583073709247178 78.9025650024414 243.0044403076172 232.17494201660156 100586.0 130.22291564941406 395.62474060058594 83.43978118896484 36.236732482910156 +sub-10386_ses-V1_task-rest_run-01_bold 0.0005854524886877828 0.006958603755656108 8 38.42647081072562 1.0322370264625849 0.9818085440589566 0.5758541509238554 343.7215270996094 0.09770941245587123 0 0.0 2.6864985952037688 2.4923707342954184 2.8237123877957506 2.7434126635201372 0.00424919 -0.03656425327062607 0.13582397997379303 442 90 90 54 2.1796959103299085 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 19.752629537753556 5.890157699584961 29.29978370666504 12.194570541381836 264347.0 7.893665313720703 115.95860214233394 44.17146301269531 1.608731675103277 96.575439453125 264.5163269042969 243.98191833496094 107240.0 119.27353172302247 478.116435241699 111.93340301513672 33.64051818847656 +sub-10390_ses-V1_task-cuff_run-01_bold 0.0006958956916099773 0.008000407641723356 9 40.361327336090895 1.1048746679772725 0.996072465863636 0.47358995863999953 1759.1851806640625 0.1820977200995587 0 0.0 2.3563452842700614 2.4014165712429456 2.3753624056115785 2.2922568759556605 0.00856749 0.04057663679122925 0.007036773953586817 441 90 90 60 2.383174879752878 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 41.3779480549895 34.97731018066406 75.61318969726562 25.57369613647461 328536.0 0.03628117963671684 309.57030487060547 162.7950439453125 5.133454424852683 308.2939453125 1148.5352783203125 1061.78125 89518.0 605.4960510253907 1995.7696533203118 445.5297546386719 35.645164489746094 +sub-10390_ses-V1_task-cuff_run-02_bold 0.001076606334841629 0.00860850520361991 8 40.623133298321974 1.1054793975510198 1.0216314159410431 0.47495114429483404 1741.9346923828125 0.20254826274175422 0 0.0 2.370455001691408 2.410608237544368 2.3871582384761876 2.3135985290536696 0.00879703 0.04036539047956467 0.00716838613152504 442 90 90 60 2.3770979978768763 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 43.37771925484267 35.56903839111328 76.4449462890625 25.941177368164062 328316.0 0.06108597666025162 311.5147247314453 162.9550018310547 5.23095883398077 309.3472595214844 1145.4923095703125 1059.1561279296875 89705.0 600.9796875 1987.0371826171877 445.56439208984375 34.800209045410156 +sub-10390_ses-V1_task-rest_run-01_bold 0.0007551809954751132 0.008457716561085973 8 41.72657024208616 1.1097520687301603 0.9864007643764174 0.4728466476068884 1745.263427734375 0.20335969648021915 79 17.873303167420815 2.369570281307381 2.415749904006723 2.3884374050920245 2.3045235348233954 0.00883767 0.03924050182104111 0.007049580104649067 442 90 90 60 2.3776803620174545 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 42.07105916970282 35.39796829223633 75.31768035888672 25.932126998901367 328438.0 0.031674209982156754 305.51685943603496 161.86090087890625 5.028246290582709 312.9112548828125 1158.8065185546875 1070.56787109375 89684.0 607.2962829589844 2014.0019287109371 450.2547607421875 34.945213317871094 +sub-10390_ses-V1_task-rest_run-02_bold 0.0006348416289592761 0.00806197685520362 8 40.817782481995465 1.1120455513378684 1.0036618755555566 0.4742608428496484 1739.2589111328125 0.18466701640386773 42 9.502262443438914 2.3673397262974287 2.415049904034539 2.3847457385720516 2.302223536285695 0.00605493 0.04080969840288162 0.007641465403139591 442 90 90 60 2.3718786950775246 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 43.67746139072704 35.16987609863281 76.28723907470703 25.70362091064453 328285.0 0.03393665328621864 313.94434814453103 163.57632446289062 5.088359744249525 311.11163330078125 1149.5758056640625 1061.685546875 89688.0 603.9259399414063 1999.2732788085937 447.61126708984375 35.89850616455078 +sub-10391_ses-V1_task-cuff_run-01_bold 0.0009227375565610859 0.015344073009049773 8 49.17096796698408 1.1878011392743775 0.9924768448752834 0.46625928358727053 3864.212890625 0.2502522624938292 0 0.0 2.414556385315333 2.456116569069363 2.456274902396405 2.3312776844802316 0.0106546 0.030457686632871628 0.011776737868785858 442 90 90 60 2.6745774289631514 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 47.146596978836676 23.05413055419922 59.783424377441406 16.183258056640625 327857.0 0.022624434903264046 252.75476379394553 143.7583465576172 7.087653392429344 275.39666748046875 1071.29638671875 1010.9525146484375 89162.0 579.2718841552734 1734.472900390625 377.9837646484375 30.092119216918945 +sub-10391_ses-V1_task-cuff_run-02_bold 0.0010438826185101581 0.015390471015801356 7 49.46845448169683 1.1903532733257924 0.9905345834615383 0.46648870651624386 3933.997802734375 0.25394216978632506 0 0.0 2.411434163115352 2.4566540690480045 2.445858236143659 2.3317901841543933 0.00766602 0.029803644865751266 0.011980785056948662 443 90 90 60 2.6971678737401708 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 50.48542507910912 22.906707763671875 59.58392333984375 16.133182525634766 328142.0 0.031602710485458374 253.5662658691407 142.58863830566406 7.05566547012902 273.33935546875 1066.4908447265625 1007.5011596679688 89026.0 580.2567596435547 1721.331298828125 373.5382995605469 29.60633659362793 +sub-10391_ses-V1_task-rest_run-01_bold 0.0008751685393258426 0.013047698202247191 5 46.482262929279294 1.1691511406981983 0.9874967881081084 0.4656766060481456 3874.85498046875 0.22732469639682934 117 26.292134831460675 2.3933577780980038 2.4398040697175634 2.4243499036649903 2.3159193609114577 0.00818595 0.029911335557699203 0.010650779120624065 445 90 90 60 2.674976199218441 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 46.02527676266094 23.32849884033203 60.32038879394531 16.429214477539062 328190.0 0.024719100445508957 257.1328079223632 144.820068359375 6.7402249788599455 280.1985168457031 1083.4837646484375 1023.2337036132812 88889.0 583.4332763671875 1756.3379882812496 382.5185241699219 31.526973724365234 +sub-10391_ses-V1_task-rest_run-02_bold 0.0007716478555304741 0.013427478690744921 7 49.93428362339366 1.1897734223755658 1.001164128552036 0.4666162290769043 3940.54931640625 0.255986724036139 178 40.18058690744921 2.4057049983610006 2.445762402814134 2.448041569390235 2.3233110228786322 0.00518894 0.029808182269334793 0.011661194264888763 443 90 90 60 2.683749752931712 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 52.07341805444682 22.8481388092041 59.99884033203125 16.072235107421875 327935.0 0.029345372691750526 256.9643493652343 143.92181396484375 7.221601221433001 275.0980224609375 1066.682861328125 1008.5350341796875 89074.0 576.4164733886719 1724.3216125488277 375.7911376953125 30.845619201660156 +sub-10392_ses-V1_task-cuff_run-01_bold 0.0008556726457399102 0.01434698004484305 4 34.76126354948315 1.1297114040674154 1.2510225544269666 0.49941766591731357 472185.5 0.25101086509079057 1 0.2242152466367713 2.5656168628304834 2.5399076056338026 2.7226861971830987 2.4342567856745494 0.00703079 -0.018513988703489304 0.03640267625451088 446 96 96 54 5.003424563509742 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 44.98952909767978 40.245635986328125 538.960205078125 27.284881591796875 306589.0 0.1559487968683243 2486.9974609375 1100.6138916015625 2.799710784171543 3208.970947265625 20825.8359375 20545.166015625 119457.0 14921.932226562501 27640.76171875 4106.20361328125 43.495086669921875 +sub-10392_ses-V1_task-cuff_run-02_bold 0.0006076126126126127 0.01640320202702703 6 33.5956097685553 1.0924307192099327 0.9958897703386007 0.5000928979832265 598401.625 0.25766055189251663 2 0.45045045045045046 2.598312305349786 2.562298591549296 2.763452394366197 2.469185930133864 0.00641486 -0.018160630017518997 0.036234404891729355 444 96 96 54 5.039571689475148 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 46.29495936464459 34.48210906982422 526.539306640625 23.361310958862305 305694.0 0.12204189822077752 2448.903002929687 1077.9998779296875 2.845294575665222 3115.7001953125 20533.978515625 20273.79296875 119940.0 14692.596337890625 27191.424609375 4022.903076171875 42.340023040771484 +sub-10392_ses-V1_task-rest_run-01_bold 0.0011621348314606742 0.016114678876404494 5 35.36798790333333 1.1232875365765769 1.0387807480630633 0.49884986313062224 439089.78125 0.272586522160152 161 36.17977528089887 2.5591921280005034 2.526994929577465 2.712216338028169 2.438365116395876 0.00545382 -0.019327566027641296 0.03550167754292488 445 96 96 54 4.989349478720448 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 41.905326111648435 41.43927764892578 537.4564819335938 28.1159725189209 307167.0 0.17534815818071367 2479.8714355468755 1094.9630126953125 2.814838516874822 3203.35888671875 20721.494140625 20445.373046875 118950.0 14850.1615234375 27477.851660156244 4097.7861328125 40.938865661621094 +sub-10392_ses-V1_task-rest_run-02_bold 0.0017276233183856505 0.014197075941704036 4 34.5246010212809 1.1298868705842697 1.0415286926966292 0.5003856902574901 595897.4375 0.24973063268959866 147 32.95964125560538 2.5818313478410833 2.545527887323944 2.7540552112676058 2.445910944931701 0.00523364 -0.019072962924838066 0.03761773556470871 446 96 96 54 5.000457673544826 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 45.4244635322153 33.82615661621094 532.732666015625 23.021583557128906 306042.0 0.2327029883861542 2486.884240722656 1092.7646484375 2.909328375968892 3099.25537109375 20461.5078125 20197.68359375 119869.0 14650.426953125 27140.751562499994 4039.150146484375 42.9989013671875 +sub-10393_ses-V1_task-cuff_run-01_bold 0.0004437360178970917 0.030722833780760628 3 65.58614551233184 1.163907884865471 0.9748893981390135 0.456951863820608 216440.171875 0.9816061989580912 238 53.24384787472036 2.6993357539930165 2.705302535211268 2.9137938028169015 2.4789109239508793 0.014302 -0.013256333768367767 0.014538710936903954 447 96 96 54 4.90707844147981 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 26.085619408715502 60.504066467285156 692.4757690429688 41.175506591796875 338903.0 0.38616513907909394 3035.0539550781223 1464.096923828125 2.7185691374340752 2971.288330078125 19691.087890625 19607.92578125 91036.0 13253.590576171875 26079.5400390625 3995.8232421875 28.579998016357422 +sub-10393_ses-V1_task-cuff_run-02_bold 0.0006410290827740492 0.025671257941834457 3 64.38235234154702 1.186569890695067 0.9866883972645759 0.45777652600378793 252068.796875 0.878080592170865 212 47.427293064876956 2.6804568877895725 2.7042974647887323 2.8913622535211267 2.445710945058858 0.0143322 -0.013655579648911953 0.014222281984984875 447 96 96 54 4.8634969388548965 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 26.887803835763457 55.71813201904297 692.8643798828125 37.7680778503418 338622.0 0.20061535388231277 3058.550720214844 1481.021484375 2.808624208594166 2950.9228515625 19578.072265625 19512.9375 91273.0 13001.75234375 25919.314453125 4012.098876953125 31.850204467773438 +sub-10393_ses-V1_task-rest_run-01_bold 0.0005629910714285714 0.029109363839285713 2 64.92793296955256 1.169487712147651 0.9843431186800898 0.4565017794631619 221248.703125 0.9269951420226286 393 87.72321428571429 2.6579024181705795 2.6676777464788732 2.870756056338028 2.435273451694837 0.0150448 -0.013019006699323654 0.014749472960829735 448 96 96 54 4.917588150325123 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 27.511297010971685 59.98693084716797 687.38427734375 40.80882263183594 339160.0 0.3617917984724045 3003.1484741210934 1466.1236572265625 2.815443523670635 2943.97607421875 19747.0859375 19660.763671875 90871.0 13242.06396484375 26049.828125 3998.028076171875 29.812715530395508 +sub-10393_ses-V1_task-rest_run-02_bold 0.0005944642857142857 0.026648332366071427 2 67.09127204266221 1.1730462067114087 0.9807506635570474 0.4591474101410455 239656.453125 0.9773268907501654 399 89.0625 2.6642455858654155 2.6872608450704227 2.863977464788732 2.4414984477370916 0.0168597 -0.013744792900979519 0.01372025441378355 448 96 96 54 4.905079504928111 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 25.516003517508974 56.558677673339844 699.9400024414062 38.373924255371094 338412.0 0.24222350046038624 3079.1104248046922 1489.115234375 2.734222916945792 2935.2294921875 19455.904296875 19369.83984375 91366.0 13051.166015625 25757.666015625 3948.913330078125 30.894542694091797 +sub-10394_ses-V1_task-cuff_run-01_bold 0.007440344827586207 0.012620783103448278 6 53.65898622785715 1.0319333328571427 1.0141116521428573 0.54832967883581 484.72882080078125 0.5694319457063236 4 13.793103448275861 2.7578180382222555 2.4539457358222907 3.0335748794565642 2.7859334993879097 0.00878601 -0.028224851936101913 0.14746519923210144 29 90 90 54 2.4824785559015696 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 28.688203756095913 3.9365644454956055 24.34688377380371 10.448275566101074 276964.0 7.482758522033691 92.10344696044922 37.94416809082031 1.1724768299003179 89.56961822509766 257.4272766113281 244.72413635253906 95437.0 116.51724243164062 432.7930908203125 98.58004760742188 27.432292938232422 +sub-10394_ses-V1_task-cuff_run-02_bold 0.0021786363636363635 0.005625581363636363 10 41.45242426969231 1.0833277607692307 1.0310588261538463 0.5520743062171032 469.8747253417969 0.20156423021938352 0 0.0 2.714398594216815 2.4224124037419794 2.973695715169282 2.747087663739184 0.00163923 -0.03304833173751831 0.14256954193115234 66 90 90 54 2.4403689691496027 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 24.07878744986058 3.908679246902466 25.48458480834961 10.636363983154297 275822.0 7.863636493682861 98.56060791015625 39.25185775756836 1.4944232559226744 91.02281188964844 260.5035095214844 246.98486328125 96112.0 117.15151977539062 440.7341064453125 101.20747375488281 35.962589263916016 +sub-10394_ses-V1_task-rest_run-01_bold 0.001953205417607223 0.010556972279909706 7 42.68368755533936 1.0479988025339355 0.993231287443438 0.5474274849957437 498.585205078125 0.24631067843854915 134 30.248306997742663 2.7637458165668014 2.446766569440898 3.0343082127607577 2.8101626674987474 0.0027877 -0.028256159275770187 0.14754606783390045 443 90 90 54 2.464579452638542 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 27.670459354907337 3.6680188179016113 24.24888038635254 10.273138046264648 276644.0 7.422122001647949 91.52686614990213 38.398521423339844 1.2990093607541349 89.59201049804688 257.5452575683594 244.74041748046875 95811.0 114.92889785766602 434.224609375 99.30259704589844 28.642478942871094 +sub-10394_ses-V1_task-rest_run-02_bold 0.0023755429864253394 0.01148187798642534 8 40.82735145539686 1.0586096499773243 1.013536065691609 0.5525700808310812 446.04730224609375 0.19825669091660253 82 18.552036199095024 2.7731680373355254 2.4868665678474677 3.0550623786027282 2.777575165556381 0.00758141 -0.032321713864803314 0.14203889667987823 442 90 90 54 2.4330072739730757 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 22.88219874908955 4.6423563957214355 25.51108169555664 10.909502983093262 274891.0 7.239819526672363 98.37556838989258 38.8676643371582 1.2096026804989748 90.98550415039062 258.3895568847656 245.05657958984375 97052.0 114.18348808288575 438.71801452636714 100.72116088867188 27.791030883789062 +sub-10395_ses-V1_task-cuff_run-01_bold 0.0024729504504504506 0.01251131509009009 6 40.39490643367944 1.0909343990744922 1.0776511078781037 0.5101327145011927 1330.3419189453125 0.20429781746526296 2 0.45045045045045046 2.6095035782125264 2.6879540598569687 2.7006707260183203 2.439885948762291 0.0112124 0.04721398651599884 0.024672774598002434 444 90 90 60 2.0741977741813806 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 18.162919619529116 41.23904800415039 113.02555084228516 31.09910011291504 309924.0 0.28828829526901245 580.9501098632812 238.6998291015625 10.625164618776667 375.16192626953125 1258.104248046875 1147.330078125 104194.0 626.8396575927734 2217.568395996094 553.141357421875 27.64175796508789 +sub-10395_ses-V1_task-rest_run-01_bold 0.0009558465011286683 0.011097111941309256 7 38.07528462977374 1.0303856186425342 1.0064177068552018 0.5099413771691951 1305.8824462890625 0.1794501962770574 39 8.803611738148984 2.6174188552957998 2.6911373930638076 2.7193207252772362 2.4417984475463563 0.00503118 0.05183613300323486 0.02013126201927662 443 90 90 60 2.0699161470051415 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 17.87524237867127 41.395729064941406 114.1736068725586 31.537246704101562 309594.0 0.268623024225235 587.530834960937 240.73536682128906 10.07316897601429 383.15234375 1272.39306640625 1159.91650390625 104272.0 630.6026092529297 2253.8159301757814 560.3661499023438 29.94636344909668 +sub-10395_ses-V1_task-rest_run-02_bold 0.001751258426966292 0.0142548495505618 5 40.96354916716215 1.0557212171621624 0.9867882788063066 0.5120193958086815 1261.49267578125 0.21318336628677984 79 17.752808988764045 2.6255257940669345 2.682445726742517 2.7253998917023385 2.4687317637559483 0.0166315 0.05456938222050667 0.018706558272242546 445 90 90 60 2.102766726866786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 17.482354448238798 41.47288131713867 113.5926513671875 31.525842666625977 309635.0 0.28314608335494995 584.3779785156246 238.26840209960938 9.784168386412258 369.99432373046875 1238.9957275390625 1133.40234375 104348.0 613.6654907226563 2182.2936279296864 539.002685546875 25.270599365234375 +sub-10396_ses-V1_task-cuff_run-01_bold 0.0009272234762979684 0.01329227243792325 7 38.4365599145249 1.0446001837104069 0.9879491789819008 0.4601807260261266 3334.861083984375 0.15767592092601404 0 0.0 2.445336929570462 2.4310665700647602 2.522945733080477 2.3819984855661485 0.00675414 0.012236286886036396 0.011066222563385963 443 90 90 60 2.612266809603255 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 105.14339073304131 23.781877517700195 44.939762115478516 16.95033836364746 323153.0 0.009029345586895943 166.07042846679664 97.88790130615234 5.22965816374748 275.3790588378906 1046.08349609375 984.497802734375 93770.0 554.2121063232422 1724.1729858398442 376.8728942871094 30.058340072631836 +sub-10396_ses-V1_task-cuff_run-02_bold 0.0012538095238095238 0.013529600816326532 9 38.1200578255227 1.043409156090909 0.9902711387045452 0.46062325712694185 3401.81787109375 0.15760725092587421 0 0.0 2.453904978800258 2.434979069909292 2.514612400078281 2.4121234664132016 0.00650171 0.013842655345797539 0.0106441555544734 441 90 90 60 2.615496778935161 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 95.25846324659774 23.698102951049805 45.310489654541016 16.800453186035156 323381.0 0.01814058981835842 165.59637451171875 99.8326416015625 5.251761048614338 273.6107177734375 1040.50537109375 978.9115600585938 93778.0 549.7454498291016 1717.1002624511716 374.27166748046875 29.879070281982422 +sub-10396_ses-V1_task-rest_run-01_bold 0.0007025282167042889 0.010963093453724603 7 38.69917267156108 1.061236319117648 0.9871045200226245 0.45949860870501014 3427.016845703125 0.1515275966786488 20 4.514672686230249 2.4266036008955596 2.416324903983875 2.5011874006117423 2.362298498091063 0.0117496 0.011734615080058575 0.012469745241105556 443 90 90 60 2.6005257518301845 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 136.85299986895802 23.60449981689453 45.60922622680664 16.80812644958496 323285.0 0.011286681517958641 167.61580505371091 102.76447296142578 5.529639935862583 278.0498046875 1053.831298828125 991.26416015625 93577.0 558.2266723632813 1742.4253417968748 381.17633056640625 31.354604721069336 +sub-10396_ses-V1_task-rest_run-02_bold 0.0016254401805869073 0.013834260880361176 7 38.646240087647044 1.0514082523981898 1.0257964724208144 0.4605180938072026 3461.3134765625 0.14642082098026749 28 6.320541760722348 2.4449522051349772 2.4278124035274025 2.5138290667760743 2.393215145101455 0.00901022 0.013436461798846722 0.010628688149154186 443 90 90 60 2.6245257491083676 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 101.39848485121838 23.376922607421875 44.859130859375 16.63431167602539 323077.0 0.029345372691750526 166.38420715332035 97.10369873046875 5.292129803182895 273.7157897949219 1042.258544921875 981.15576171875 93840.0 552.7716979980469 1716.2425354003913 373.83917236328125 28.165245056152344 +sub-10397_ses-V1_task-rest_run-01_bold 0.0012586877828054297 0.024024889819004528 8 77.38136757759636 1.1349169799546472 0.9571982527437642 0.4372093340209884 4760.37353515625 0.7194623326319928 357 80.76923076923077 2.378523057909016 2.3560665730449926 2.470849901817246 2.3086526988648104 0.00545431 0.007204408757388592 0.014463133178651333 442 90 90 60 2.932263498476847 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 83.15014624497371 20.521631240844727 46.33356857299805 14.669683456420898 339320.0 0.0859728530049324 187.25588760375973 112.75210571289062 2.961173754239141 257.2113952636719 1041.638427734375 1009.6358032226562 79741.0 526.4525146484375 1657.142578125 344.31744384765625 21.839523315429688 +sub-10397_ses-V1_task-rest_run-02_bold 0.0011522972972972973 0.021870629054054055 6 76.93661685862308 1.1412387025733643 0.9673464318510158 0.4367783569776826 4952.35302734375 0.7072792055232761 376 84.68468468468468 2.373149448855037 2.3472124067301587 2.472862401737277 2.2993735380976754 0.00597818 0.0070131211541593075 0.013662268407642841 444 90 90 60 2.920473846591219 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 77.7550829863451 20.25889015197754 46.072166442871094 14.295045852661133 339468.0 0.022522523999214172 189.0229743957513 110.81790924072266 3.0787473578204114 259.60894775390625 1039.7852783203125 1008.8243408203125 79697.0 528.4017944335938 1659.907666015625 345.4295654296875 22.517032623291016 +sub-10398_ses-V1_task-rest_run-01_bold 0.0018675675675675677 0.01703200033783784 6 56.1113712837697 1.0763450496839735 0.9923692705643345 0.43646896499326154 5931.9482421875 0.5217306850050181 310 69.81981981981981 2.5650493801522813 2.558191565013267 2.5301707327933816 2.6067858426501958 0.00701699 -0.004853053949773312 0.015623248182237148 444 90 90 60 3.2954058640607706 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 109.83815866319935 20.766450881958008 45.00925827026367 14.466217041015625 340872.0 0.09684684872627258 178.02860565185563 96.41240692138672 1.835522291429628 274.6586608886719 1109.280029296875 1088.8963623046875 79003.0 612.6220886230468 1674.7257568359369 330.426513671875 24.45779037475586 +sub-10398_ses-V1_task-rest_run-02_bold 0.001080741573033708 0.01918700429213483 5 57.13953165090095 1.0792101756756758 0.9693924795270276 0.4381918300918483 5656.24609375 0.5100436248076448 297 66.74157303370787 2.5276785536170197 2.5178248999506274 2.48516656791502 2.5800441929854117 0.0111102 -0.004137182142585516 0.01502489484846592 445 90 90 60 3.3574884896671615 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 98.4144666827058 21.41277503967285 45.61990737915039 14.835955619812012 340937.0 0.07191011309623718 182.0301086425783 97.0999526977539 1.9692629081619577 264.96429443359375 1108.203857421875 1087.09326171875 79094.0 622.7011108398438 1664.0945556640604 323.7796325683594 24.554931640625 +sub-10401_ses-V1_task-rest_run-01_bold 0.0005497078651685393 0.01114410793258427 5 49.125836492792764 1.0843207037162157 0.9955828009459463 0.5649618314554391 318.72552490234375 0.28160601594582074 175 39.325842696629216 2.7245777651004275 2.359141572922803 2.9279415503207225 2.8866501720577578 0.0139595 -0.02714274637401104 0.13929355144500732 445 90 90 54 2.461637373163594 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 33.75890671204392 5.7105183601379395 27.173763275146484 11.842697143554688 278953.0 7.80898904800415 97.66112365722594 41.36954116821289 1.013825409623509 82.91744995117188 240.94805908203125 227.1011199951172 93682.0 114.93719253540038 412.30540771484374 92.25563049316406 31.163583755493164 +sub-10402_ses-V1_task-cuff_run-01_bold 0.0009435067873303168 0.008756478348416289 8 36.94847138528345 1.0327702260770988 0.988742989659863 0.5087590545702061 517.201904296875 0.16249699402727835 0 0.0 2.715691652346216 2.4702707351735937 2.8504373867337947 2.826366835131258 0.00520936 -0.020353073254227638 0.07904301583766937 442 90 90 54 2.4627445290614687 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 54.41182779912814 3.9815590381622314 20.395280838012695 10.25339412689209 294492.0 7.214932441711426 65.00101966857913 30.59504508972168 0.8598204328293049 85.92552185058594 262.0935974121094 246.00001525878906 80918.0 122.41493949890138 449.6181152343746 99.88794708251953 31.081350326538086 +sub-10402_ses-V1_task-cuff_run-02_bold 0.0029511738148984197 0.010440234198645598 7 36.86736478411763 1.0334343811990943 1.0015860571719448 0.5088726814279614 507.0330505371094 0.16446888312566 0 0.0 2.725370818846955 2.486879067846971 2.85626238650233 2.8329710021915635 0.0112002 -0.02100668102502823 0.0788620188832283 443 90 90 54 2.4561225526768036 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 61.251464912148606 4.072972297668457 20.404403686523438 10.313770294189453 294298.0 7.1896162033081055 64.89390563964844 30.787736892700195 0.8935858375161985 85.52574157714844 261.3573913574219 245.16705322265625 81155.0 122.67697677612306 450.1480834960938 99.81812286376953 29.244699478149414 +sub-10402_ses-V1_task-rest_run-01_bold 0.0006551809954751131 0.009125814796380092 8 39.089451960634925 1.0605859414739223 0.9751992545804985 0.5070630074557972 534.6736450195312 0.17917918719890694 62 14.027149321266968 2.731309708615095 2.472441568420666 2.8548373865589545 2.866650170865665 0.00559591 -0.02105165459215641 0.08013312518596649 442 90 90 54 2.4774846822896692 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 54.31618898222993 3.7199223041534424 20.085832595825195 10.144796371459961 294940.0 7.38687801361084 63.515951728820774 29.820247650146484 0.7808462931507947 86.91336059570312 264.8402404785156 248.98756408691406 80614.0 124.0294189453125 454.3084991455078 100.49951934814453 31.08187484741211 +sub-10402_ses-V1_task-rest_run-02_bold 0.0021394675925925925 0.00886762738425926 6 37.79338153389793 1.0493647043155454 0.9967072929930403 0.5098345592103204 526.6752319335938 0.15160100577617158 37 8.564814814814815 2.686865264165822 2.4347082365867205 2.8127165548993527 2.8131710010113915 0.0152679 -0.021040180698037148 0.07976516336202621 432 90 90 54 2.467801016612072 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 54.85149058089155 3.552067518234253 20.458398818969727 10.050926208496094 294816.0 7.483796119689941 64.81076622009277 30.728134155273438 0.9758737930139607 83.99009704589844 260.06292724609375 243.52198791503906 80616.0 123.83506965637207 446.6712951660156 98.67913818359375 30.85011863708496 +sub-10405_ses-V1_task-rest_run-01_bold 0.0023088036117381487 0.013036090225733633 7 61.93051781812215 1.241498519728507 1.0180927040271495 0.47370694347228326 2923.373291015625 0.3754447629687093 225 50.79006772009029 2.5186424742782534 2.50577073376295 2.628220728897225 2.4219359601745856 0.00555523 0.021936817094683647 0.012120853178203106 443 90 90 60 2.0161489056687887 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 53.697850048108336 27.834768295288086 58.6126823425293 20.164785385131836 309171.0 0.09029345214366913 236.20655059814453 127.32329559326172 6.31343085944278 370.2287902832031 1221.4736328125 1101.2347412109375 105863.0 584.0246093750001 2259.479370117187 546.2044677734375 26.592975616455078 +sub-10405_ses-V1_task-rest_run-02_bold 0.0018287104072398188 0.010877392850678734 8 60.55499327267571 1.2641603249433113 1.0040491898639463 0.4739835989604274 3041.866455078125 0.31880807711484016 233 52.71493212669683 2.4873063694282207 2.483174901327495 2.5820540640650567 2.396690142892111 0.00614967 0.02315087616443634 0.011662651784718037 442 90 90 60 2.0238202299789494 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 53.67766837619569 27.374473571777344 58.83620071411133 19.656108856201172 308588.0 0.022624434903264046 241.31493988037045 130.07052612304688 6.38086650527584 362.5030517578125 1222.958251953125 1100.9208984375 106151.0 588.8948059082031 2263.5748291015625 543.97900390625 29.56031608581543 +sub-10406_ses-V1_task-rest_run-01_bold 0.0009713963963963965 0.014252499977477478 6 56.853509657562064 1.026825719277652 0.9662885655981935 0.5274862840898582 436.8588562011719 0.4566265288461148 261 58.78378378378378 2.9432735999757007 2.5967373968149268 3.0374332126365813 3.1956501904755945 0.00806679 -0.02995857037603855 0.08266738057136536 444 90 90 54 2.3853077782188117 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 46.985174693072125 4.294203281402588 19.53895378112793 10.671171188354492 281524.0 7.594594955444336 53.576576232910156 25.06649398803711 0.4279168171721901 91.93468475341797 254.50694274902344 237.31756591796875 92693.0 121.14009094238281 441.7599243164062 99.4908447265625 23.66507911682129 +sub-10407_ses-V1_task-rest_run-01_bold 0.000857398190045249 0.015371842873303168 8 54.415988965328765 1.0152933590249429 0.9666478506575968 0.5323481380290208 467.1501159667969 0.5404649696924729 339 76.69683257918552 2.729141651652401 2.4091749042679904 2.9566957158448015 2.8215543348444103 0.00774553 -0.03345762938261032 0.1373884230852127 442 90 90 54 2.428493992100257 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 142.56785467873783 3.6394200325012207 22.007802963256836 10.239819526672363 280408.0 7.463801383972168 68.38235473632812 38.814453125 0.8878527174019433 89.55487823486328 252.50375366210938 236.05430603027344 92954.0 125.82342147827148 435.641645812988 97.20140838623047 23.397680282592773 +sub-10408_ses-V1_task-rest_run-01_bold 0.0016280952380952382 0.010812171451247165 9 40.96840025722728 1.1083770275909086 0.994322325295455 0.3877703777939483 8827.7578125 0.21530421382587253 139 31.519274376417233 2.3211675099887015 2.327279074188905 2.3545290731060873 2.281694382671113 0.00917038 -0.007852895185351372 0.0071438755840063095 441 90 90 60 2.4521938691156318 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 428.2990194915138 16.792739868164062 30.99968147277832 11.55555534362793 351302.0 0.0022675737272948027 120.86621856689453 68.61461639404297 4.618504077850122 305.5202941894531 1173.31689453125 1091.061279296875 70603.0 608.1988830566406 2015.9061645507809 444.9295654296875 32.98760986328125 +sub-10408_ses-V1_task-rest_run-02_bold 0.0012378054298642534 0.013468724819004524 8 42.1928142579592 1.0764119112925166 0.9642216929251706 0.38875410415796896 8662.134765625 0.22725064581238824 153 34.61538461538461 2.3335772282094127 2.339374907041593 2.362004072809057 2.2993527047775872 0.00781084 -0.007403775118291378 0.006477563641965389 442 90 90 60 2.478010002640509 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 339.74443336113313 16.976131439208984 31.23117446899414 11.742081642150879 351337.0 0.009049774147570133 122.4122253417969 66.79649353027344 4.676055775805317 302.4507751464844 1176.76708984375 1094.1312255859375 70511.0 619.3020629882812 2010.8722534179688 441.5331115722656 30.12966537475586 +sub-10411_ses-V1_task-cuff_run-01_bold 0.0005431683168316832 0.036378653465346536 2 79.16691362 1.0703464517549666 1.0006643339072843 0.43774935504359463 238131.234375 1.0919570225840645 163 53.79537953795379 2.849903533675704 2.8023752112676057 3.148187042253521 2.5991483475059844 0.00793266 -0.021849125623703003 0.033364295959472656 303 96 96 54 3.8757490228257154 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 72.99404784250966 55.85398864746094 551.3358764648438 38.14002227783203 342244.0 0.3931620031595231 2302.7293701171875 1130.52099609375 1.5811142204348432 4052.71923828125 19656.91015625 19422.5234375 88356.0 11208.373046875 27997.34619140625 5011.26708984375 19.113054275512695 +sub-10411_ses-V1_task-cuff_run-02_bold 0.0007141741071428571 0.04532497678571429 2 78.05542418042506 1.0633926614093958 0.9936680572483222 0.4456085771857845 205282.921875 1.0869651484861322 235 52.455357142857146 2.906442188072545 2.8505780281690143 3.215396056338028 2.653352479710592 0.00862382 -0.022543033584952354 0.034687019884586334 448 96 96 54 3.9065457893112425 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 63.04450640992795 59.128299713134766 564.7312622070312 40.83882522583008 338624.0 0.827354109287262 2352.34953613281 1124.21044921875 1.26214316007367 4020.03857421875 19332.6875 19159.78515625 91562.0 11064.841796875 27543.5470703125 4904.5068359375 17.266576766967773 +sub-10411_ses-V1_task-rest_run-01_bold 0.0004265324384787472 0.03395723959731543 3 78.23455130582953 1.082470639461883 1.0054823923318388 0.43252911520542686 308708.40625 1.0895736432686487 391 87.47203579418344 2.8263622099183885 2.7794884507042252 3.1308664788732394 2.5687317001777012 0.0107528 -0.020915400236845016 0.030895786359906197 447 96 96 54 3.839292328702476 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 65.06868189222538 49.22502899169922 529.5031127929688 33.60163497924805 343890.0 0.38952749222517014 2174.0442626953118 1070.32861328125 2.1780034537830835 4003.005859375 19708.7734375 19462.384765625 86795.0 11212.51279296875 28084.14609375 5069.234375 19.852989196777344 +sub-10411_ses-V1_task-rest_run-02_bold 0.0018659955257270696 0.05016245123042506 3 78.32311747434976 1.0881924849551574 1.0362917552242148 0.4424400202447744 260861.609375 1.1739875352429763 400 89.48545861297539 2.8910185052106327 2.8287864788732393 3.221570704225352 2.622698332533307 0.0138428 -0.020225156098604202 0.03176995739340782 447 96 96 54 3.9957635135777725 0.7999997138977051 2.21875 2.21875 2.4000015258789062 3 58.3205500236281 52.0308952331543 527.5737915039062 35.87235641479492 338988.0 0.6158005207777023 2218.383471679687 1082.9803466796875 1.4798833607318 3763.07763671875 19084.158203125 18889.716796875 91008.0 11072.418164062501 26982.0982421875 4727.41015625 17.495718002319336 +sub-10413_ses-V1_task-cuff_run-01_bold 0.0011985458612975392 0.009502421454138703 3 31.54488012733182 1.1853429702690585 1.0104240778251121 0.45190622294361127 1318126.375 0.11643298795747467 0 0.0 2.6150629863075885 2.6617149295774647 2.7152630985915494 2.468210930753752 0.018642 -0.01568124257028103 0.03846542537212372 447 96 96 54 4.484265233435998 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 209.46726445096584 25.958892822265625 494.1543273925781 17.609642028808594 329322.0 0.0759770967066288 2261.644177246094 1263.57958984375 1.8116720010059018 3821.346435546875 21322.240234375 21250.126953125 99237.0 13568.827539062499 28970.428125 4738.79638671875 48.33660125732422 +sub-10413_ses-V1_task-cuff_run-02_bold 0.0009386261261261261 0.007885027252252253 6 31.076198560632072 1.181662389774267 1.0080753341534998 0.45288400878509233 2312123.75 0.10215135699959031 0 0.0 2.6176319506183874 2.664770704225352 2.72504338028169 2.4630817673481196 0.0150547 -0.01486111804842949 0.036517899483442307 444 96 96 54 4.536899731030651 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 109.70297570217284 18.897600173950195 475.8553771972656 12.825400352478027 328387.0 0.0803393118083477 2229.819262695313 1115.1929931640625 1.8276332100707915 3793.63330078125 21257.123046875 21201.2734375 99842.0 13669.17626953125 28772.844335937498 4673.0517578125 52.83464050292969 +sub-10413_ses-V1_task-rest_run-01_bold 0.000779263392857143 0.008611182589285714 2 31.271527425033568 1.1699956119015658 0.9945157590827739 0.45082528177753384 1128343.75 0.11364023036632206 6 1.3392857142857142 2.602385279487811 2.6613318309859153 2.698600563380282 2.4472234440972365 0.0167677 -0.016047261655330658 0.039097897708415985 448 96 96 54 4.502594200577813 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 229.27213074328847 28.293466567993164 496.657958984375 19.23809814453125 329774.0 0.11452104113996031 2258.9189819335925 1318.5423583984375 1.838523107716342 3832.94970703125 21459.970703125 21361.578125 98701.0 13773.185546875 29161.36328125 4744.25830078125 49.625450134277344 +sub-10413_ses-V1_task-rest_run-02_bold 0.0015337861915367484 0.00904517289532294 1 30.938915584933024 1.1835611611830348 1.0202898279017865 0.4528142008595471 1576209.875 0.1159785930954992 10 2.2271714922048997 2.6195777171042303 2.66552338028169 2.728536338028169 2.464673433002832 0.0184933 -0.014609933830797672 0.03778313472867012 449 96 96 54 4.538935218527165 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 152.3968443939282 23.189010620117188 480.12939453125 15.754977226257324 328698.0 0.09047466069459917 2234.1096435546856 1168.1290283203125 1.8739569726504373 3735.39306640625 21158.0234375 21096.80859375 99638.0 13528.364013671875 28635.45595703125 4647.94091796875 50.536380767822266 +sub-10414_ses-V1_task-cuff_run-01_bold 0.0007253378378378379 0.010097065765765766 6 49.121207226546304 1.0606485959367946 0.9960542676975173 0.5876838493373656 220.8267059326172 0.28158359356572027 0 0.0 2.80390415253466 2.458112402323389 3.0156873801673503 2.937912675113241 0.0114302 -0.038657888770103455 0.16515685617923737 444 90 90 54 2.017489904452915 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 14.988401783051085 9.616880416870117 35.62715530395508 15.295045852661133 261741.0 8.326577186584473 140.61712646484375 50.99711990356445 1.7299062876888023 104.34313201904297 268.9273376464844 246.2747802734375 109225.0 111.4779281616211 503.4860595703125 122.0693359375 29.464237213134766 +sub-10414_ses-V1_task-cuff_run-02_bold 0.0008850225225225226 0.008042211824324325 6 46.314505747155756 1.0598497676072227 1.0044871800902933 0.5894048500238378 216.25543212890625 0.2286606287204672 0 0.0 2.784373596977835 2.4478540693976854 2.9908290478217983 2.9144376737140223 0.0130956 -0.039104852825403214 0.16516061127185822 444 90 90 54 2.008989715866583 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 14.445875359681708 9.773821830749512 35.91151809692383 15.346847534179688 261520.0 8.288288116455078 141.56611099243145 50.9755744934082 1.762651977215902 103.58515930175781 267.122314453125 244.31532287597656 109394.0 110.80777549743652 501.802597045898 121.61048126220703 31.2017765045166 +sub-10414_ses-V1_task-rest_run-01_bold 0.0006225225225225225 0.009109447049549548 6 43.71948784683976 1.036909816049661 0.9920284986230247 0.5853459440549862 227.54478454589844 0.1989861944831506 89 20.045045045045047 2.794622208038503 2.4495790693291397 3.009074880430107 2.925212674356262 0.00930951 -0.03756674379110336 0.15909895300865173 444 90 90 54 2.025696085776081 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 15.491791708487881 9.366439819335938 34.75996398925781 15.065315246582031 262141.0 8.292793273925781 135.2049560546875 49.56468963623047 1.7566651451697224 104.3848876953125 269.06292724609375 246.60134887695312 108848.0 112.28457336425782 502.6799606323242 121.73603820800781 30.754806518554688 +sub-10414_ses-V1_task-rest_run-02_bold 0.0007793905191873588 0.008103607652370204 7 43.00332234219459 1.0466515360859736 1.0036976473755668 0.5907736017670835 209.39205932617188 0.19103161259961482 81 18.284424379232505 2.7792652635940307 2.443429069573519 2.987583214617443 2.9067835065911316 0.0122553 -0.040877655148506165 0.16715608537197113 443 90 90 54 2.0059749423352424 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 4 14.194404702678373 10.12721061706543 36.3702278137207 15.591422080993652 261531.0 8.284424781799316 143.50112915039062 51.55158615112305 1.79802532227579 103.16802978515625 267.23773193359375 243.7720184326172 109414.0 111.87652435302735 502.7978607177733 121.52240753173828 31.653329849243164 +sub-10415_ses-V1_task-rest_run-01_bold 0.0009372624434389141 0.007646161900452489 8 40.247202486099816 1.038826468594104 0.9820876828798187 0.5263084072782495 498.4558410644531 0.19157569195395355 59 13.34841628959276 2.651705539619984 2.457595735677253 2.7967123888686345 2.7008084943140642 0.00620003 -0.024982137605547905 0.11684644222259521 442 90 90 54 2.3670700287196174 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 55.48978872664371 3.7366943359375 22.434478759765625 10.359728813171387 282004.0 7.7081451416015625 71.9269260406493 38.841949462890625 1.207180428733568 91.92805480957031 266.6455993652344 248.61766052246094 90559.0 123.6108627319336 462.10680541992184 105.03123474121094 32.709678649902344 +sub-10416_ses-V1_task-cuff_run-01_bold 0.0007398430493273543 0.02422745650224215 4 44.136297298898846 1.1266550307191017 0.9999193322696622 0.4485654678431023 608750.875 0.35690557417475804 2 0.4484304932735426 2.4986795738365006 2.520509295774648 2.6692642253521126 2.3062652003827413 0.00448406 -0.016291413456201553 0.03177245333790779 446 96 96 54 4.966432206273309 0.7999997138977051 2.21875 2.21875 2.4000015258789062 4 114.24062820960717 31.094802856445312 480.1820983886719 21.08755874633789 337420.0 0.11189988963305951 2014.4657653808592 1206.0343017578125 2.7235199952464173 2422.2548828125 16835.771484375 16669.021484375 92347.0 11653.71142578125 22441.851171875 3356.319091796875 34.32122039794922 +sub-10416_ses-V1_task-rest_run-01_bold 0.0007953483146067415 0.02336802 5 43.47345363340093 1.12734224903153 1.0140666977702688 0.4491960080625022 559317.4375 0.3525075701745346 230 51.68539325842696 2.4558070179191707 2.4792833802816903 2.6318557746478874 2.2562818988279347 0.00399737 -0.017143219709396362 0.03176238760352135 445 96 96 54 5.0183920581361185 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 108.24287976101256 31.687070846557617 475.3503723144531 21.507843017578125 337683.0 0.13624028265476226 1997.4143676757808 1175.16455078125 2.7017067283774585 2359.89892578125 16562.1015625 16357.6982421875 92075.0 11610.60634765625 22074.676953125003 3259.531982421875 35.10682678222656 +sub-10417_ses-V1_task-cuff_run-01_bold 0.0018963348416289592 0.027282389140271493 8 52.71440201489799 1.085431848253968 1.031635104603175 0.4170170672839339 7124.990234375 0.3960992807723838 12 2.7149321266968327 2.376096524640922 2.301312408554061 2.4541665691468486 2.3728105962218566 0.00594403 -0.01419124472886324 0.030326705425977707 442 90 90 60 2.9940582544362435 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 676.3094627798087 15.339232444763184 27.340396881103516 11.072399139404297 338784.0 0.1085972934961319 95.09853096008284 71.63728332519531 2.8591227725853665 238.00628662109375 971.4995727539062 925.8111572265625 80796.0 547.3263702392578 1534.2511901855469 309.2142333984375 21.891263961791992 +sub-10417_ses-V1_task-cuff_run-02_bold 0.002238639455782313 0.024326300680272108 9 50.332202659886306 1.0793163343636365 1.0141966055227267 0.41512222859787934 7397.86474609375 0.3190802498091862 2 0.45351473922902497 2.3775312464611993 2.2985915753288437 2.4622332354929752 2.3717689285617785 0.00441337 -0.014432577416300774 0.03139187768101692 441 90 90 60 2.9094259269138147 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 694.8642760837736 14.987394332885742 27.024394989013672 10.750567436218262 338918.0 0.08616780489683151 94.15261154174789 72.67166900634766 2.9679730052806708 242.98876953125 964.86669921875 916.5170288085938 80577.0 536.2176879882812 1542.1999755859372 315.0144958496094 23.000301361083984 +sub-10417_ses-V1_task-rest_run-01_bold 0.0019836507936507935 0.023772899773242633 9 45.86877626090906 1.0656652064545453 0.9740427552045459 0.4168645644230099 7315.21044921875 0.2642849317248747 156 35.374149659863946 2.3552256835935808 2.287666575762964 2.4309999034007426 2.3470105716170355 0.00431436 -0.013702468946576118 0.0284856166690588 441 90 90 60 3.0238778875728842 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 616.3999690168213 15.226089477539062 26.96265983581543 10.886621475219727 338478.0 0.07709750533103943 95.14999923706047 69.13626098632812 2.636160113140148 240.08067321777344 973.5418090820312 931.5056762695312 80873.0 543.6920776367188 1529.5913574218748 308.0481262207031 23.799755096435547 +sub-10419_ses-V1_task-rest_run-01_bold 0.0004425507900677201 0.0072143884424379235 7 38.36679034011307 1.0165987247963797 0.9949441093212668 0.5834109906458571 272.2056579589844 0.1537591841674437 35 7.900677200902934 2.680163873473202 2.3025165751728784 2.987316547961372 2.750658497285356 0.00744354 -0.03355700895190239 0.13722530007362366 443 90 90 54 2.3800376401683727 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 24.138297768031038 7.245675086975098 30.132078170776367 13.29345417022705 266811.0 8.094808578491211 112.04289245605469 45.11798858642578 0.956265223809551 87.86843872070312 249.77728271484375 235.73251342773438 104602.0 107.8218963623047 434.2384979248046 99.04523468017578 33.458778381347656 +sub-10420_ses-V1_task-cuff_run-01_bold 0.001365388127853881 0.010388070410958903 12 43.041007157505724 1.094327136956522 1.0083506404347828 0.4487998723972548 3174.5068359375 0.20582212557551924 0 0.0 2.453140962371728 2.454833235787025 2.5428082322912124 2.361781419036947 0.00596913 0.014813886024057865 0.016786392778158188 438 90 90 60 2.268583530995888 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 55.012926401611224 25.302398681640625 46.3243522644043 17.881277084350586 328360.0 0.04794520512223244 178.23093338012686 88.23418426513672 5.573846716818744 320.98675537109375 1087.54296875 1006.9154663085938 89560.0 523.7981597900391 1906.3729492187501 443.8495788574219 29.250438690185547 +sub-10420_ses-V1_task-rest_run-01_bold 0.0011721670428893906 0.010160467155756206 7 42.76214235389142 1.0919839766289596 0.9945844187556557 0.4498893237365881 3097.316650390625 0.19370158193245193 73 16.478555304740407 2.4374479003961937 2.448741569362419 2.5230915664080156 2.3405105654181466 0.0100883 0.014164276421070099 0.016534239053726196 443 90 90 60 2.299422106339543 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 55.390050087101415 25.759796142578125 46.92380905151367 18.25507926940918 328428.0 0.06094808131456375 181.3540672302239 89.64312744140625 5.414398312925959 318.11859130859375 1093.951171875 1014.3341064453125 89448.0 533.4681884765625 1911.0239379882812 441.1231994628906 29.38363265991211 +sub-10420_ses-V1_task-rest_run-02_bold 0.0014 0.010332316538461537 8 43.700524155056705 1.107308674784581 1.002221534852608 0.4497796671722618 3067.206298828125 0.21333210742850772 88 19.90950226244344 2.4568409619763503 2.4604707355630104 2.54902073204435 2.3610314183216907 0.00638296 0.014794958755373955 0.016835510730743408 442 90 90 60 2.2798675110696958 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 58.51447059837672 25.54302406311035 46.470848083496094 18.124435424804688 328139.0 0.06108597666025162 179.82693634033177 87.77877807617188 5.494739406779109 321.073974609375 1085.6627197265625 1006.6244506835938 89655.0 523.8452697753906 1899.5213989257818 441.525146484375 29.365549087524414 +sub-10421_ses-V1_task-cuff_run-01_bold 0.000898081264108352 0.013958771896162526 7 47.95035376916283 1.0899324304072386 0.9756809429185523 0.46328047639009895 4321.59716796875 0.34799749062997387 3 0.6772009029345373 2.382607653532005 2.3552957397422896 2.365241572680411 2.4272856481733145 0.00326223 -0.0016926241805776954 0.02351595088839531 443 90 90 60 3.2231483732314636 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 130.5386544240375 21.660049438476562 45.95188522338867 15.182844161987305 326090.0 0.015801355242729187 175.89288940429685 105.12586212158203 2.742190039831393 246.6406707763672 1029.235595703125 995.0372314453125 91250.0 581.6385162353515 1573.3130187988281 308.7142333984375 29.95687484741211 +sub-10421_ses-V1_task-cuff_run-02_bold 0.0017537246049661402 0.012330717110609481 7 47.686339822556555 1.1270409900226237 1.0149119493212673 0.463151028153187 4296.1806640625 0.31863909166342846 2 0.45146726862302483 2.3666187596560233 2.3434290735471617 2.3461207401068713 2.4103064653140374 0.00384545 -0.0005407276912592351 0.020099250599741936 443 90 90 60 3.241831891315182 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 78.36590641979295 21.676782608032227 45.300174713134766 15.182844161987305 326313.0 0.006772009190171957 175.95125122070306 99.48633575439453 2.6156397509363396 246.00823974609375 1028.2310791015625 994.7652587890625 91052.0 582.5626373291016 1568.5045471191406 306.85113525390625 30.796245574951172 +sub-10421_ses-V1_task-rest_run-01_bold 0.0005688713318284424 0.012245390383747176 7 50.34970830676469 1.1002620029864247 0.9682969689140278 0.4619933222889364 4317.97119140625 0.37552216995011833 254 57.33634311512415 2.3673770931965383 2.3473249067256887 2.343783240199755 2.4110231326641713 0.00381614 -0.0010130524169653654 0.020223619416356087 443 90 90 60 3.240643048436004 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 87.16321958655155 21.636621475219727 44.73305130004883 15.185101509094238 326200.0 0.004514672793447971 173.65248718261716 99.36563873291016 2.674598403060963 245.3153839111328 1035.39990234375 1000.5665893554688 91155.0 588.0449584960937 1580.827978515625 308.7538757324219 30.925518035888672 +sub-10421_ses-V1_task-rest_run-02_bold 0.0007541043083900227 0.012065040521541951 9 49.88294237322727 1.1099792053409094 0.9843461737954554 0.4643322700605124 4322.1201171875 0.4093500016259162 256 58.049886621315196 2.3809076509711553 2.361637406156961 2.361737406152987 2.4193481406035175 0.00502105 -0.0010498750489205122 0.019707635045051575 441 90 90 60 3.2337988837725264 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 76.63635251741131 21.699447631835938 45.980743408203125 15.293651580810547 325988.0 0.0317460335791111 178.87165374755733 99.98352813720703 2.7042935229116187 243.7620086669922 1029.006591796875 995.0906982421875 91384.0 582.9640838623047 1572.214776611328 307.7140197753906 31.33418083190918 +sub-10424_ses-V1_task-cuff_run-01_bold 0.001924865470852018 0.017465506053811662 4 36.002707697752804 1.1452561424044942 1.0139298532584264 0.4385120712671448 383067.125 0.24296284871469323 2 0.4484304932735426 2.743891335961503 2.8363222535211268 2.83800338028169 2.5573483740816916 0.00650567 -0.009900200180709362 0.027323415502905846 446 96 96 54 3.856122141773104 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 73.4552236284428 46.781429290771484 583.73974609375 31.986921310424805 338621.0 0.34170258045196533 2706.85302734375 1294.241943359375 1.6726312792895293 4073.094970703125 21447.642578125 21088.998046875 90530.0 12394.51025390625 30972.13037109375 5468.93505859375 32.08366394042969 +sub-10424_ses-V1_task-cuff_run-02_bold 0.001966067415730337 0.013538942898876404 5 35.03921820250001 1.178153450315314 1.0014322142342345 0.4385642293430341 514568.78125 0.18455177559804065 0 0.0 2.7076963307265207 2.8106501408450706 2.8042321126760563 2.5082067386584357 0.00314759 -0.009612067602574825 0.02764393761754036 445 96 96 54 3.881781755794661 0.7999997138977051 2.21875 2.21875 2.4000015258789062 2 70.67049956156146 40.90215301513672 597.5247802734375 27.98158073425293 338841.0 0.3339274227619171 2789.637939453125 1306.9190673828125 1.607035148167098 4202.341796875 21790.013671875 21347.611328125 90170.0 12969.351708984375 31480.517968750002 5499.40576171875 37.08186340332031 +sub-10424_ses-V1_task-rest_run-01_bold 0.0011713870246085009 0.03130631834451901 3 36.67475911650222 1.0748333215695058 0.9438563330941707 0.4399456400722389 602848.875 0.26964406011865805 156 34.899328859060404 2.775804281936454 2.8594614084507044 2.9104405633802815 2.557510873978377 0.00750607 -0.010260763578116894 0.028704581782221794 447 96 96 54 3.933487489766034 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 73.99177852965579 36.740779876708984 574.8055419921875 25.191452026367188 337634.0 0.36415296643972395 2650.8173706054667 1272.39111328125 1.7297788727423793 4061.46728515625 21429.953125 21058.03125 91100.0 12673.29384765625 30808.750878906252 5353.49755859375 26.262887954711914 +sub-10424_ses-V1_task-rest_run-02_bold 0.001939596412556054 0.018411221748878923 4 36.67554080406742 1.151092940404495 0.984106870539326 0.4379920998368456 665447.625 0.23754392632725396 119 26.681614349775785 2.7304959612527298 2.827772394366197 2.8289712676056338 2.534744221786358 0.00466679 -0.009779897518455982 0.028187595307826996 446 96 96 54 3.881225498116281 0.7999997138977051 2.21875 2.21875 2.4000015258789062 0 70.12837137997502 36.144168853759766 595.978515625 24.552087783813477 339105.0 0.15308251976966858 2783.9176269531235 1298.5821533203125 1.6342455714210002 4223.380859375 21832.814453125 21412.90625 90086.0 12940.862060546875 31516.90966796875 5517.01708984375 33.121734619140625 +sub-10428_ses-V1_task-cuff_run-01_bold 0.04618888888888889 0.0058428344444444455 2 44.923597335 1.02698242 1.27196000375 0.5917979487423756 225.6671600341797 0.08001368399224487 0 0.0 2.5935874868931657 2.3058665750397616 2.7584040570575374 2.7164918285821975 0.234649 -0.03677425906062126 0.17435134947299957 9 90 90 54 2.1961255847748147 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 12.51308180339286 9.225080490112305 37.93069839477539 14.88888931274414 269002.0 8.222222328186035 161.3333282470703 56.265865325927734 1.3740828990644252 94.55706787109375 260.7373962402344 240.22222900390625 102495.0 117.66666412353516 469.1111145019531 109.38402557373047 28.29912757873535 +sub-10428_ses-V1_task-cuff_run-02_bold 0.106146 0.012637955999999997 0 110.96183204499998 1.0918713 1.7708256224999999 0.5813392757461031 242.01907348632812 0.057420869083857046 0 0.0 2.3948277648160636 2.166799913899107 2.535320732588739 2.482362647960344 0.805066 -0.04000253230333328 0.17703022062778473 5 90 90 54 2.010026035706604 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 13.988519359513177 10.081695556640625 40.553497314453125 15.600000381469727 268453.0 8.199999809265137 172.60000610351562 61.64445114135742 2.3373140895557745 107.34041595458984 290.2137451171875 263.20001220703125 102912.0 128.1999969482422 543.0 130.9429473876953 10.951396942138672 +sub-10428_ses-V1_task-rest_run-01_bold 0.0011522247191011236 0.009885440539325843 5 44.43053029900902 1.023912027454955 0.9972171175900904 0.5954808458747832 221.1623077392578 0.2543236762729694 132 29.662921348314608 2.6917166531461594 2.374241572322783 2.8791540522593637 2.8217543348563314 0.016051 -0.037526603788137436 0.172813281416893 445 90 90 54 2.2761774038594824 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 11.764922004237686 9.302080154418945 37.440372467041016 14.896629333496094 268735.0 8.242696762084961 158.10314331054678 54.6298828125 1.0351612782689097 92.39944458007812 255.7415008544922 237.6539306640625 102698.0 116.06865234375 453.00583648681635 104.40872192382812 29.572525024414062 +sub-10428_ses-V1_task-rest_run-02_bold 0.0016934606741573033 0.008699143280898877 5 44.441269041238726 1.048634448581081 1.0265660161936934 0.5966274028271507 220.60353088378906 0.25770588236818004 138 31.01123595505618 2.683402764482913 2.3688832392023706 2.8627332195785358 2.818591834667832 0.0142715 -0.03678617626428604 0.17826494574546814 445 90 90 54 2.2710079911099696 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 11.840207511009154 9.26543140411377 37.96361541748047 14.775280952453613 268962.0 8.14606761932373 161.14157104492188 55.72867202758789 1.0233845859655615 91.38493347167969 254.546875 236.04269409179688 102407.0 115.68899307250977 451.6827056884764 103.93690490722656 30.051767349243164 +sub-10429_ses-V1_task-rest_run-01_bold 0.0007344719101123596 0.0076992038426966294 5 44.913394996711666 1.1236090766666669 1.0027050025225226 0.5610406532886592 409.17230224609375 0.1896503572635515 67 15.0561797752809 2.70511526293413 2.3838999052723286 2.933570716763706 2.7978751667663553 0.0130713 -0.02431771717965603 0.14445005357265472 445 90 90 54 2.5862158847954486 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 26.826692878442298 4.840945720672607 27.68258285522461 11.283145904541016 278298.0 7.869663238525391 106.42955207824699 42.93128204345703 0.9146747253549039 87.09371948242188 258.6122741699219 245.1505584716797 94460.0 125.99078788757325 430.9798797607422 94.79071807861328 34.92667007446289 +sub-10430_ses-V1_task-cuff_run-01_bold 0.0005135585585585586 0.004061947905405406 6 37.38876170548531 1.1203481920090297 0.9986811476072234 0.5167756880152609 532.5974731445312 0.09886217694461581 0 0.0 2.777069430966764 2.506649900394682 2.899087384800618 2.9254710077049935 0.00556319 -0.02896331436932087 0.10213224589824677 444 90 90 54 2.4398922134866843 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 64.50099093728751 4.187349796295166 21.903390884399414 10.653153419494629 287524.0 7.675675868988037 69.38603858947732 34.97026443481445 0.419428212363798 96.48271179199219 279.6478271484375 262.6351318359375 87222.0 129.3702705383301 483.6539611816405 107.64148712158203 40.961036682128906 +sub-10430_ses-V1_task-cuff_run-02_bold 0.00046504504504504504 0.004131126103603605 6 38.19280737200905 1.1374725648758464 1.0017731964785552 0.5177981592095093 517.8922729492188 0.09326301108718074 0 0.0 2.7708694308141104 2.504829067133702 2.8943582183218712 2.9134210069867574 0.0143021 -0.02925550378859043 0.10247380286455154 444 90 90 54 2.426240985592628 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 65.04418372994155 4.300882816314697 22.039522171020508 10.740991592407227 287430.0 7.698198318481445 69.76126098632812 35.056304931640625 0.445357540748494 95.69129943847656 278.6068115234375 261.4842529296875 87446.0 128.30630493164062 483.5687026977539 107.77278900146484 41.38352966308594 +sub-10430_ses-V1_task-rest_run-01_bold 0.0007420588235294117 0.005289030791855203 8 37.68831795419502 1.128107696507936 0.9995452259410429 0.5162411472597175 559.7750244140625 0.11855372774041577 2 0.45248868778280543 2.799608319884738 2.517687399956091 2.92774155032867 2.9533960093694533 0.00535129 -0.02865947037935257 0.10193212330341339 442 90 90 54 2.4418418719952193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 65.39977334380694 3.968141555786133 21.77297019958496 10.488688468933105 287474.0 7.647058963775635 68.76176872253407 34.5186653137207 0.37091573340166617 97.7393798828125 281.1897888183594 264.48870849609375 87404.0 129.19366607666018 485.7931121826171 108.31462860107422 38.29869079589844 +sub-10430_ses-V1_task-rest_run-02_bold 0.0007638513513513514 0.004668902207207208 6 37.725874636027065 1.127107588645598 1.0025865430022574 0.5163634140786428 578.4224853515625 0.10635185055260314 7 1.5765765765765767 2.835068041416209 2.557341565047043 2.9727748818725397 2.9750876773290442 0.00942192 -0.02811235375702381 0.10108483582735062 444 90 90 54 2.449855429997392 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 57.539910959151804 4.340953350067139 21.798641204833984 10.292793273925781 286976.0 7.216216564178467 70.43074607849121 34.725990295410156 0.2544923415410345 100.30603790283203 278.6960144042969 264.25225830078125 87811.0 124.56756973266602 479.6486511230469 107.86381530761719 39.66135787963867 +sub-10431_ses-V1_task-rest_run-01_bold 0.0028577894736842107 0.0073495617894736845 4 43.78211013308512 1.1634856989361702 1.022048433829787 0.5553371420794699 388.5552673339844 0.17039649925397168 12 12.631578947368421 2.642086094681373 2.406899904358391 2.845016553615866 2.6743418260698615 0.029538 -0.02600914239883423 0.11116789281368256 95 90 90 54 2.5874132535714485 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 23.04549022541774 5.727527141571045 26.615020751953125 12.042105674743652 278539.0 7.905263423919678 98.49579544067358 39.596500396728516 0.9364053670566435 86.42790985107422 262.4053649902344 253.631591796875 93854.0 114.912109375 440.8210754394531 98.0246353149414 34.78031921386719 +sub-10432_ses-V1_task-rest_run-01_bold 0.0008561990950226244 0.010261227285067873 8 46.704137901609975 1.029265126621315 0.98542183201814 0.5267781483250179 513.6211547851562 0.34442480789654367 206 46.60633484162896 2.6906833188756534 2.3603207395426136 2.9195165506555023 2.7922126664288442 0.00501898 -0.020269855856895447 0.11482767015695572 442 90 90 54 2.5898067333763066 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 33.049713068935475 3.03564453125 21.236026763916016 9.823530197143555 289261.0 7.536199569702148 70.5429916381836 31.837369918823242 0.9991597367782132 83.46012878417969 248.9966278076172 237.63916015625 85280.0 120.60633850097656 417.194580078125 91.75888061523438 29.022750854492188 +sub-10433_ses-V1_task-rest_run-01_bold 0.0025543438914027152 0.007504230180995475 8 38.74616028680272 1.0865447370521546 1.0276198833786845 0.5266457068149779 463.4508056640625 0.1542871040846586 18 4.072398190045249 2.6651902608956237 2.472399901755655 2.8347665540231644 2.6884043269080515 0.0115863 -0.014651080593466759 0.07351464033126831 442 90 90 54 2.386846484137039 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 40.727252397776475 4.07883358001709 20.97660255432129 10.69230842590332 282905.0 7.75339412689209 65.16470794677731 31.23377227783203 1.5967927932679444 87.56409454345703 260.5812072753906 244.83937072753906 90531.0 119.26471328735352 451.9287567138672 102.57803344726562 31.903419494628906 +sub-10434_ses-V1_task-cuff_run-01_bold 0.0009259318181818181 0.00634070175 10 31.961547174077463 0.9941289612984058 0.9866309510478367 0.5351343549807931 558.3323364257812 0.14859372350867642 0 0.0 2.725295818516867 2.496166567477919 2.856808219813974 2.8229126682587067 0.00403449 -0.024555714800953865 0.092893086373806 440 90 90 54 2.249440327270308 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 38.26180757909737 3.6458542346954346 22.410314559936523 10.340909004211426 269919.0 7.734090805053711 70.62068023681636 36.71586990356445 2.6526499984773313 94.82586669921875 283.484375 261.0363464355469 101695.0 136.53795318603517 498.7359039306639 116.04444885253906 36.39677429199219 +sub-10434_ses-V1_task-cuff_run-02_bold 0.0005581900452488687 0.005821145113122172 8 32.75031735941044 1.0219606407256232 0.9975107560997734 0.5364458101394378 543.1240234375 0.1333854406166841 0 0.0 2.707618040655228 2.4825374013528267 2.841149887102847 2.7991668335100113 0.00792932 -0.024599432945251465 0.09344030171632767 442 90 90 54 2.254344789602436 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 39.34446743802389 3.693089008331299 22.522184371948242 10.384615898132324 269777.0 7.7760186195373535 71.69140624999989 36.82609558105469 2.661579134338167 93.79640197753906 281.3924560546875 259.0362243652344 101803.0 136.19548492431642 494.61993408203125 114.9047622680664 38.08467102050781 +sub-10434_ses-V1_task-rest_run-01_bold 0.0005183031674208145 0.0050465091855203615 8 31.621163456802712 1.0185037213378678 0.9993059625396827 0.5327613214352357 577.5164184570312 0.13068282595356098 11 2.48868778280543 2.7020847073141128 2.481320734734506 2.832641554107604 2.7922918331002298 0.0131578 -0.024159211665391922 0.09266088157892227 442 90 90 54 2.2751525805770125 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 38.80221550602743 3.5287277698516846 22.042682647705078 10.251132011413574 270771.0 7.766968727111816 69.4015884399414 36.023277282714844 2.515552287069432 95.7519760131836 285.6319885253906 263.6697082519531 101021.0 137.762451171875 499.3054504394531 115.89042663574219 39.81866455078125 +sub-10434_ses-V1_task-rest_run-02_bold 0.0013435909090909089 0.004839208522727272 10 31.84442460619589 1.026249051526196 1.015613944920274 0.5364350101879753 545.9046020507812 0.14211623967093587 21 4.7727272727272725 2.6763430409008495 2.4531749025195877 2.8067998884677934 2.7690543317151666 0.0157739 -0.02370239607989788 0.0938696339726448 440 90 90 54 2.2703223989114916 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 39.074989703306564 3.6458542346954346 22.48275375366211 10.304545402526855 270361.0 7.7272725105285645 71.44544982910156 36.988853454589844 2.6401816771983677 92.58513641357422 279.21234130859375 257.17498779296875 101251.0 136.50568389892578 489.6681671142578 113.27629852294922 38.863380432128906 +sub-10437_ses-V1_task-rest_run-01_bold 0.003888536036036036 0.011477622252252252 6 42.52463936205416 1.1229506171783297 1.0553977517155757 0.5246019012634769 524.59765625 0.2072007211481904 77 17.34234234234234 2.6898333173395645 2.4339040699520087 2.890791551796931 2.744804330269754 0.00436299 -0.032874565571546555 0.1064673662185669 444 90 90 54 2.6629064609718767 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 91.23235835573921 3.225661277770996 20.683517456054688 9.894144058227539 290459.0 7.504504680633545 65.06306457519531 31.642452239990234 0.6608736575437755 82.64173126220703 251.57566833496094 240.14190673828125 85302.0 121.29538917541504 414.3102584838867 90.17984771728516 30.428865432739258 +sub-10442_ses-V1_task-cuff_run-01_bold 0.0005135346756152125 0.021340255033557045 3 47.96277945139013 1.18875274251121 0.9823396392376678 0.49103084782083256 36829.859375 0.4280127173089242 9 2.0134228187919465 2.5964997076328924 2.618307605633803 2.7209014084507044 2.4502901088141704 0.00650776 -0.021684136241674423 0.03845680132508278 447 96 96 54 4.291719753572249 0.7999997138977051 2.21875 2.21875 2.4000015258789062 1 61.620856878660376 139.3369140625 934.8123779296875 94.31440734863281 328056.0 0.45307541638612747 4121.5748291015625 1670.478515625 2.4904855790240097 3269.2060546875 19755.703125 19360.33984375 100250.0 13043.823583984376 27708.679296874998 4511.06884765625 33.180763244628906 +sub-10442_ses-V1_task-rest_run-01_bold 0.001148741573033708 0.0229306002247191 5 49.39555220565313 1.2345582023423414 1.0040622031081086 0.49058514294775557 36680.4140625 0.43516905930263383 304 68.31460674157303 2.6083399325172123 2.62688 2.7382580281690143 2.459881769382623 0.00955017 -0.02256808802485466 0.03882211074233055 445 96 96 54 4.299920709041755 0.7999997138977051 2.21875 2.21875 2.4000015258789062 9 67.75367599410667 140.0896759033203 931.509521484375 94.7705078125 327941.0 0.42226433753967285 4108.216796875 1680.1356201171875 2.6409870999482843 3211.999755859375 19721.462890625 19344.31640625 100327.0 12981.323535156249 27591.454296874996 4498.73876953125 32.55008316040039 +sub-10443_ses-V1_task-cuff_run-01_bold 0.0023120861678004537 0.025226183900226757 9 42.86191954627273 1.0948430121818178 1.001110474227272 0.46228343753851914 1207428.875 0.4620346275749323 32 7.2562358276643995 2.7411166646600713 2.7430985915492956 2.8308822535211267 2.6493691489097917 0.0101644 -0.009415045380592346 0.020074274390935898 441 96 96 54 4.478406733022282 0.7999997138977051 2.21875 2.21875 2.4000015258789062 5 35.37337374233942 24.218372344970703 467.18682861328125 16.755264282226562 324857.0 0.37180005311965947 2322.9857910156256 1051.028076171875 1.6674637950075963 3488.138671875 19419.52734375 19002.2734375 103384.0 13688.843798828124 27150.7333984375 4243.0673828125 28.501083374023438 +sub-10443_ses-V1_task-cuff_run-02_bold 0.0030971300448430494 0.022416848430493273 4 44.22503494946068 1.1350079469213479 1.2171493350337075 0.4631626058343886 1705099.625 0.4859059077780157 52 11.659192825112108 2.7020559384570926 2.710098028169014 2.790683943661972 2.605385843540291 0.0204589 -0.00933581218123436 0.020112499594688416 446 96 96 54 4.519856179900552 0.7999997138977051 2.21875 2.21875 2.4000015258789062 6 37.45986925090647 20.08194351196289 455.5033874511719 13.758869171142578 324408.0 0.1909856118261814 2290.5895751953076 1047.271728515625 1.9208263457776313 3266.48828125 18977.865234375 18563.171875 103775.0 13484.78798828125 26376.685937499984 4107.00732421875 30.707250595092773 +sub-10443_ses-V1_task-rest_run-01_bold 0.0009277303370786516 0.020024438876404496 5 45.52508270423424 1.101274793175675 1.011561439572072 0.46840695921902215 2032876.25 0.5263115401606269 316 71.01123595505618 2.683306439399207 2.703472676056338 2.7787357746478873 2.5677108674933957 0.0157588 -0.011669495142996311 0.018778426572680473 445 96 96 54 4.465691153265051 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 42.838432774135846 17.993059158325195 465.0820617675781 12.300742149353027 321250.0 0.16064543798565867 2298.78857421875 1068.12060546875 2.169847421015616 3229.352294921875 18870.91796875 18491.818359375 106425.0 13326.365624999999 26231.423437499994 4140.84423828125 33.40241241455078 +sub-10443_ses-V1_task-rest_run-02_bold 0.00673720982142857 0.028571082142857147 2 49.58715091501113 1.1190799377404927 1.0462260852572711 0.46643840737756864 495343.8125 0.6847915686471815 321 71.65178571428571 2.741311784192624 2.7490388732394364 2.835727323943662 2.6391691553947734 0.0166055 -0.00967039167881012 0.020472481846809387 448 96 96 54 4.523961311880085 0.7999997138977051 2.21875 2.21875 2.4000015258789062 7 37.01140204223574 36.730709075927734 471.3260192871094 25.665546417236328 323446.0 0.6201004683971405 2332.3418579101562 1053.3287353515625 1.697099918537865 3306.662109375 18832.6328125 18433.85546875 104496.0 13318.509521484375 26304.818359375 4074.696044921875 26.197580337524414 +sub-10453_ses-V1_task-cuff_run-01_bold 0.0013521088435374147 0.011592404467120182 9 34.99238729034094 1.0578300744772733 0.9948173855681812 0.42696848073305393 12672.1455078125 0.19583012664328775 0 0.0 2.2918578016658326 2.29125407562041 2.3667207392883007 2.217598590088787 0.00863146 -0.006031121127307415 0.021257620304822922 441 90 90 60 2.5985577133123754 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 125.77542032208899 12.684487342834473 36.110618591308594 8.798186302185059 331716.0 0.0022675737272948027 140.92573928833008 110.06085205078125 6.5387455928206695 243.264404296875 1066.7117919921875 991.153076171875 85952.0 605.6348083496093 1781.1958190917967 381.4220886230469 34.324703216552734 +sub-10453_ses-V1_task-rest_run-01_bold 0.002394009009009009 0.016676858783783784 6 34.87688704374721 1.0288193428216703 0.9780918534537252 0.4272934386005086 12147.013671875 0.20088134340076494 44 9.90990990990991 2.2980675204996435 2.2990874086424746 2.3617040728209786 2.2334110800354767 0.0125248 -0.005512545350939035 0.022894572466611862 444 90 90 60 2.648229917571629 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 128.6634325381332 12.842540740966797 35.30500411987305 8.921171188354492 331802.0 0.0045045046135783195 132.4930152893067 109.08666229248047 6.623728646546692 237.1228790283203 1060.060546875 987.3243408203125 85885.0 605.1630737304688 1764.2847412109377 372.82208251953125 29.25140380859375 +sub-10453_ses-V1_task-rest_run-02_bold 0.0034446469248291573 0.011109465056947609 11 32.94500482454342 1.0992761238812783 1.0282582588127847 0.4274442564947125 12259.2197265625 0.1656756739792607 13 2.9612756264236904 2.277230030269997 2.2861999091545777 2.3570874063377616 2.1884027753176527 0.0036138 -0.005573421251028776 0.021789953112602234 439 90 90 60 2.6179564754319786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 122.93036664755834 12.819950103759766 36.07365036010742 8.851936340332031 331777.0 0.002277904422953725 141.0419158935549 110.48388671875 6.729683907689553 239.76620483398438 1063.1004638671875 988.1890869140625 85919.0 607.8355834960937 1771.7675537109374 377.463623046875 36.116573333740234 +sub-15002_ses-V1_task-cuff_run-01_bold 0.0011043918918918919 0.01568473177927928 6 66.7553617592099 1.2049209460496608 1.010287460925508 0.44616971958363383 7977.74072265625 0.5807197146292655 51 11.486486486486486 2.4336452505931265 2.4306832367466593 2.423954070347386 2.4462984446853353 0.0044246 -2.158926690754015e-05 0.02786160632967949 444 90 90 60 2.718842475453538 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 178.4126188180108 16.60581398010254 40.69172286987305 11.68693733215332 324384.0 0.018018018454313278 160.8020339965817 115.19779205322266 4.801941937734736 285.8182678222656 1113.2388916015625 1053.159912109375 91977.0 585.3207275390625 1814.6779296875002 387.3538818359375 28.23296356201172 +sub-15002_ses-V1_task-cuff_run-02_bold 0.0008730180180180179 0.020489363513513513 6 60.02893738961631 1.1216168255530474 0.9644971083521442 0.4467105671552938 7442.1103515625 0.5069392180770087 39 8.783783783783784 2.4613966298549883 2.4457707361471357 2.449216569343544 2.489202584074285 0.0140607 0.00021410039335023612 0.027357598766684532 444 90 90 60 2.7581461350787633 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 191.7023004265992 16.929718017578125 40.41817855834961 12.038288116455078 324498.0 0.06756757199764252 156.38356399536116 114.0050277709961 4.846381663894095 281.86639404296875 1104.4844970703125 1045.4876708984375 92060.0 587.966928100586 1783.3573425292975 379.05242919921875 24.221603393554688 +sub-15002_ses-V1_task-rest_run-01_bold 0.000932234762979684 0.018889163453724604 7 71.93044788486422 1.211652610158371 0.9915947896606332 0.4464859851624529 7665.99951171875 0.6178339527391716 355 80.13544018058691 2.457400800980245 2.4549457357825544 2.4496957359911704 2.467560931167011 0.00385192 -0.0013206284493207932 0.02709042653441429 443 90 90 60 2.727325958664051 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 164.40967149886046 16.934465408325195 40.61006546020508 11.94582462310791 323970.0 0.04063205420970917 159.85903015136716 113.45067596435547 4.720717697958704 289.3684997558594 1119.40771484375 1060.05419921875 92365.0 587.5787841796875 1821.9260498046874 388.6768493652344 26.099384307861328 +sub-15002_ses-V1_task-rest_run-02_bold 0.00259431151241535 0.018583728465011287 7 57.51061291067876 1.1841666125791865 1.0306567967873301 0.4472211388169983 7180.7158203125 0.5415862547942935 335 75.62076749435666 2.4532674663268357 2.4418290696370972 2.4429415695928904 2.475031759750519 0.0047483 0.0031730756163597107 0.028205178678035736 443 90 90 60 2.816619232428188 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 184.55858633385444 16.686805725097656 39.34248733520508 11.995485305786133 324440.0 0.1173814907670021 145.84886779785154 112.91448211669922 4.342258723081986 269.037109375 1077.0772705078125 1022.6456298828125 92603.0 571.593231201172 1729.906115722656 363.0736083984375 25.11174774169922 +sub-20004_ses-V1_task-cuff_run-01_bold 0.0030107709750566893 0.020868074149659865 9 93.194814123 1.1360174230454547 0.9651291013863639 0.4345790742253534 7274.1298828125 0.8819680738440718 180 40.816326530612244 2.505197951891897 2.4801165681156885 2.5313248994141855 2.504152388145817 0.0144115 -0.009742630645632744 0.025793980807065964 441 90 90 60 2.427207377473179 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 461.00900016659216 16.779293060302734 35.27128982543945 11.594104766845703 326377.0 0.020408162847161293 128.8480682373047 100.78775787353516 2.6552424040183142 330.5497131347656 1069.5384521484375 998.7982177734375 90916.0 535.4750366210938 1846.6174011230469 411.49871826171875 20.336875915527344 +sub-20004_ses-V1_task-cuff_run-02_bold 0.002204198645598194 0.020180161399548535 7 96.2815560002489 1.1322936765158378 0.9668813238461543 0.43445468088860184 7204.6572265625 0.9379127028616066 199 44.92099322799097 2.5162187895998294 2.4908915676875285 2.5390790657727296 2.51868573533923 0.0141887 -0.009949035942554474 0.025790812447667122 443 90 90 60 2.4075973257607854 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 10 490.38069013424996 16.69182586669922 35.03058624267578 11.55643367767334 325632.0 0.020316027104854584 128.1219024658203 102.36322021484375 2.690424534639855 331.2344665527344 1064.815185546875 994.66259765625 91472.0 530.3317352294922 1844.3198791503905 413.1326904296875 20.70990753173828 +sub-20004_ses-V1_task-rest_run-01_bold 0.0022137892376681615 0.01323807912556054 4 62.410453179213455 1.1272259484269656 0.9872315835955058 0.432903040503385 7980.1279296875 0.511666568248212 308 69.05829596412556 2.448013209190105 2.43519990323385 2.473395735049417 2.4354439892870485 0.0120677 -0.00889886636286974 0.022364778444170952 446 90 90 60 2.4402649355375376 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 424.1903216206362 16.01941680908203 34.0376091003418 11.022421836853027 326657.0 0.011210762895643711 127.07354888916026 93.29666137695312 2.5682706427799546 328.61749267578125 1068.9393310546875 999.2713623046875 90672.0 537.7592315673828 1843.2607421875 409.49072265625 26.653039932250977 +sub-20004_ses-V1_task-rest_run-02_bold 0.0030922471910112366 0.016534974202247192 5 68.65393832817567 1.1248223267117112 1.035705613445946 0.43486447549314017 7448.04931640625 0.6508642160145878 340 76.40449438202248 2.4645382145380825 2.4530124025260447 2.4870249011745096 2.4535773399136924 0.0118189 -0.008142550475895405 0.02339920774102211 445 90 90 60 2.4378706337987164 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 10 422.7066735742845 16.391916275024414 34.649070739746094 11.379775047302246 326193.0 0.033707864582538605 128.43370666503867 94.16674041748047 2.629316943608523 326.68060302734375 1061.5089111328125 991.8865356445312 91020.0 536.3109161376952 1833.0464294433596 406.86370849609375 23.77410125732422 +sub-20004_ses-V3_task-cuff_run-01_bold 0.0007356853932584269 0.019011771235955054 5 52.38779566736481 1.0056155363288286 0.9447609982432439 0.43885522556051876 5808.203125 0.39688706133056867 14 3.146067415730337 2.525447992613493 2.437587403138979 2.530845732766559 2.6079108419349404 0.00843408 -0.006570320576429367 0.029811643064022064 445 90 90 60 2.5492540836739357 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 520.3033832805546 16.03542709350586 29.196735382080078 11.226966857910156 323795.0 0.02921348437666893 101.41865539550753 84.0143051147461 1.8861326236083116 275.1043395996094 917.0796508789062 858.1370849609375 92863.0 470.7638214111328 1551.8633422851558 336.6210021972656 22.157283782958984 +sub-20004_ses-V3_task-cuff_run-02_bold 0.0017533558558558556 0.017780145022522523 6 73.28335254419866 1.0933104087358918 1.0145657969751691 0.43970910250507506 6084.4072265625 0.6613049262870689 113 25.45045045045045 2.5362563242002456 2.45811656898989 2.5361123992239474 2.614540004386899 0.00805345 -0.00745397387072444 0.031097890809178352 444 90 90 60 2.5452397969162495 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 500.6511701858466 15.740962982177734 29.768213272094727 11.094594955444336 323380.0 0.04954954981803894 103.67409973144515 88.37860107421875 1.9399395505367183 273.99090576171875 920.0399169921875 860.034912109375 93194.0 469.5707290649415 1558.5131896972655 337.8975524902344 22.487932205200195 +sub-20004_ses-V3_task-rest_run-01_bold 0.002678371040723982 0.01892172601809955 8 48.259327371610006 1.0335583847392293 0.9872978803174605 0.4390382717864332 5570.4638671875 0.35125155490385834 231 52.262443438914026 2.5244424369993816 2.441558236314526 2.523362399730587 2.6084066749530317 0.00997628 -0.005423225462436676 0.024970144033432007 442 90 90 60 2.5380926963292474 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 459.71694200866284 16.301918029785156 28.971820831298828 11.524887084960938 324136.0 0.06334841996431351 101.7222900390625 74.57559967041016 1.9562150903706623 277.2415466308594 923.3314819335938 863.6663818359375 92530.0 476.28339233398435 1567.800524902344 340.2798156738281 22.18120002746582 +sub-20004_ses-V3_task-rest_run-02_bold 0.002068183856502242 0.01364812365470852 4 50.4105483666517 1.0806790078426967 1.0399027152584286 0.43988698684881505 5903.083984375 0.38033749167338055 255 57.17488789237668 2.5093257756562344 2.4374499031444428 2.5058915670914823 2.584635856732777 0.0156383 -0.006620841566473246 0.025921856984496117 446 90 90 60 2.526522455208089 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 479.4840864643679 15.909719467163086 29.66036033630371 11.16592025756836 323890.0 0.035874441266059875 106.975341796875 78.8931655883789 1.9586302169806737 278.2306213378906 922.256103515625 862.4439697265625 92883.0 471.58074951171875 1569.477014160156 341.35430908203125 25.996509552001953 +sub-20007_ses-V1_task-cuff_run-01_bold 0.0033071106094808124 0.026969691873589167 7 42.27864784567871 0.9260536841402712 0.9610329969457013 0.44766872481797404 4994.5341796875 0.26438632696837067 18 4.063205417607223 2.581488277413925 2.5548832318113948 2.5320915660503878 2.657490034379992 0.00930776 0.03146880492568016 0.005700191482901573 443 90 90 60 2.598955620877752 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 10 84.47752650256399 15.870203971862793 31.990928649902344 11.419864654541016 323637.0 0.05869074538350105 112.43160400390627 85.44879150390625 1.6369185719655297 249.32150268554688 845.9636840820312 801.0587158203125 92539.0 396.8957275390625 1419.9397583007808 308.2216491699219 20.154680252075195 +sub-20007_ses-V1_task-cuff_run-02_bold 0.002220316742081448 0.009111511289592759 8 35.64093556063492 1.056753335464852 1.0195884806349205 0.4475767737769609 5450.302734375 0.1358057890964336 3 0.6787330316742082 2.469327123282897 2.480183234779706 2.4136832374221786 2.5141148976468064 0.00717633 0.02837239019572735 0.0033735858742147684 442 90 90 60 2.5879792630798977 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 98.69739539057072 15.18157958984375 33.37748336791992 10.751132011413574 324585.0 0.024886878207325935 123.27738037109356 91.85880279541016 1.7932855369506058 250.97238159179688 853.1790161132812 805.5814819335938 91906.0 410.04357147216797 1436.5718688964844 311.2764892578125 32.205169677734375 +sub-20007_ses-V1_task-rest_run-01_bold 0.003129591836734694 0.019244522879818596 9 36.34732384679544 0.9785181962954548 0.9735126670227271 0.4468770311690418 5153.25390625 0.15933548311533657 26 5.895691609977324 2.520288252887086 2.5184248999267855 2.4663624019955632 2.5760774567389073 0.0056898 0.02926105260848999 0.0001732898672344163 441 90 90 60 2.6062677360468736 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 11 74.773786796949 15.800976753234863 32.84720230102539 11.326530456542969 325386.0 0.06122449040412903 119.95238494873047 85.41521453857422 1.6967008626311957 252.27101135253906 864.7575073242188 818.2789306640625 91396.0 412.47166442871094 1449.3911437988281 313.9640808105469 24.435514450073242 +sub-20007_ses-V1_task-rest_run-02_bold 0.0014544843049327356 0.009115721905829596 4 35.87632755330338 1.0413065287415737 0.9933912898426962 0.4459686201428608 5210.970703125 0.12787282529061772 19 4.260089686098655 2.486503515691941 2.496462400799497 2.4362415698591247 2.526806576417201 0.00629803 0.03011120855808258 -0.0019485419616103172 446 90 90 60 2.567427184418353 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 86.01548424030436 15.540730476379395 32.34305191040039 11.024663925170898 324754.0 0.029147982597351074 119.87377014160145 86.00941467285156 1.7595381838730892 257.4408874511719 859.0143432617188 811.4574584960938 91779.0 408.3749176025391 1448.447412109375 316.056884765625 32.26731491088867 +sub-20007_ses-V3_task-cuff_run-01_bold 0.002074085778781038 0.00982624243792325 7 38.7392275537104 1.05949408040724 1.0064513226018093 0.43402295497119825 5582.01806640625 0.14249331709155297 2 0.45146726862302483 2.5233507604588143 2.541287399018312 2.4294540701288354 2.5993108122292954 0.00422463 0.0366896390914917 0.0010521458461880684 443 90 90 60 2.4650943039836837 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 107.41705913995116 14.87622356414795 29.451261520385742 10.582392692565918 328096.0 0.013544018380343914 100.66817474365234 82.50282287597656 1.5357856432837638 261.10198974609375 849.6727905273438 796.755126953125 88624.0 388.31683044433595 1458.2643249511716 323.2130432128906 30.9277400970459 +sub-20007_ses-V3_task-cuff_run-02_bold 0.0014056207674943565 0.010860812279909706 7 38.87133804585974 1.0874399989140267 1.000300609660633 0.4320068254267974 5421.49365234375 0.13527646157576556 0 0.0 2.5147160375048885 2.536229065885978 2.4118540708281966 2.5960649758004912 0.00788242 0.03592929616570473 0.0013606400461867452 443 90 90 60 2.4536440608534424 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 107.92097416974508 15.107148170471191 29.308320999145508 10.677201271057129 328592.0 0.0022573363967239857 98.96817321777348 83.41548919677734 1.4639142704080026 262.61639404296875 851.8464965820312 798.17041015625 88296.0 388.4537353515625 1468.1156921386719 325.29815673828125 29.56029510498047 +sub-20007_ses-V3_task-rest_run-01_bold 0.0009837303370786518 0.018918126741573033 5 43.89496749182431 1.0496019922747755 0.94724899286036 0.4331844834366546 5170.2919921875 0.20782970195045208 93 20.89887640449438 2.5426229939755207 2.5551623984669685 2.4369749031633177 2.635731680296275 0.0154407 0.030786851420998573 0.00271125347353518 445 90 90 60 2.500314911973228 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 110.5629039717813 15.402403831481934 28.023052215576172 10.988763809204102 328304.0 0.03820224851369858 94.27887687683074 74.65744018554688 1.50377566945492 259.823486328125 852.3397216796875 800.1876220703125 88542.0 393.8466262817383 1453.3889465332027 320.0329284667969 24.062110900878906 +sub-20007_ses-V3_task-rest_run-02_bold 0.002545592841163311 0.011814861342281881 3 39.71709337789238 1.1104338545291483 1.0182284468161429 0.430980359748193 5281.62548828125 0.15060012727585181 29 6.487695749440716 2.5159827032464683 2.540837399036193 2.4136874040886798 2.5934233066145325 0.00822338 0.03807229921221733 0.0008098800317384303 447 90 90 60 2.440410395869866 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 109.12562540427172 15.114582061767578 28.926544189453125 10.733780860900879 328674.0 0.0044742729514837265 95.98590431213368 82.94315338134766 1.4488753718436786 263.29290771484375 850.3526000976562 796.0369262695312 88104.0 382.7922958374024 1469.2189086914063 326.18792724609375 29.69586944580078 +sub-20009_ses-V1_task-cuff_run-01_bold 0.0014091685393258426 0.006256579123595506 5 31.512573216148667 1.0622682369594596 1.0302431899774784 0.5199546797134007 2821.107666015625 0.17571908486141444 1 0.2247191011235955 2.9032715640134135 2.574979064346192 3.402616531458834 2.732219096235214 0.0253288 0.011241123080253601 0.0388643853366375 445 90 90 60 3.0571005268669964 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 39.56478128931872 40.1801872253418 96.10304260253906 28.332584381103516 299551.0 0.02247191034257412 423.4101104736328 195.208740234375 1.9461177846282975 396.92584228515625 1573.202392578125 1516.70458984375 113950.0 839.4605865478516 2451.972705078125 496.1230163574219 42.89640808105469 +sub-20009_ses-V1_task-cuff_run-02_bold 0.001953265765765766 0.010483001441441441 6 34.42653258160273 1.043968145733635 1.0042698737923252 0.5217033542228594 2714.726806640625 0.264025882312121 14 3.1531531531531534 2.9379715547857916 2.6012748966346226 3.4409165299369286 2.771723237785824 0.017392 0.010631454177200794 0.03770821914076805 444 90 90 60 3.063795689186989 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 36.6719436988682 41.04537582397461 97.09481811523438 29.0247745513916 299393.0 0.09459459781646729 422.78695068359326 194.08824157714844 1.9118566426743735 395.8665771484375 1567.1522216796875 1513.3885498046875 114256.0 833.5366363525391 2440.98095703125 493.95654296875 35.43431091308594 +sub-20009_ses-V1_task-rest_run-01_bold 0.0019194382022471909 0.007598624134831461 5 32.36142598403155 1.0547044862612607 1.015306236081081 0.5196923063241224 2726.30419921875 0.21136892523925585 114 25.617977528089888 2.9205937824636017 2.5848915639523042 3.4291498637378273 2.7477399197006735 0.0151221 0.011025087907910347 0.03757752105593681 445 90 90 60 3.0396058998888256 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 37.004861253662476 41.08974075317383 95.82127380371094 29.0382022857666 299601.0 0.0516853928565979 416.6336975097656 191.44668579101562 1.9745172155748936 401.1554870605469 1582.8919677734375 1526.322509765625 114102.0 838.5214752197265 2472.2392456054686 502.1426696777344 40.36729431152344 +sub-20009_ses-V1_task-rest_run-02_bold 0.0041009887640449435 0.008943466876404495 5 34.66282545126125 1.0800869621396398 1.0420390468018017 0.522083996228589 2721.107666015625 0.27958135643525206 144 32.359550561797754 2.9060923962453855 2.5741707310449784 3.4069081979549645 2.7371982597362137 0.0187103 0.011526793241500854 0.03829779103398323 445 90 90 60 3.092955432734647 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 36.19466885872664 40.57666015625 96.67878723144531 28.71460723876953 299121.0 0.07640449702739716 424.1910095214844 193.15805053710938 1.9020490859907317 391.13714599609375 1561.258544921875 1508.2156982421875 114195.0 836.1139526367189 2421.7897216796864 487.6271667480469 36.98668670654297 +sub-20012_ses-V1_task-cuff_run-01_bold 0.0009433408577878104 0.014587249819413093 7 75.3593336338462 1.1116457795701369 0.9682862079864257 0.48551898810848876 1625.92578125 0.5763933897177672 70 15.801354401805868 2.598507730517388 2.5380165658149494 2.5718248978048606 2.685681727932353 0.00937737 0.012796827591955662 0.02537408284842968 443 90 90 60 1.9163348125866446 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 9 67.47142302504544 29.394350051879883 63.07221221923828 21.074493408203125 313154.0 0.06546275317668915 267.2161407470701 125.92706298828125 2.234218540074771 350.52667236328125 951.1419677734375 855.123046875 103384.0 400.6040771484375 1837.695043945311 446.22625732421875 23.13224220275879 +sub-20012_ses-V1_task-rest_run-01_bold 0.0010618243243243244 0.014119440090090089 6 70.09024628239281 1.0792222663882605 0.9961408025733637 0.4850035487651483 1718.7261962890625 0.5346397391540443 325 73.1981981981982 2.5979188391324963 2.5337707326503303 2.581912397404019 2.67807338734314 0.0120163 0.013249778188765049 0.023551680147647858 444 90 90 60 1.9392270765558095 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 79.64707855688822 29.207935333251953 62.69940948486328 20.89414405822754 313353.0 0.06081081181764603 262.4887390136719 126.89210510253906 2.237255434586201 348.3581237792969 959.1790771484375 862.1937255859375 103071.0 413.6464080810547 1842.2905883789062 444.604736328125 22.497303009033203 +sub-20013_ses-V1_task-rest_run-01_bold 0.0012451011235955058 0.008755337595505617 5 45.84051008472971 1.0989704773423419 1.006765431959459 0.4266456090148718 7471.271484375 0.3834324921815028 276 62.02247191011236 2.575563279438884 2.475604068294999 2.5881915638211743 2.662894206200478 0.00429719 -0.015000706538558006 0.027464935556054115 445 90 90 60 2.8127657062347606 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 54.78761543209328 15.272468566894531 29.028717041015625 10.629213333129883 334401.0 0.03595505654811859 109.25617980957031 55.73453903198242 1.818160756931153 289.91705322265625 942.7003784179688 925.4112548828125 84121.0 453.692138671875 1515.766357421875 329.0020751953125 30.578447341918945 +sub-20013_ses-V3_task-rest_run-01_bold 0.0007814446952595937 0.01267905663656885 7 43.26045864850675 1.0284899564479641 0.9675913503619908 0.4217880639247492 8382.595703125 0.3880532366864278 261 58.91647855530474 2.5963105072096972 2.5241540663657958 2.5826373973752106 2.6821400578880863 0.00320853 -0.01626274175941944 0.027221238240599632 443 90 90 60 2.8178168295378008 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 57.3255406491513 16.706886291503906 31.376604080200195 11.467268943786621 336160.0 0.015801355242729187 116.25067749023435 59.01276397705078 1.8487293780020524 329.96771240234375 1063.045654296875 1051.4842529296875 82470.0 504.7667129516601 1711.7320556640632 373.15338134765625 26.301939010620117 +sub-20016_ses-V1_task-cuff_run-01_bold 0.0012549886621315192 0.005347223854875283 9 32.244332716749966 1.115802243613636 0.9837325751363621 0.41015820965834626 19751.8203125 0.09821324002963573 0 0.0 2.4838812487931263 2.525458232980639 2.534612399283552 2.391573114115188 0.00309036 -0.004947737790644169 0.017198635265231133 441 90 90 60 2.1301185681524997 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 131.47200256737622 11.467473983764648 31.820329666137695 7.8843536376953125 330596.0 0.004535147454589605 126.6213150024414 90.46273040771484 4.778651474910427 395.02777099609375 1229.98388671875 1129.0 87168.0 578.0378967285156 2239.889392089842 530.014404296875 41.933982849121094 +sub-20016_ses-V1_task-cuff_run-02_bold 0.004885263157894737 0.004238293333333333 6 36.686846971607146 1.17420027375 1.0597075464285715 0.4106929592552096 21287.59375 0.17964788525422368 0 0.0 2.4737423598559465 2.510724900232756 2.5202915665192775 2.390210612815806 0.0227982 -0.0045916433446109295 0.016987046226859093 57 90 90 60 2.132172900214861 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 128.83144571942475 11.080500602722168 31.94495964050293 7.543859481811523 330047.0 0.0 128.8017578125002 92.42413330078125 4.672733765249431 392.5904235839844 1220.84375 1121.2982177734375 87650.0 570.7763122558594 2218.4772583007816 525.8916015625 45.17631530761719 +sub-20016_ses-V1_task-rest_run-01_bold 0.0013310561797752808 0.005840512584269663 5 32.786756983918934 1.1206861063063072 0.9869153334234236 0.4098496467845335 19873.18359375 0.10652155497772216 4 0.898876404494382 2.4844743088078864 2.521616566466627 2.5266957329314654 2.4051106270255667 0.00221065 -0.005055869463831186 0.018095897510647774 445 90 90 60 2.1409334271847356 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 134.92136470198568 11.38438606262207 31.552818298339844 7.847190856933594 330644.0 0.008988764137029648 125.55247306823725 90.62374114990234 4.4604349236735565 393.2727355957031 1228.2520751953125 1127.7247314453125 87104.0 581.3153015136719 2229.5598510742184 526.7413940429688 40.52272033691406 +sub-20016_ses-V1_task-rest_run-02_bold 0.0012856207674943566 0.006030343747178329 7 32.34898798058825 1.0930558089592761 0.9822764241855206 0.4104886770995208 19889.9140625 0.10989926445905462 6 1.3544018058690745 2.4915673659000843 2.5235873997216465 2.540512399049107 2.4106022989294997 0.00465056 -0.00540932035073638 0.01674765720963478 443 90 90 60 2.1272871014715524 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 137.56918040296463 11.32534122467041 31.502580642700195 7.765237331390381 329878.0 0.004514672793447971 126.63758888244605 89.88045501708984 4.780277994892047 393.8116149902344 1219.103515625 1118.2833251953125 87598.0 573.9563110351563 2219.9087646484368 525.6821899414062 39.80215072631836 +sub-20016_ses-V3_task-cuff_run-01_bold 0.0007314965986394556 0.007065027845804988 9 33.188835265454536 1.0290179363409093 0.9666152775454547 0.4273949377862692 14731.494140625 0.17288365995266647 0 0.0 2.46699238220964 2.4573707356861934 2.4866999011874236 2.456906509755303 0.00186185 -0.007708418183028698 0.020348602905869484 441 90 90 60 2.427814722916613 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 164.19058199657843 11.53807544708252 31.162330627441406 8.011338233947754 327355.0 0.022675737738609314 120.56077117919921 92.26181030273438 2.914541619570265 320.1715087890625 1048.0411376953125 979.6508178710938 90308.0 519.8645202636719 1797.7070251464843 403.5091247558594 36.386837005615234 +sub-20016_ses-V3_task-rest_run-01_bold 0.003926303854875283 0.008976350453514739 9 34.35339537113632 1.041108501340909 1.0204266914318179 0.42620618039246183 15171.5068359375 0.18876811130009696 41 9.297052154195011 2.4877090628094027 2.4683290685840817 2.4933290675906714 2.501469052253455 0.00551094 -0.006740168668329716 0.021749231964349747 441 90 90 60 2.4175816270823947 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 169.05703898511197 11.349807739257812 30.673852920532227 7.902494430541992 327294.0 0.022675737738609314 119.0952377319336 90.00811004638672 2.9921823235377216 320.2941589355469 1049.4583740234375 978.56689453125 90094.0 523.6234802246095 1804.5403930664058 404.76873779296875 31.53793716430664 +sub-20016_ses-V3_task-rest_run-02_bold 0.0012371685393258427 0.008796627483146068 5 34.05653679506761 1.0198667588963966 0.991060148918918 0.4280247676480544 15624.466796875 0.20978006481120393 95 21.348314606741575 2.479621559344769 2.457170735694141 2.491658234323731 2.490035708016435 0.00183217 -0.00790517870336771 0.0195494145154953 445 90 90 60 2.439062191011614 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 151.50470782207455 11.337742805480957 31.4000186920166 7.800000190734863 327115.0 0.008988764137029648 122.1849456787109 92.86408996582031 2.8999231467752136 317.35516357421875 1044.28173828125 975.788818359375 90402.0 519.6854248046875 1791.9636108398436 400.06500244140625 33.510902404785156 +sub-20017_ses-V1_task-cuff_run-01_bold 0.0006569387755102042 0.0036460782766439908 9 25.671388292227256 1.0578903828636377 0.9988983564545454 0.5075342283637089 4713.255859375 0.10682454637692561 0 0.0 2.9400493423538463 2.7257040583569188 3.3724123659923726 2.722031602712248 0.00512383 0.008020114153623581 0.04680915176868439 441 90 90 60 2.4631416142089755 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 26.496634052302195 37.62985610961914 119.09159088134766 25.757369995117188 300447.0 0.0 591.2446716308598 251.24832153320312 2.2380466380418795 560.8102416992188 1940.63330078125 1816.8662109375 112635.0 936.5004821777344 3358.9601562499984 737.6182250976562 50.346824645996094 +sub-20017_ses-V1_task-cuff_run-02_bold 0.001070045351473923 0.003808342290249433 9 25.254898257454553 1.0355191077727262 1.0068209011818188 0.5088798481355097 4923.0693359375 0.1251208886833796 0 0.0 2.9536062834308514 2.733824891367559 3.3907248652646995 2.736269093660295 0.00938125 0.0073632774874567986 0.04684699326753616 441 90 90 60 2.4626140142758297 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 25.54697690358678 37.26340866088867 120.61054229736328 25.458049774169922 300384.0 0.0022675737272948027 599.4884429931639 251.2249298095703 2.275235081893052 556.1273193359375 1933.2216796875 1809.72119140625 112850.0 934.4588470458984 3342.6080566406235 734.8748779296875 48.12569046020508 +sub-20017_ses-V1_task-rest_run-01_bold 0.0010220181405895693 0.003927868707482993 9 25.78724547302271 1.05019636209091 1.0005398145454538 0.5063575331919774 4657.4697265625 0.11416747362425647 3 0.6802721088435374 2.9642618402244714 2.760633223635625 3.404245698060763 2.7279065989770257 0.00734365 0.007030894048511982 0.043954942375421524 441 90 90 60 2.4110610274405366 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 26.05934696103062 38.073631286621094 119.2580337524414 26.21541976928711 300430.0 0.013605441898107529 588.5788177490231 249.980712890625 2.3704846639844135 570.085693359375 1960.9237060546875 1830.117919921875 112831.0 935.9025268554688 3421.840087890625 759.0474853515625 48.31829833984375 +sub-20017_ses-V1_task-rest_run-02_bold 0.0014557013574660633 0.005409560882352941 8 27.61081390643992 1.042839526530612 1.0332511305895697 0.51015443185003 4344.6015625 0.1427339967818203 20 4.524886877828054 2.9644868389034014 2.754829057199595 3.4041206980657304 2.7345107614448794 0.00637979 0.009062801487743855 0.045179933309555054 442 90 90 60 2.4596966223104224 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 24.29647335707445 38.74556350708008 122.3943862915039 26.893667221069336 300291.0 0.05882353335618973 609.8235473632812 252.9563446044922 2.2781447974086957 559.8566284179688 1940.5404052734375 1814.5091552734375 112821.0 941.3054809570312 3364.45263671875 737.6930541992188 43.67280578613281 +sub-20017_ses-V3_task-cuff_run-01_bold 0.0005388732394366197 0.002160506957746479 9 25.1418315760452 1.064796640310735 0.9991349019491521 0.500114651257365 4132.744140625 0.1218528610258189 0 0.0 3.000546538904805 2.816941554731466 3.3455582003927944 2.8391398615901555 0.00587425 0.012961111962795258 0.05776562541723251 355 90 90 60 2.1477383455257835 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 25.170203865467037 39.72121047973633 126.2830581665039 27.42816734313965 301119.0 0.002816901309415698 650.0365722656243 270.9223327636719 1.2289704063014728 722.499267578125 1982.4102783203125 1833.0928955078125 112044.0 836.89013671875 3630.108947753905 853.495361328125 57.44484329223633 +sub-20017_ses-V3_task-cuff_run-02_bold 0.003546621315192744 0.003474925918367347 9 24.429124147159097 1.0749864172954542 1.0326220495681815 0.5001036321099254 3906.84765625 0.12004246015591509 0 0.0 3.000822926392765 2.8144207214983017 3.341912367204334 2.8461356904756605 0.013273 0.011561035178601742 0.05934009701013565 441 90 90 60 2.1490857590361125 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 24.313290417294603 40.5194206237793 126.88280487060547 28.03514862060547 301952.0 0.013605441898107529 651.5811981201181 268.4786376953125 1.2889940516226162 715.18408203125 1974.4857177734375 1823.575927734375 111322.0 838.6586303710938 3613.729772949219 848.5318603515625 46.303749084472656 +sub-20017_ses-V3_task-rest_run-01_bold 0.0013188636363636362 0.003224997159090909 10 24.10418945362185 1.0428515879726648 1.0268316221867873 0.49913079116582687 4244.9560546875 0.1213609192643378 2 0.45454545454545453 3.028288199564983 2.8367248872786806 3.3843165321860105 2.863823179230258 0.010747 0.011123750358819962 0.05640559270977974 440 90 90 60 2.1445787247696053 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 25.428749161264715 39.551780700683594 125.02574920654297 27.390907287597656 301293.0 0.0181818176060915 636.1877197265622 266.02301025390625 1.2574779347295921 726.2390747070312 1994.3275146484375 1843.627197265625 111915.0 842.6070190429687 3658.321313476561 859.6648559570312 47.75897979736328 +sub-20017_ses-V3_task-rest_run-02_bold 0.0017035294117647057 0.003161740859728507 8 23.330712463174585 1.0452595143764172 1.0066302000907026 0.4993539556469826 3851.1064453125 0.11065070546774448 2 0.45248868778280543 3.0119437585499007 2.8294582209007655 3.3565415332896893 2.849831521459248 0.00838365 0.011509424075484276 0.05722562223672867 442 90 90 60 2.1253338689940158 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 23.217819561033032 40.69944763183594 127.55986785888672 28.288463592529297 302034.0 0.018099548295140266 658.6019409179686 268.8163757324219 1.2631305102296349 729.9400634765625 1992.2464599609375 1836.5147705078125 111328.0 841.2262603759766 3666.0766967773434 864.1026000976562 49.63115310668945 +sub-20018_ses-V1_task-cuff_run-01_bold 0.005761218274111674 0.009269971776649746 10 44.039255628826545 1.0976148802551025 1.0214851991836733 0.4006257645214631 9762.59765625 0.305302406780865 10 5.0761421319796955 2.4625993284139684 2.461595735518307 2.4645082354025747 2.461694014321023 0.00268492 -0.008812082931399345 0.02340811863541603 197 90 90 60 2.536419077428856 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 229.91756705352964 12.124223709106445 28.38665199279785 8.30964469909668 347295.0 0.005076142027974129 109.89847564697266 75.49645233154297 2.82392340288329 251.98211669921875 877.1243896484375 820.4365234375 73531.0 446.5507507324219 1478.3629150390625 323.4603271484375 31.927135467529297 +sub-20018_ses-V1_task-rest_run-01_bold 0.0026941891891891895 0.009054366463963964 6 40.08542542212192 1.0991963939729121 1.0694158367268627 0.4002434642945168 10907.146484375 0.2508650861620986 162 36.486486486486484 2.451309048504715 2.437070736492843 2.4629540687976648 2.4539023402236366 0.00556203 -0.009233465418219566 0.024618903174996376 444 90 90 60 2.5457001770888206 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 282.90449295380006 11.563630104064941 28.183486938476562 7.943694114685059 347513.0 0.006756756920367479 106.83198547363273 77.24343872070312 2.7203521563300397 248.5863494873047 873.3977661132812 816.4189453125 73357.0 445.8536071777344 1472.5901367187498 320.702880859375 32.63953399658203 +sub-20018_ses-V3_task-cuff_run-01_bold 0.007318851674641148 0.011476248612440192 8 38.97487965889423 1.0973443526442308 1.0698409930288462 0.39295849730725935 17867.400390625 0.26801314293550393 6 2.8708133971291865 2.2711814212925105 2.313662408063316 2.321008241104752 2.1788736147094636 0.00170633 -0.008219428360462189 0.018416877835989 209 90 90 60 2.8447334515424676 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 17 140.8565635211602 10.711623191833496 29.606870651245117 7.401913642883301 350851.0 0.023923443630337715 114.98803329467773 82.6600570678711 2.4093285450252004 255.52537536621094 1018.8561401367188 967.712890625 70615.0 538.9956848144532 1663.1831909179687 340.1745910644531 31.561630249023438 +sub-20018_ses-V3_task-cuff_run-02_bold 0.0016132579185520362 0.01596034583710407 8 40.90757642902493 1.06394801802721 0.9900651667120179 0.3925035295473193 17503.3671875 0.25137105326122416 2 0.45248868778280543 2.280916138956415 2.3068999083320336 2.3359790738431983 2.199869434694014 0.00377008 -0.009976140223443508 0.01931527629494667 442 90 90 60 2.8282290831703145 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 15 117.17246788641773 10.961864471435547 29.479021072387695 7.538461685180664 351452.0 0.011312217451632023 115.29842262268072 79.52729034423828 2.4927508123852293 254.24618530273438 1016.294921875 964.09619140625 70286.0 540.8394165039062 1661.7897033691406 340.88092041015625 28.58910369873047 +sub-20018_ses-V3_task-rest_run-01_bold 0.002821541950113379 0.012310404535147392 9 39.56433199963638 1.0865052744090904 1.0522468049999993 0.3915459335402125 17646.13671875 0.2382567760459526 95 21.541950113378686 2.260541146545241 2.2991290753074853 2.316745741274129 2.165748623054108 0.00249124 -0.009452177211642265 0.01947619765996933 441 90 90 60 2.803889402489806 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 12 126.2192929834915 10.902673721313477 29.69356918334961 7.469388008117676 351469.0 0.004535147454589605 114.27528686523416 83.07907104492188 2.6159753052943646 252.64414978027344 1018.2688598632812 965.1927490234375 70203.0 542.6079528808593 1671.826953124999 344.2310791015625 30.677162170410156 +sub-20018_ses-V3_task-rest_run-02_bold 0.0021691460674157304 0.014339016786516855 5 37.9185635550901 1.065715318828829 1.040872990225225 0.3928349598266196 17711.478515625 0.23479269925447635 89 20.0 2.261378646241257 2.299804075280663 2.317220741255254 2.1671111221878543 0.00228594 -0.009819271974265575 0.021897699683904648 445 90 90 60 2.827936635542193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 179.30139404948517 10.854647636413574 30.05224609375 7.44719123840332 351547.0 0.008988764137029648 118.84067382812508 84.66556549072266 2.592735680417335 252.22567749023438 1010.9717407226562 959.9697265625 70194.0 534.5893371582032 1647.790960693359 339.4570007324219 30.287216186523438 +sub-20019_ses-V1_task-cuff_run-01_bold 0.0010082432432432433 0.011484415540540539 6 26.226877113363443 0.9916411945823927 0.9829443835665911 0.4349764321707669 7388.03466796875 0.1181142345688548 2 0.45045045045045046 2.9291618250309277 2.7056707258196386 3.2704165367119895 2.811398212561154 0.00851637 -0.01153535582125187 0.03297000378370285 444 90 90 60 3.9173178147223107 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 43.94911922658615 25.778581619262695 67.34400939941406 18.02027130126953 346485.0 0.07432432472705841 314.9243408203123 148.27960205078125 0.8351304865038967 334.2801208496094 1503.999755859375 1533.3446044921875 74291.0 773.3277282714844 2088.4989013671875 391.4245300292969 35.75799560546875 +sub-20019_ses-V1_task-cuff_run-02_bold 0.0017237060702875399 0.01157800536741214 7 27.6107308438141 0.9841593203525643 0.9873135382051285 0.4349465574433639 7247.57763671875 0.1482241532169401 4 1.2779552715654952 2.942672931461807 2.725683225024413 3.2700832033919016 2.8322523659691075 0.0077652 -0.011455126106739044 0.034762024879455566 313 90 90 60 3.879766589051952 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 52.36975673487529 25.533437728881836 67.12646484375 17.883384704589844 345980.0 0.08626198023557663 314.1980895996094 151.57777404785156 0.8891620129018851 333.7655944824219 1490.6834716796875 1522.9200439453125 74741.0 753.7955322265625 2071.533447265625 392.5261535644531 35.28335189819336 +sub-20019_ses-V1_task-rest_run-01_bold 0.0008454054054054053 0.00913420168918919 6 25.715966097674922 1.002666931218962 0.9885318836568844 0.43362230732885493 7517.470703125 0.09443767196024921 8 1.8018018018018018 2.910096551331209 2.6982082261161713 3.237395704690786 2.794685723186669 0.00730257 -0.010213415138423443 0.03063981607556343 444 90 90 60 3.9316458408723656 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 43.132578295951944 25.42128562927246 65.79486846923828 17.70720672607422 346330.0 0.045045047998428345 308.09686279296875 145.03109741210938 0.8056567726336867 334.9245910644531 1509.1492919921875 1535.7275390625 74321.0 781.3851318359375 2097.504638671875 390.6041564941406 40.564823150634766 +sub-20019_ses-V1_task-rest_run-02_bold 0.0012763738738738738 0.01042646126126126 6 26.53313629024831 0.9810339134311519 0.9758657353273141 0.43698191700477707 7196.78759765625 0.1179571102362457 12 2.7027027027027026 2.9465923774260587 2.7339748913615987 3.281983202919038 2.8238190379975396 0.00467381 -0.011671716347336769 0.029010074213147163 444 90 90 60 3.8583250483957876 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 34.25682531712326 26.302833557128906 69.38786315917969 18.29279327392578 346324.0 0.05855856090784073 329.88378143310524 149.21920776367188 0.7847623769620284 345.7767333984375 1512.8277587890625 1544.8974609375 74570.0 761.210580444336 2109.8350219726567 400.403564453125 36.967952728271484 +sub-20019_ses-V3_task-cuff_run-01_bold 0.0012092415730337077 0.00891761095505618 6 33.87269002343658 0.9834689082253523 0.9955190729859148 0.4069756284700523 6011.4033203125 0.1896281196486271 1 0.2808988764044944 3.218792292754731 2.892395718399854 3.568437358203039 3.1955438016613 0.0151449 0.0018362948903813958 0.028222961351275444 356 90 90 60 2.8410015657928844 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 83.19214705133528 21.705963134765625 42.39237976074219 15.22191047668457 349264.0 0.10112359374761581 170.40042419433576 98.24835968017578 0.5663859390109249 374.0384521484375 1192.201416015625 1175.289306640625 71720.0 522.3818786621094 1904.8740783691408 413.68548583984375 29.245384216308594 +sub-20019_ses-V3_task-cuff_run-02_bold 0.0017233856502242156 0.010325071793721972 4 35.839797836471924 0.9858907607190991 0.9868055815730341 0.4059570259694752 5614.7353515625 0.2644082258307156 23 5.15695067264574 3.2848992201687035 2.916774884097779 3.6698831875052775 3.268039588903053 0.0248666 0.003031786996871233 0.028642356395721436 446 90 90 60 2.741039369522874 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 94.04632421588765 22.431840896606445 42.67789840698242 15.802691459655762 349399.0 0.12556055188179016 168.91324005126936 98.19931030273438 0.7970224265831587 383.39556884765625 1204.500244140625 1177.55615234375 71666.0 531.7242279052734 1957.1609497070312 429.59906005859375 26.46375274658203 +sub-20019_ses-V3_task-rest_run-01_bold 0.0008036711711711711 0.00921282394144144 6 32.06481755747179 0.9497549958916487 0.9674495534762981 0.40538263953643344 6057.8037109375 0.13508712304444978 16 3.6036036036036037 3.286450608872597 2.912220717612079 3.6784706871640407 3.268660421841671 0.0030493 0.004301127977669239 0.027888070791959763 444 90 90 60 2.796997559392416 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 102.84896624773374 21.390880584716797 40.29069137573242 15.056306838989258 348474.0 0.10585585981607437 158.32613143920855 94.47747802734375 0.704977301884957 377.5861511230469 1189.19091796875 1169.590087890625 72401.0 522.3919067382812 1905.6171875 418.15625 28.688068389892578 +sub-20019_ses-V3_task-rest_run-02_bold 0.001710605381165919 0.010154206860986547 4 32.23439049453934 0.9672018784494386 0.9912250091460668 0.40700884638539214 6104.486328125 0.15434387758811868 36 8.071748878923767 3.2316353428552507 2.892262385071819 3.58221235765567 3.2204312858382633 0.0155603 0.003317672060802579 0.02729618176817894 446 90 90 60 2.8333053891415525 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 83.16886004580296 22.08612060546875 43.56846237182617 15.513453483581543 349838.0 0.12107624113559723 174.5541542053222 100.26657104492188 0.5649037549098486 382.3784484863281 1218.9327392578125 1195.9002685546875 71252.0 547.6051971435547 1950.7950500488282 422.0836486816406 27.097929000854492 +sub-20020_ses-V1_task-cuff_run-01_bold 0.00226156462585034 0.007056214761904762 9 26.97106279434088 1.0138008367727267 1.0248149749545454 0.4956691206485708 5814.35107421875 0.16941140502271854 0 0.0 2.850479892786995 2.666204060721236 3.1195082093752142 2.765727408264536 0.020925 0.023986058309674263 0.027753250673413277 441 90 90 60 3.1373053972769713 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 21.282352787508856 31.010255813598633 102.28227233886719 21.603174209594727 313679.0 0.024943310767412186 504.06484680175697 227.50283813476562 1.3532286929520003 437.8988342285156 1680.6365966796875 1651.195068359375 101847.0 852.07392578125 2601.6826416015624 526.307373046875 36.36705780029297 +sub-20020_ses-V1_task-cuff_run-02_bold 0.0012459728506787327 0.005866033212669684 8 26.729522384875274 1.021902022267574 1.0092741226984123 0.49556310147271976 5839.96875 0.16387738222463324 1 0.22624434389140272 2.8173271250553538 2.6410707283866115 3.089116543916204 2.7217941028632464 0.0151617 0.023397069424390793 0.028158020228147507 442 90 90 60 3.1458353532652152 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 21.04192701755892 30.876365661621094 100.9119644165039 21.350679397583008 313758.0 0.018099548295140266 502.5531936645468 224.310791015625 1.3373602276558705 435.7828063964844 1672.9454345703125 1643.8055419921875 101840.0 848.5984771728515 2589.7247924804688 522.5313110351562 40.39476013183594 +sub-20020_ses-V1_task-rest_run-01_bold 0.002318175675675676 0.005510471981981982 6 26.98454581744921 1.0318855898419868 1.0184788759142218 0.4960420599492941 5738.0029296875 0.16659808684743738 32 7.207207207207207 2.845538230050259 2.672749893794461 3.116929042811034 2.746935753545282 0.0185746 0.023176616057753563 0.02496751770377159 444 90 90 60 3.07041587386779 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 21.624393065641627 31.822521209716797 105.75052642822266 22.069820404052734 313840.0 0.02477477490901947 521.8425720214843 235.80364990234375 1.387998152346304 457.62493896484375 1709.976318359375 1676.887451171875 101852.0 858.9776184082032 2672.7322998046875 546.1407470703125 40.5699348449707 +sub-20020_ses-V1_task-rest_run-02_bold 0.0022632805429864252 0.005789414932126697 8 25.994156718684824 1.0238540837414967 1.035988845351474 0.49589410382396415 5888.6923828125 0.1577969576204177 39 8.823529411764707 2.8401923971528675 2.6680457273147216 3.106720709883344 2.7458107542605372 0.0132509 0.021444642916321754 0.02801910974085331 442 90 90 60 3.1402539648807455 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 20.698333514144544 30.896495819091797 101.5842514038086 21.527151107788086 313473.0 0.03393665328621864 503.9556762695312 222.59580993652344 1.3610511865272636 440.9232177734375 1684.846435546875 1654.6470947265625 102087.0 855.7717712402344 2612.047631835937 526.9124755859375 40.552284240722656 +sub-20021_ses-V1_task-cuff_run-01_bold 0.001070022573363431 0.009851885440180586 7 31.40714178036198 1.031206606425339 1.0083223012669684 0.4954541402914843 3093.499267578125 0.16765439709611912 0 0.0 3.077640965845749 2.764999890128776 3.556104025359788 2.9118189820486817 0.00991865 0.003439190099015832 0.047959841787815094 443 90 90 60 3.7580384186320592 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 24.586319332797174 39.578453063964844 111.65867614746094 27.246049880981445 328567.0 0.013544018380343914 521.0684265136724 222.60772705078125 0.9174606500941884 353.4316101074219 1509.2451171875 1508.0654296875 89042.0 848.1484222412109 2160.9926025390623 401.288330078125 39.598941802978516 +sub-20021_ses-V1_task-cuff_run-02_bold 0.0007072297297297297 0.008567761418918919 6 32.416700944221205 1.0419627207900675 1.0213732113092555 0.4965485128034606 3089.661865234375 0.19467509435732924 0 0.0 3.081246520793613 2.7735415564560273 3.556041525362272 2.91415648056254 0.0114638 0.00341338780708611 0.04628638178110123 444 90 90 60 3.7524369108606916 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 24.935760640198833 39.856624603271484 113.49083709716797 27.409910202026367 328584.0 0.013513513840734959 529.9187286376946 225.5693817138672 0.8976462777071643 355.489013671875 1514.001220703125 1511.457275390625 89068.0 855.3658843994141 2172.7692382812497 402.791259765625 41.27711868286133 +sub-20021_ses-V1_task-rest_run-01_bold 0.001144627539503386 0.008909864943566591 7 33.14100265072401 1.055161058529412 1.0163404691176474 0.49446792659563865 3096.58837890625 0.20154190973714695 77 17.381489841986458 3.077568743654543 2.7698290566035486 3.5511998588879963 2.9116773154720845 0.0151932 0.0020334389992058277 0.04780030995607376 443 90 90 60 3.7402487125238144 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 27.782414608563496 39.80268478393555 111.64022064208984 27.503387451171875 328867.0 0.027088036760687828 519.905212402344 222.71224975585938 0.8717085334311685 359.1746826171875 1522.8367919921875 1519.194091796875 88872.0 858.986703491211 2188.756005859375 406.1723327636719 39.373252868652344 +sub-20021_ses-V1_task-rest_run-02_bold 0.0003855855855855856 0.007025958018018018 6 31.613399910158027 1.0369027967720088 0.9972131069977431 0.49733520504323936 2914.823486328125 0.15042855378597086 14 3.1531531531531534 3.068663190679757 2.7695665566139795 3.5359540261604776 2.900468989264813 0.0179367 0.0036185747012495995 0.04518701136112213 444 90 90 60 3.7623222932435474 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 23.428990439762398 40.53114318847656 113.84449005126953 27.9797306060791 328483.0 0.01576576568186283 534.6792785644528 224.60960388183594 0.9018383125111726 354.4222106933594 1510.7081298828125 1507.77587890625 89148.0 856.3289703369142 2168.24296875 400.75445556640625 42.17341232299805 +sub-20021_ses-V3_task-cuff_run-01_bold 0.001920561797752809 0.009174735550561797 5 38.944460117117124 1.053505867432432 1.0158189237162158 0.4914920614038515 3814.02880859375 0.33938867482306584 11 2.4719101123595504 3.1983798158588006 2.82993322088189 3.681866520362436 3.0833397063320755 0.0503181 0.008295120671391487 0.06264429539442062 445 90 90 60 3.2547532732856563 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 26.380019766763567 35.042720794677734 113.45238494873047 24.265169143676758 325146.0 0.040449440479278564 531.0264282226562 240.5122833251953 0.3878110099433645 427.176025390625 1495.7806396484375 1469.66064453125 91483.0 800.4298767089844 2271.085717773437 451.5404052734375 33.390689849853516 +sub-20021_ses-V3_task-cuff_run-02_bold 0.0004923370786516855 0.00963527750561798 5 39.46187635407655 1.0324505585585582 0.9680269224549549 0.49242596089486246 3757.5849609375 0.36825381836433196 19 4.269662921348314 3.187761763409032 2.8292123875772006 3.6642415210627908 3.069831381587104 0.0413963 0.007497021928429604 0.060677096247673035 445 90 90 60 3.2517159099616486 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 25.71673093362667 34.849483489990234 113.28741455078125 23.85618019104004 325338.0 0.013483146205544472 538.5312194824206 239.6184844970703 0.3806261865610887 428.6204528808594 1498.877197265625 1471.89208984375 91272.0 802.0024841308593 2279.0867919921866 452.6484069824219 33.552066802978516 +sub-20021_ses-V3_task-rest_run-01_bold 0.004588520179372197 0.011712377892376682 4 34.73013405098876 1.0829025386966284 1.0831581094382008 0.4915563575942516 3609.146728515625 0.29244114207753413 166 37.219730941704036 3.2147659249015206 2.842649887043242 3.7111748525311605 3.0904730351301604 0.0695419 0.0060201771557331085 0.06166047975420952 446 90 90 60 3.2368689828717776 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 25.958575410718556 36.34037780761719 116.27642822265625 25.304933547973633 326249.0 0.10089686512947083 546.9552124023421 242.88241577148438 0.43200780581528875 434.8778991699219 1520.5460205078125 1491.99560546875 90717.0 817.5758056640625 2317.5337890625 460.93536376953125 29.62328338623047 +sub-20021_ses-V3_task-rest_run-02_bold 0.0125718202247191 0.011238390876404497 5 44.99791130290536 1.1549196579279275 1.177334722477477 0.4948842471030296 2799.010498046875 0.49985962418191726 320 71.91011235955057 3.296477018362934 2.945487382956847 3.7809790164240598 3.162964655707896 0.0774522 -0.00029614573577418923 0.06281601637601852 445 90 90 60 3.0283385605831237 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 16 27.490733178489343 43.991641998291016 126.66577911376953 30.47191047668457 328527.0 0.11910112202167511 573.5577575683598 253.426513671875 0.4818503624000101 498.1977844238281 1570.5316162109375 1534.85400390625 90149.0 817.1788818359375 2440.5780273437485 506.82757568359375 26.111557006835938 +sub-20022_ses-V1_task-rest_run-01_bold 0.0010752595936794583 0.01252730683972912 7 60.188742158574634 1.1077033476470584 0.9872275304977381 0.5062686311383626 2136.26220703125 0.7300107258288734 374 84.42437923250564 2.8557340461426293 2.5155290667085226 3.219999872048701 2.8316731996706648 0.0146284 0.010481764562427998 0.040899526327848434 443 90 90 60 2.5873782074710343 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 49.27680188840731 42.530269622802734 88.0268325805664 31.1331844329834 302806.0 0.20767495036125183 360.4396286010742 177.39231872558594 1.9933031084184867 456.0625305175781 1548.541748046875 1456.954833984375 112205.0 791.2690673828125 2603.6244140624985 563.0983276367188 28.846595764160156 +sub-20023_ses-V1_task-rest_run-01_bold 0.0003849774774774775 0.0031640776126126125 6 27.496414133137723 1.0790726104514672 0.992126450045146 0.5102673513657825 7064.11474609375 0.14139844641695012 1 0.22522522522522523 2.906863236242017 2.7190373919551614 3.2980457022807714 2.7035066144901183 0.00823807 0.004755464382469654 0.026973657310009003 444 90 90 60 2.788739483810355 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 30.886137422090336 30.560306549072266 93.68169403076172 20.939189910888672 294047.0 0.0 459.1331085205079 215.09378051757812 1.4234758401696626 523.8560791015625 1890.4683837890625 1798.5833740234375 118376.0 963.0557556152344 3091.6505126953125 644.9421997070312 54.026100158691406 +sub-20023_ses-V1_task-rest_run-02_bold 0.0005333634311512416 0.0031060611738148985 7 27.724279058461534 1.090401346153846 1.001835333438913 0.5106464421323095 7096.98486328125 0.14720664255313706 5 1.1286681715575622 2.9007493493030823 2.710074892311299 3.2972582023120642 2.694914953285883 0.00872419 0.0047286199405789375 0.027464618906378746 443 90 90 60 2.7966417250339073 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 30.706026705087837 30.431833267211914 94.35621643066406 20.835214614868164 294223.0 0.0 465.8968566894526 216.80311584472656 1.4135184076945864 523.423828125 1888.4564208984375 1796.5643310546875 118306.0 964.1551971435547 3084.127685546875 642.3978881835938 55.58814239501953 +sub-20023_ses-V3_task-rest_run-01_bold 0.0005185327313769752 0.0027527910835214446 7 26.145719044864286 1.0654457666968324 0.9950995776923086 0.4970555005676969 6602.310546875 0.16937640986505784 18 4.063205417607223 3.0692764569163598 2.887816551915147 3.451266529525656 2.8687462893082762 0.00763696 0.00485942093655467 0.039944324642419815 443 90 90 60 2.2139622961384573 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 0 37.61729048365504 31.385652542114258 96.74620056152344 21.437923431396484 293987.0 0.0 478.5056457519531 228.99574279785156 0.9124893356558132 726.973876953125 1957.2694091796875 1817.166015625 118316.0 845.4226837158203 3529.243896484375 820.7720336914062 52.64067459106445 +sub-20024_ses-V1_task-rest_run-01_bold 0.0003463122171945701 0.004167853891402715 8 27.574789008140595 1.0298485229705214 0.9875232391383223 0.4493868827079458 8535.802734375 0.222831734822281 144 32.57918552036199 2.8610229493723307 2.546483232145181 3.278149869738028 2.7584357462337836 0.00808065 -0.015388791449368 0.02369898557662964 442 90 90 60 3.7062594469855212 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 26.23774423950788 28.350574493408203 75.93804931640625 19.328054428100586 334994.0 0.0022624435368925333 348.61301727294835 159.38070678710938 0.8113580255678778 411.3665771484375 1769.34423828125 1777.90966796875 84510.0 945.8769653320312 2557.7184814453126 479.7017517089844 50.94120788574219 +sub-20024_ses-V1_task-rest_run-02_bold 0.00043002262443438913 0.003968191018099548 8 26.675304019138295 1.0343305880725617 0.9925858596598639 0.45024113408955097 8588.4892578125 0.21562270275381454 126 28.506787330316744 2.8507243398228055 2.532574899364515 3.2669623701825787 2.7526357499213217 0.00868709 -0.015876706689596176 0.02288063056766987 442 90 90 60 3.7174794232605857 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 25.52318140749492 28.216407775878906 76.83011627197266 19.210407257080078 335077.0 0.0 353.68597412109386 161.2612762451172 0.802965499330222 407.433837890625 1768.858642578125 1777.2239990234375 84529.0 948.0140747070313 2553.1788574218745 478.0694885253906 52.51835632324219 +sub-20025_ses-V1_task-cuff_run-01_bold 0.0024591628959276016 0.009437437126696833 8 45.56127700043085 1.0558878654421766 0.9669515877324264 0.4752586640940105 4938.79736328125 0.30389051593422073 24 5.429864253393665 2.6099874830017273 2.616724896020695 2.5945832302338587 2.6186543227506274 0.00825366 0.003917871508747339 0.03243430331349373 442 90 90 60 1.9184143376251654 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 5 142.0194759843486 20.202972412109375 47.73360061645508 14.228507041931152 300192.0 0.04524886980652809 199.19661254882817 111.44989013671875 8.653286382105476 396.18524169921875 1144.7535400390625 1040.25341796875 113042.0 512.6640350341797 2112.5792236328125 542.2440795898438 29.253623962402344 +sub-20025_ses-V1_task-cuff_run-02_bold 0.00108313769751693 0.004357860451467268 7 37.697043410113146 1.107536323076923 0.9999808588914033 0.47514799120055146 5504.7880859375 0.17504519057474097 0 0.0 2.5709416497563105 2.5722957311194845 2.5660748980333445 2.574454320116102 0.00780198 0.0037317094393074512 0.03206152841448784 443 90 90 60 1.9106154472409165 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 146.45250533492694 19.34076499938965 48.16619873046875 13.433408737182617 299809.0 0.009029345586895943 206.99368286132776 115.108154296875 8.69146075894964 395.65399169921875 1145.6328125 1039.595947265625 113235.0 512.8715637207032 2115.988500976562 544.1133422851562 40.05839538574219 +sub-20025_ses-V1_task-rest_run-01_bold 0.002407865168539326 0.005521691078651686 5 40.43580468060811 1.1110594263288287 1.0072402224774781 0.47512766461789585 5342.9697265625 0.2106718712687075 59 13.258426966292134 2.5846610939104306 2.6057457297903013 2.5660873980328485 2.5821501539081426 0.00886811 0.003547784872353077 0.03104965202510357 445 90 90 60 1.9133976840283726 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 3 88.73465932617084 19.700284957885742 48.077239990234375 13.692134857177734 299818.0 0.02247191034257412 202.5149414062499 111.08605194091797 8.659818686559559 400.48583984375 1148.8480224609375 1044.3236083984375 113365.0 510.5132568359375 2121.152880859374 545.79296875 35.365623474121094 +sub-20025_ses-V1_task-rest_run-02_bold 0.0007087133182844245 0.005602817674943566 7 37.95548383332581 1.075825393122171 0.9841494233031668 0.47900298109219347 5121.40283203125 0.18518574333047397 21 4.74040632054176 2.5736860941696555 2.5837415639980015 2.5605082315878778 2.576808486923088 0.0100052 0.004867133218795061 0.03308439627289772 443 90 90 60 1.9572322503141217 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 92.61837293125727 19.93648338317871 49.037357330322266 13.925508499145508 299924.0 0.02483070082962513 209.69741210937462 110.71155548095703 8.243761625921971 388.0234375 1133.542724609375 1032.2596435546875 113297.0 510.5350036621094 2079.1453613281246 527.405517578125 37.143978118896484 +sub-20025_ses-V3_task-cuff_run-01_bold 0.0008162217194570135 0.005982658959276018 8 31.150010777256245 1.048767327324263 1.0049388799092978 0.48439535601568984 7020.74267578125 0.14624789312178105 0 0.0 2.4571590387534417 2.4965207341305122 2.449799902653698 2.4251564794761142 0.00470275 0.0032585959415882826 0.03143983706831932 442 90 90 60 2.186868387787716 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 56.03535360039759 18.27760124206543 51.30081558227539 12.524887084960938 301419.0 0.0022624435368925333 228.22376251220655 116.30731201171875 9.784569945300854 328.151611328125 1157.389892578125 1068.6199951171875 112047.0 577.5389221191407 2010.5023925781243 488.6509094238281 38.75050354003906 +sub-20025_ses-V3_task-cuff_run-02_bold 0.0007738775510204081 0.00605511537414966 9 32.477862587727294 1.0565184502500002 0.9992760432727266 0.48501141194317554 6750.88134765625 0.15864613931161087 0 0.0 2.4586215397466877 2.500549900637074 2.446983236098956 2.428331482504033 0.0036815 0.0031232282053679228 0.031071819365024567 441 90 90 60 2.195918251059519 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 60.74267017750702 18.403095245361328 50.8961181640625 12.664399147033691 300918.0 0.00907029490917921 227.46519775390618 115.01775360107422 9.536422961870445 327.30877685546875 1150.97216796875 1063.8231201171875 112375.0 571.956463623047 1997.654931640624 484.45263671875 38.91643142700195 +sub-20025_ses-V3_task-rest_run-01_bold 0.0009451590909090909 0.006028616818181818 10 31.802082804829208 1.047316563507973 0.9921542527334851 0.484616380856566 6922.41259765625 0.1449906777586318 1 0.22727272727272727 2.446577090413664 2.4860332345472482 2.44157490298053 2.412123133713214 0.0105064 0.0030382894910871983 0.03037831373512745 440 90 90 60 2.207852996535621 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 65.47203217795752 18.39437484741211 51.31236267089844 12.656817436218262 301221.0 0.00909090880304575 226.97044372558594 118.50593566894531 9.639884665420185 329.48138427734375 1164.1475830078125 1077.5408935546875 112215.0 579.1204223632812 2013.262390136716 488.0470275878906 38.600738525390625 +sub-20025_ses-V3_task-rest_run-02_bold 0.0006619909502262443 0.006011476085972851 8 31.909480979387755 1.04955310952381 0.9906078281405901 0.48606304514056803 6692.365234375 0.15745872804450817 1 0.22624434389140272 2.440504868056062 2.4778165682070825 2.4327124033326943 2.4109856326284085 0.00448973 0.003197933081537485 0.031060663983225822 442 90 90 60 2.220352253997077 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 61.74783960598073 18.602970123291016 51.424373626708984 12.751132011413574 300926.0 0.004524887073785067 231.44005584716797 116.05607604980469 9.661876971948885 325.7163391113281 1154.8291015625 1069.185546875 112301.0 578.8145141601562 1995.208251953125 481.53656005859375 38.57719802856445 +sub-20026_ses-V1_task-cuff_run-01_bold 0.0017534988713318283 0.006311711286681716 7 26.36579262400452 1.0114573256787336 1.0300646704072398 0.46016018547944304 5779.98095703125 0.17203474532197244 0 0.0 2.917596546326905 2.6857540599443888 3.2486623709097553 2.8183732081265718 0.00565359 -0.0049400837160646915 0.022283034399151802 443 90 90 60 2.9628075065797277 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 41.63443993052911 29.561683654785156 71.89569854736328 20.656885147094727 327286.0 0.07223476469516754 334.2550964355469 147.9857177734375 0.6840162704010666 448.882080078125 1601.414306640625 1565.24267578125 90106.0 721.2889404296875 2520.470703125 528.294189453125 40.415313720703125 +sub-20026_ses-V1_task-cuff_run-02_bold 0.0008573755656108599 0.003918977669683258 8 26.39645790587303 1.04530794276644 1.0082461192517016 0.45970797250636286 5605.607421875 0.15207686145730365 0 0.0 2.868716003824152 2.643583228286774 3.200112372838959 2.762452410346724 0.00838746 -0.0049872687086462975 0.022397801280021667 442 90 90 60 2.9590225535034405 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 39.84681925833614 29.99083137512207 71.32650756835938 20.68778419494629 327280.0 0.009049774147570133 334.7557891845703 146.54562377929688 0.7098806324372329 446.4880676269531 1593.169921875 1558.762451171875 90161.0 716.4140625 2506.726318359375 526.7799682617188 50.62427520751953 +sub-20026_ses-V1_task-rest_run-01_bold 0.0013262045454545453 0.0037924355 10 25.732313777539883 1.0434857138041003 1.0252075769931668 0.4578247681143283 6030.8046875 0.16038776596276258 33 7.5 2.8895451658194733 2.6630873941784143 3.2237498718996895 2.7817982313803156 0.00764212 -0.0037752657663077116 0.02107839658856392 440 90 90 60 2.95799146313099 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 37.42440672519262 29.01519775390625 69.25624084472656 20.0 327093.0 0.004545454401522875 327.3418151855468 143.2267303466797 0.693734634337114 450.053955078125 1598.16064453125 1565.432861328125 90198.0 715.3426147460938 2510.9456787109375 529.2186279296875 49.79447555541992 +sub-20026_ses-V1_task-rest_run-02_bold 0.000761764705882353 0.006033868099547511 8 26.300199115124713 0.9993308372789119 0.9784661418367351 0.4604176911870853 5633.67626953125 0.1833774141781154 46 10.407239819004525 2.880218779412178 2.6486748947511156 3.220808205349914 2.7711732381355043 0.00733297 -0.004958045203238726 0.019175587221980095 442 90 90 60 2.998085446649295 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 33.09596893437216 30.125003814697266 71.55625915527344 20.859729766845703 327656.0 0.03393665328621864 335.40330505371094 143.28553771972656 0.6821577619443842 447.0112609863281 1605.0433349609375 1570.065673828125 89931.0 736.2850952148438 2514.7998046875 523.6865234375 43.023468017578125 +sub-20026_ses-V3_task-cuff_run-01_bold 0.0036816742081447963 0.003248988891402715 8 22.05703061941043 1.0581777640136052 1.0748956499092968 0.45463932515716043 6162.4365234375 0.1156432506345789 0 0.0 3.056192367260325 2.884487385380769 3.431024863663321 2.8530648527368845 0.0036392 -0.010088919661939144 0.022309551015496254 442 90 90 60 2.410261184166389 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 32.565014408228116 33.439056396484375 91.99564361572266 23.255657196044922 327364.0 0.05203619971871376 445.2811386108396 193.176513671875 0.40723727101519724 705.3027954101562 1918.1488037109375 1839.3485107421875 90629.0 738.228564453125 3292.9115234374995 763.1282348632812 49.90798568725586 +sub-20026_ses-V3_task-cuff_run-02_bold 0.0013344018058690744 0.0033969794582392773 7 21.971427913212672 1.0204756771040722 0.9886315478506777 0.45459444620229716 5977.865234375 0.10738764447971193 0 0.0 3.0493895905368316 2.8785207189511968 3.420529030747055 2.8491190219122426 0.0114524 -0.01126176305115223 0.023092396557331085 443 90 90 60 2.3998584926150253 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 31.92722505924977 33.84215545654297 92.57684326171875 23.440181732177734 327410.0 0.03837471827864647 452.41580963134754 194.4091033935547 0.41225783312964337 710.65185546875 1920.4930419921875 1843.294677734375 90768.0 728.6362579345703 3307.3788940429686 768.0805053710938 49.5145378112793 +sub-20026_ses-V3_task-rest_run-01_bold 0.0010980498866213152 0.002438512448979592 9 21.577339124613637 1.0521849398181824 1.0109880077500002 0.452113212352132 6161.9990234375 0.10264117994811205 1 0.22675736961451248 3.0217409864715923 2.855974886513754 3.390062365291025 2.819185707609998 0.0101417 -0.011533241719007492 0.021370016038417816 441 90 90 60 2.4223889621382932 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 31.23196220302612 33.538414001464844 89.70361328125 23.120182037353516 328308.0 0.013605441898107529 435.89411010742174 187.57069396972656 0.34028941379972677 710.5260620117188 1928.9259033203125 1850.142822265625 89973.0 751.223583984375 3312.6140625 763.7636108398438 57.20860290527344 +sub-20026_ses-V3_task-rest_run-02_bold 0.0008452262443438914 0.003934889592760181 8 21.811023275192756 0.9985336078231293 0.9880415652380956 0.45403043702461116 5955.67919921875 0.11448967356860212 9 2.0361990950226243 3.058528478784419 2.8865582186318153 3.438508196699294 2.8505190210221474 0.00677892 -0.010680662468075752 0.020161444321274757 442 90 90 60 2.4064150265987063 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 28.91686011799944 34.099853515625 91.75994110107422 23.755657196044922 327833.0 0.07692307978868484 444.42807617187475 189.38917541503906 0.35648272972336503 710.34765625 1931.154052734375 1850.5452880859375 90507.0 740.6982116699219 3326.2087890625 769.0007934570312 48.20690155029297 +sub-20027_ses-V1_task-cuff_run-01_bold 0.0005469614512471655 0.0040083532426303855 9 29.069473470340913 1.1070822429090894 0.9843516392272729 0.48032132045043024 6648.74609375 0.07158073038225773 0 0.0 2.8875548958561352 2.624304062386192 3.2954957023820994 2.742864922800113 0.00950334 -0.013402758166193962 0.0366985946893692 441 90 90 60 2.73991928901957 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 38.65671090616867 28.54261589050293 86.21311950683594 19.562358856201172 317523.0 0.004535147454589605 424.0127044677731 188.8796844482422 2.648589179309826 456.7289123535156 1670.815185546875 1591.1134033203125 99991.0 865.9580688476562 2713.01708984375 580.7125244140625 50.91609191894531 +sub-20027_ses-V1_task-cuff_run-02_bold 0.0011250675675675676 0.0037086097972972975 6 28.941803753476297 1.1240406325959373 0.9996093410383744 0.48072624737333264 6540.30810546875 0.07821177909671086 0 0.0 2.8876493387744255 2.621104062513349 3.291316535881498 2.75052741792843 0.0116027 -0.012735128402709961 0.035637639462947845 444 90 90 60 2.7474837390059914 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 35.044494868665836 28.82058334350586 87.14813995361328 19.799549102783203 317767.0 0.011261261999607086 430.6862731933594 188.26443481445312 2.697613998432576 456.3075866699219 1675.6827392578125 1595.4954833984375 99745.0 875.3477416992188 2718.4085937499976 580.7086181640625 52.36497116088867 +sub-20027_ses-V1_task-rest_run-01_bold 0.0008188461538461538 0.0035245943212669686 8 29.047681536145117 1.1327768390702948 1.0170985983446716 0.4794539637721129 7028.94970703125 0.0846651977337036 3 0.6787330316742082 2.8761493450055906 2.6202457292141226 3.286737369396791 2.7214649364058583 0.0119984 -0.013165959157049656 0.035751473158597946 442 90 90 60 2.746133399908274 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 39.262508711179805 27.78705406188965 84.927978515625 19.115385055541992 317652.0 0.0067873308435082436 416.49299926757817 185.97084045410156 2.69905301528237 456.3749084472656 1671.18212890625 1592.1719970703125 99924.0 871.2572937011719 2712.101892089843 579.783935546875 51.9891357421875 +sub-20027_ses-V1_task-rest_run-02_bold 0.0010748198198198197 0.00362724990990991 6 29.38624265787808 1.1251009415575626 0.9949667018510168 0.48105157967783624 6560.43603515625 0.08191410138890742 7 1.5765765765765767 2.8824798967680856 2.6150998960852663 3.2930498691459547 2.7392899250730354 0.00797983 -0.013323034159839153 0.03605306148529053 444 90 90 60 2.742383778888873 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 34.86726758727618 28.847301483154297 87.30016326904297 19.743244171142578 317673.0 0.006756756920367479 434.1283874511719 187.94036865234375 2.8087103512312854 456.7917175292969 1676.9327392578125 1594.427978515625 99763.0 882.0229736328125 2724.4024658203116 581.3992919921875 51.86384582519531 +sub-20027_ses-V3_task-cuff_run-01_bold 0.016251851015801354 0.006330141151241536 7 29.519926856425343 1.202821109411765 1.1409106363122183 0.46837651113487944 6201.783203125 0.1388201120660598 9 2.0316027088036117 2.9963923885411567 2.7595582236783414 3.4717040287135434 2.7579149132315868 0.0132096 -0.015383299440145493 0.04530758410692215 443 90 90 60 2.2134133554005366 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 47 44.56899709470464 30.55398941040039 91.8115005493164 21.016929626464844 316926.0 0.031602710485458374 455.1489944458008 206.08230590820312 3.8258617845563903 605.7550048828125 1819.344482421875 1688.30810546875 100192.0 866.4177429199219 3218.945935058593 762.7584228515625 38.80916213989258 +sub-20027_ses-V3_task-cuff_run-02_bold 0.004786779279279279 0.0114929559009009 6 33.03148033731376 0.9844197548758467 0.9561018818058685 0.4699076377189162 5868.21142578125 0.23530108478554101 22 4.954954954954955 3.0454090420875244 2.793724888987347 3.528354026462474 2.8141482108127525 0.00681465 -0.01624790020287037 0.044789981096982956 444 90 90 60 2.2164976172600497 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 42.387864609805504 31.421817779541016 94.83850860595703 21.961711883544922 317968.0 0.13513514399528503 463.55529937744086 205.71737670898438 3.6265723998701676 606.0770263671875 1824.410888671875 1692.7657470703125 99611.0 868.2545166015625 3237.1048583984375 763.7081298828125 30.26612091064453 +sub-20027_ses-V3_task-rest_run-01_bold 0.002451545454545454 0.003041950363636363 10 25.927651872414543 1.1225024839863325 1.0372268563325735 0.46695942737774204 7057.40625 0.0873826034216642 5 1.1363636363636365 2.9821187805411857 2.7506415573659915 3.4506040295519815 2.745110754705585 0.00484558 -0.015595920383930206 0.04500313475728035 440 90 90 60 2.214916317194928 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 47.24396001515314 29.230850219726562 89.63754272460938 19.888635635375977 317009.0 0.0 442.81861572265615 201.445068359375 3.8281267723960175 603.4089965820312 1820.8819580078125 1688.7181396484375 100155.0 867.5131408691407 3220.3312499999997 762.4259643554688 53.32294464111328 +sub-20027_ses-V3_task-rest_run-02_bold 0.004637995495495495 0.00859431509009009 6 34.03150530909708 1.045909349909707 0.9839314828893911 0.4702523337679496 5899.21142578125 0.2277134211384843 86 19.36936936936937 3.030510432685189 2.7781873896047515 3.5048165273977703 2.8085273810530467 0.00941155 -0.016582777723670006 0.044982146471738815 444 90 90 60 2.200462434385326 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 39.71777881126779 31.428499221801758 95.1830062866211 21.876127243041992 317738.0 0.10585585981607437 468.09528198242174 205.27427673339844 3.6427926140484725 610.7987060546875 1825.6798095703125 1692.802978515625 99872.0 865.7354949951173 3253.898657226562 769.2903442382812 33.845035552978516 +sub-20028_ses-V1_task-rest_run-01_bold 0.0009702045454545456 0.010305041795454545 10 52.63444700640086 1.071895341776765 0.9631717841913437 0.44409737099088814 8162.39892578125 0.3237723807865739 257 58.40909090909091 2.6059910313778603 2.483858234633675 2.7455998908996624 2.5885149686002435 0.0109168 -0.01157455239444971 0.02179723232984543 440 90 90 60 2.344678770892969 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 151.70763245364398 16.621992111206055 37.18636703491211 11.597726821899414 320079.0 0.02499999850988388 147.6272735595703 86.0246353149414 2.835712318558686 338.69390869140625 1131.815185546875 1048.7340087890625 96267.0 553.4911071777344 1995.338623046875 447.2802734375 28.141550064086914 +sub-20029_ses-V1_task-cuff_run-01_bold 0.0006197291196388262 0.009495935237020317 7 40.6285473534615 1.0197643385294122 0.980481964004525 0.5050961617561833 1969.292236328125 0.4767293201994254 41 9.255079006772009 2.856774348556204 2.6554998944799144 3.207354039217868 2.7074691119708305 0.00758268 0.03210706636309624 0.03999133035540581 443 90 90 60 2.89006690966364 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 30.783141984682224 46.49614715576172 118.30590057373047 34.340858459472656 315433.0 0.09029345214366913 536.5552978515617 247.72097778320312 2.0612067860444654 415.2223815917969 1584.6812744140625 1524.4447021484375 100141.0 828.9142456054688 2534.27099609375 527.4746704101562 34.816585540771484 +sub-20029_ses-V1_task-cuff_run-02_bold 0.0007636425339366515 0.008751654411764705 8 36.57692096571427 1.0462750570521546 1.0068764021315195 0.5057531383040151 1879.133056640625 0.34241759011696404 3 0.6787330316742082 2.829327135132671 2.6313373954400463 3.187970706654759 2.668673303303208 0.00674858 0.029715564101934433 0.04148418456315994 442 90 90 60 2.8921427807230917 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 29.545992917164682 47.53719711303711 119.5513687133789 35.04072570800781 315822.0 0.027149323374032974 545.040203857422 247.8122100830078 2.120519309436033 415.7122802734375 1592.2198486328125 1528.76708984375 99646.0 844.5684661865234 2548.5634155273438 528.590576171875 38.91975402832031 +sub-20029_ses-V1_task-rest_run-01_bold 0.0008781489841986457 0.007656516659142212 7 35.036822185135755 1.051399256153845 1.00660497699095 0.503784936701876 2025.426025390625 0.3313448318024639 234 52.8216704288939 2.830207688726849 2.6305415621383363 3.1817123735701096 2.6783691304721002 0.00568728 0.0320606604218483 0.03688710182905197 443 90 90 60 2.881936299541293 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 30.62494278247474 46.07780456542969 116.10411834716797 33.79232406616211 315575.0 0.015801355242729187 526.3092651367188 241.43069458007812 2.147512104031806 418.23773193359375 1598.0762939453125 1531.90966796875 99888.0 847.072265625 2558.6672973632812 531.5530395507812 40.36241149902344 +sub-20029_ses-V1_task-rest_run-02_bold 0.0013549324324324326 0.009584193873873876 6 33.995866788465015 1.0444533145146733 1.0201958244921 0.5059885522257712 1865.1220703125 0.281190511353032 187 42.11711711711712 2.8283201908714553 2.6327915620489293 3.1842165401372697 2.6679524704281676 0.00599162 0.032248422503471375 0.03855085372924805 444 90 90 60 2.875848676357964 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 28.463326036180046 47.727108001708984 119.4510726928711 35.06306457519531 315729.0 0.05855856090784073 545.0378417968748 245.53399658203125 2.1850495088623205 417.2356262207031 1588.725341796875 1526.288330078125 99775.0 836.6218811035156 2544.7851318359367 530.7235717773438 39.068267822265625 +sub-20029_ses-V3_task-cuff_run-01_bold 0.0007908126410835213 0.0063507133634311515 7 37.702912149366504 1.047814852895927 0.9756068137330308 0.5051038644611896 1637.9935302734375 0.37648928737981896 1 0.22573363431151242 3.080715976979723 2.85447905323986 3.532504026297568 2.8551648514017414 0.00806364 0.020057905465364456 0.04905472323298454 443 90 90 60 2.2354960340523204 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 30.41759972094438 54.453006744384766 141.41062927246094 39.0462760925293 311156.0 0.020316027104854584 632.5011596679688 290.55084228515625 3.143727905591261 570.038818359375 1757.0477294921875 1617.189697265625 103699.0 876.5641052246094 3123.15185546875 723.4107666015625 40.53404998779297 +sub-20029_ses-V3_task-cuff_run-02_bold 0.0007609706546275396 0.005958281986455982 7 36.11459101176471 1.0596650389366522 0.9835793904524883 0.5058073781851015 1600.162109375 0.3477876609498756 1 0.22573363431151242 3.0773034789481652 2.8563582198318556 3.529612359745806 2.845939857266835 0.00753056 0.019552787765860558 0.049890998750925064 443 90 90 60 2.23013945799187 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 28.87610266667954 54.9182014465332 143.04293823242188 39.5045166015625 311048.0 0.018058691173791885 646.777227783203 293.511962890625 3.1758961490394624 568.3955078125 1751.8621826171875 1613.117431640625 103803.0 866.3377197265625 3110.189306640624 723.3223266601562 42.04987335205078 +sub-20030_ses-V1_task-cuff_run-01_bold 0.0013206292134831461 0.011788106224719102 5 69.77444531063063 1.2352819609459451 0.9888799074324313 0.46936925073357766 2391.74365234375 0.558433782258794 86 19.325842696629213 2.5239520795725103 2.5271415662470833 2.6560457277915583 2.38866894467889 0.0118651 0.047254469245672226 0.004828768782317638 445 90 90 60 2.29625554065965 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 35.18596041471358 27.859596252441406 73.40872192382812 19.898876190185547 328016.0 0.008988764137029648 320.7561798095703 177.99325561523438 6.918537933015877 321.36822509765625 1068.765380859375 987.8034057617188 89154.0 551.0350677490235 1837.885754394531 430.17767333984375 28.731067657470703 +sub-20030_ses-V1_task-cuff_run-02_bold 0.0011915124153498871 0.012794399051918736 7 72.84079394597282 1.2237472597058838 0.9912227205429863 0.4700392255961077 2425.087890625 0.5941141780228043 110 24.830699774266364 2.53589930982332 2.5340415659729016 2.6593082276619184 2.4143481358351413 0.00831183 0.04772551357746124 0.004706714302301407 443 90 90 60 2.298895261136046 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 37.16222256472436 27.86488914489746 73.99140167236328 19.821670532226562 328073.0 0.009029345586895943 323.8627563476556 179.54393005371094 6.743265968378118 322.0292663574219 1069.35546875 988.24609375 89083.0 552.313330078125 1839.5065795898433 429.87628173828125 27.501829147338867 +sub-20030_ses-V1_task-rest_run-01_bold 0.0017802690582959643 0.013445725179372196 4 65.10434639766295 1.23259072964045 0.997510615865169 0.46871740932241673 2319.630615234375 0.48756486606153476 282 63.228699551569505 2.52753680486156 2.525549899643664 2.6586998943527584 2.3983606205882584 0.0117376 0.04643135890364647 0.005070230923593044 446 90 90 60 2.3033877574650825 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 37.9749294667757 28.126230239868164 72.60164642333984 20.161436080932617 328155.0 0.01569506898522377 315.20293579101497 175.53067016601562 6.821142023751078 320.5413513183594 1070.8460693359375 989.6637573242188 89009.0 555.2300659179688 1842.8099609374995 429.6533203125 26.224143981933594 +sub-20030_ses-V1_task-rest_run-02_bold 0.0014765919282511211 0.011885936300448431 4 60.34785859173034 1.225447810022472 1.047843424629213 0.47153649237272083 2205.623291015625 0.4214096577155994 275 61.65919282511211 2.530297913226274 2.536041565893429 2.6644540607907747 2.3903981129946197 0.00890098 0.04904961585998535 0.0036358435172587633 446 90 90 60 2.2700285044966195 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 35.32907352445984 29.073633193969727 76.34612274169922 20.735427856445312 328487.0 0.04260089993476868 336.35024108886734 181.7877655029297 7.148133287201752 325.1054382324219 1071.017333984375 988.278076171875 88781.0 552.948486328125 1853.069580078125 435.35687255859375 27.574323654174805 +sub-20030_ses-V3_task-cuff_run-01_bold 0.00093568848758465 0.012017180361173815 7 45.841376144909496 1.1188000784389143 1.0338810555429867 0.4757872622250702 2454.59033203125 0.25540426063989424 0 0.0 2.340230018431031 2.3345124072348113 2.4507874026144583 2.2353902454438237 0.0059855 0.037977613508701324 0.008953056298196316 443 90 90 60 2.5401227799681454 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 37.575482596917794 26.5128116607666 68.04621124267578 18.979684829711914 326830.0 0.03837471827864647 294.0550857543943 160.58419799804688 6.835943109827129 263.8796691894531 1014.82861328125 943.95263671875 89991.0 564.8634338378906 1676.8804321289062 371.6148681640625 31.5908203125 +sub-20030_ses-V3_task-cuff_run-02_bold 0.0014379458239277654 0.019719289525959367 7 52.88596695264708 1.0979607847963797 1.0051357657918563 0.4776465026459739 2281.822021484375 0.35643880181848353 7 1.580135440180587 2.388423059586058 2.362270739465128 2.5047665671361856 2.2982318721568604 0.00365332 0.04035131633281708 0.007822464220225811 443 90 90 60 2.58691512758391 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 32.203696334953065 27.33443260192871 68.26030731201172 19.777652740478516 326686.0 0.1354401856660843 289.5 160.23202514648438 6.276970098929594 260.22845458984375 1005.7197875976562 938.4876098632812 90223.0 561.2205688476563 1654.3388549804679 362.780517578125 24.893766403198242 +sub-20030_ses-V3_task-rest_run-01_bold 0.0010102017937219732 0.01510463004484305 4 60.87143076350565 1.1668919341123594 0.9816909906292132 0.47513199738946194 2442.150146484375 0.4587220022860282 285 63.90134529147982 2.362013344472237 2.3480165733648706 2.470287401839598 2.267736058212243 0.0102134 0.03756360709667206 0.00958883948624134 446 90 90 60 2.5662765924971147 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 48.2304625343503 26.693490982055664 67.99589538574219 19.047086715698242 327180.0 0.03139013797044754 291.668293762207 163.25656127929688 6.731699359941388 264.807373046875 1021.376953125 951.2332153320312 89767.0 572.5585388183594 1685.2720214843748 370.66461181640625 26.906421661376953 +sub-20031_ses-V1_task-cuff_run-01_bold 0.00236568848758465 0.006388223611738149 7 35.74602557305428 1.0896314626470585 1.0293183736651579 0.4187451210101985 10976.69921875 0.19369045776210408 0 0.0 2.485820898613357 2.5042540671565505 2.476020734945109 2.4771878937384115 0.00665219 -0.00046303728595376015 0.018436944112181664 443 90 90 60 2.3426945253334277 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 3 58.5043174780001 12.680768013000488 31.74764060974121 8.693002700805664 335021.0 0.006772009190171957 119.16252899169922 83.5717544555664 2.7296592098065835 313.1504211425781 997.6533813476562 921.1016235351562 83565.0 499.3801452636719 1748.0154052734376 393.1780700683594 35.76253890991211 +sub-20031_ses-V1_task-cuff_run-02_bold 0.0014408597285067873 0.00746882334841629 8 38.5844653946485 1.0765459196145126 0.9938129133786848 0.41823738437186436 10924.263671875 0.23253015699994878 3 0.6787330316742082 2.492112566036672 2.5073915670318776 2.476558234923751 2.492387896154387 0.00816303 -0.0008000169764272869 0.019027456641197205 442 90 90 60 2.355781071588335 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 3 62.87543989390181 12.571931838989258 31.134037017822266 8.633484840393066 334876.0 0.0067873308435082436 116.8535099029541 82.00272369384766 2.7140214008995853 310.756103515625 992.3511962890625 918.3484497070312 83645.0 496.27875366210935 1736.362500000001 389.82525634765625 34.611995697021484 +sub-20031_ses-V1_task-rest_run-01_bold 0.0014245842696629213 0.008713485460674157 5 37.875958610337825 1.074243941463963 0.9991769977027027 0.41774748698436087 11155.6328125 0.20813073815202443 69 15.50561797752809 2.4951542326991993 2.5102749002506375 2.4810374014124315 2.494150396434529 0.00642719 -0.0006153808208182454 0.018665121868252754 445 90 90 60 2.34162248233694 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 3 64.53890784143046 12.673750877380371 31.509334564208984 8.683146476745605 334967.0 0.002247191034257412 117.44921417236347 83.99121856689453 2.70153457625248 316.28411865234375 1004.2935180664062 928.1517333984375 83512.0 500.95405426025394 1763.0830566406241 396.36883544921875 32.89826583862305 +sub-20031_ses-V1_task-rest_run-02_bold 0.0020910337078651683 0.007784932629213483 5 36.04965887423421 1.0581596677702705 1.0075935654954955 0.41823834720999015 10780.701171875 0.19577663182544325 51 11.460674157303371 2.496963954876552 2.5151915667219336 2.4811415680749587 2.494558729832765 0.00619618 -0.00033048904151655734 0.018070155754685402 445 90 90 60 2.3508475684382115 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 4 61.62052152787116 12.690409660339355 30.985429763793945 8.721348762512207 334913.0 0.006741573102772236 116.36584167480453 80.7213134765625 2.7800676500803405 311.309814453125 993.2957763671875 918.48876953125 83600.0 498.0441650390625 1739.3440246582034 390.7030334472656 33.470130920410156 +sub-20031_ses-V3_task-cuff_run-01_bold 0.0017140045248868778 0.008537637149321268 8 31.17305740034012 1.0150924186394554 1.0030026193650792 0.4314027247393736 15526.4775390625 0.1510952401549587 2 0.45248868778280543 2.428270146335181 2.415274904025598 2.4585040689744924 2.4110314660054515 0.00408455 0.0009468665230087936 0.02415928803384304 442 90 90 60 2.89286486458282 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 68.26040089559343 10.854527473449707 30.749982833862305 7.463801383972168 331996.0 0.011312217451632023 118.7652759552002 83.04492950439453 3.1845070531453317 246.7929229736328 973.4915771484375 925.2217407226562 86093.0 538.8190307617188 1556.8860595703122 319.8270263671875 34.67295837402344 +sub-20031_ses-V3_task-cuff_run-02_bold 0.0032822747747747747 0.014457558558558561 6 34.07900898918737 0.9426105754627541 0.9507620951241531 0.43213242231120624 14465.068359375 0.22037294528017695 9 2.027027027027027 2.4669798832904717 2.444670736190846 2.4960999008139013 2.4601690128666682 0.00523343 0.0014183324528858066 0.025202305987477303 444 90 90 60 2.9111841266057503 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 74.58102177144087 11.126195907592773 30.854951858520508 7.716216564178467 331882.0 0.029279280453920364 116.49527359008793 83.87825775146484 3.1867420773251274 243.8814697265625 968.5203247070312 921.1531982421875 86255.0 538.8767944335938 1550.788562011719 316.4169006347656 27.46366310119629 +sub-20031_ses-V3_task-rest_run-01_bold 0.001309705215419501 0.007912568480725624 9 30.51873940997726 1.009771173613636 1.0007226483181813 0.4307644700439877 15787.384765625 0.14728741064908868 11 2.494331065759637 2.408642362976747 2.3989124046757855 2.4351915699008475 2.391823114353607 0.00448232 0.0009251352748833597 0.02386048436164856 441 90 90 60 2.8969860328686488 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 68.00885606183235 10.922845840454102 31.032442092895508 7.476190567016602 332466.0 0.004535147454589605 120.8106575012207 84.00381469726562 3.222019634145343 250.25051879882812 982.2581176757812 932.640625 85636.0 549.2811737060547 1574.96484375 321.93292236328125 35.550537109375 +sub-20031_ses-V3_task-rest_run-02_bold 0.003113213483146067 0.011712759640449438 5 32.489637692702686 1.0089752134684684 1.0074479630855855 0.4313069223458573 15443.046875 0.1833402558194344 41 9.213483146067416 2.4613673827366997 2.433854069953995 2.4924249009599326 2.457823177296172 0.0054582 0.0009174224105663598 0.025421852245926857 445 90 90 60 2.9129004934812994 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 75.09663236539737 10.944602966308594 30.101755142211914 7.480898857116699 331656.0 0.004494382068514824 115.8292121887207 81.34534454345703 3.206338061848686 241.4508819580078 962.1056518554688 916.0853881835938 86491.0 534.5157165527344 1540.6056518554688 314.4906921386719 30.248538970947266 +sub-20033_ses-V1_task-cuff_run-01_bold 0.0009011764705882353 0.017173158438914028 8 57.71829785870746 1.0645604057823141 0.9769914827210886 0.47755080723447163 2068.060302734375 0.48458634059883143 35 7.918552036199095 2.601079931775754 2.504854067132709 2.67570406034374 2.6226816678508134 0.00540846 0.01239972934126854 0.03065258078277111 442 90 90 60 2.7251218664256123 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 139.38723628872737 23.40633201599121 43.3853759765625 17.497737884521484 319398.0 0.0656108632683754 151.65577239990085 93.06207275390625 2.0062718671622433 243.96861267089844 829.3831176757812 790.3982543945312 97549.0 428.0597412109375 1359.7068603515618 290.0399475097656 24.205493927001953 +sub-20033_ses-V1_task-cuff_run-02_bold 0.001122 0.01667609197752809 5 61.80468559256755 1.0785874547072072 0.9827322915765764 0.478214737613212 2035.5035400390625 0.5768266649930563 85 19.10112359550562 2.605542432925738 2.5100665669255826 2.679870726844838 2.626690005006795 0.00441706 0.012453648261725903 0.030063357204198837 445 90 90 60 2.7172774496629417 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 117.74153735096854 23.331829071044922 43.455284118652344 17.505619049072266 319511.0 0.07191011309623718 154.1516876220703 90.83826446533203 2.013257615618061 244.40115356445312 826.4683837890625 787.5528564453125 97518.0 425.43752899169925 1356.8333618164056 289.8301086425781 24.25908660888672 +sub-20033_ses-V1_task-rest_run-01_bold 0.001168063063063063 0.013093669572072074 6 52.01154273119635 1.0563298256659135 0.9907634929571101 0.47642674721361683 2068.325927734375 0.4173093318232007 276 62.16216216216216 2.6155229864897245 2.5268415662590042 2.697854059463578 2.6218733337465925 0.00290616 0.010903900489211082 0.0324898399412632 444 90 90 60 2.6727085404408264 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 168.6486403705241 22.930246353149414 42.96587371826172 17.35360336303711 319325.0 0.11486487090587616 150.53604125976562 93.6221923828125 2.08309685948149 247.37594604492188 827.368896484375 788.2872314453125 97734.0 419.51069793701174 1365.3919006347644 294.9379577636719 25.783557891845703 +sub-20033_ses-V1_task-rest_run-02_bold 0.0012651576576576575 0.01454994572072072 6 57.859834029480815 1.0926278386681727 1.0078687350564335 0.4785410327558414 1981.8358154296875 0.46305142929073023 289 65.09009009009009 2.5998702041033446 2.5143249000897048 2.6792082268711637 2.6060774853491644 0.00456647 0.01316209975630045 0.030440809205174446 444 90 90 60 2.6972973418445165 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 134.6547818123491 23.33930015563965 43.496337890625 17.595722198486328 319186.0 0.0878378376364708 155.59797286987305 91.80340576171875 2.014879004230367 243.91810607910156 822.3875732421875 784.189208984375 97890.0 418.94922790527346 1353.6286926269534 290.72998046875 26.04977798461914 +sub-20033_ses-V3_task-rest_run-01_bold 0.0008190090090090089 0.012215349301801803 6 48.18363270647857 1.0919574980135434 0.9759669332731369 0.46537309807449323 2861.223876953125 0.33248501915387957 251 56.531531531531535 2.4905632003798694 2.4904832343704206 2.5672623979861577 2.413943968783031 0.00227178 0.0032741797622293234 0.025533434003591537 444 90 90 60 2.6720635609400105 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 86.02193177826256 27.110919952392578 48.3888053894043 18.981983184814453 323644.0 0.011261261999607086 176.54470748901363 96.61366271972656 5.233940545238074 272.78546142578125 1068.5457763671875 1002.2894287109375 94520.0 601.8011444091798 1751.4881958007816 375.097412109375 30.191585540771484 +sub-20034_ses-V1_task-cuff_run-01_bold 0.0015896598639455785 0.003650787664399093 9 31.2753313148182 1.1122423676590905 1.015079369681819 0.48968941446834147 4930.82763671875 0.14791115652762607 2 0.45351473922902497 2.894699331979169 2.638545728486946 3.2622332037038326 2.7833190637467298 0.00384259 -0.026743218302726746 0.03662802278995514 441 90 90 60 3.1274560517101144 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 15.293052508751014 34.303245544433594 103.864501953125 23.447845458984375 321498.0 0.006802720949053764 528.0434570312483 200.69187927246094 0.7989938019530505 463.3787841796875 1668.063720703125 1657.853759765625 95692.0 800.6593170166016 2571.44609375 530.0938110351562 51.920467376708984 +sub-20034_ses-V1_task-cuff_run-02_bold 0.0022153075170842826 0.0038536625056947603 11 31.69941250264844 1.1172552156164375 1.0235587761415514 0.4911208873063588 5037.56884765625 0.15485936660133312 1 0.22779043280182232 2.898215998544177 2.645408228214255 3.2661123702163546 2.783127397201921 0.00384222 -0.027419965714216232 0.03649820014834404 439 90 90 60 3.1232660055860353 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 14.774743236430542 34.207923889160156 106.01606750488281 23.430524826049805 321303.0 0.006833713501691818 538.8287109374999 203.63873291015625 0.8143281855007438 464.9662780761719 1669.087890625 1657.7745361328125 95841.0 801.13671875 2575.5810546875 530.7796020507812 50.93406295776367 +sub-20034_ses-V1_task-rest_run-01_bold 0.000572063492063492 0.0032904543764172337 9 30.516887144340902 1.1038023128863634 1.0034020011818183 0.48810142694387604 5114.30322265625 0.13583031236066165 7 1.5873015873015872 2.8779035021701245 2.622420729127696 3.242349871160592 2.768939906222085 0.00402783 -0.025732222944498062 0.03589218109846115 441 90 90 60 3.1575400819959465 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 15.604401975106555 33.672889709472656 101.26547241210938 23.020408630371094 321754.0 0.0 514.6210937499993 196.04615783691406 0.7974805672148197 456.876953125 1665.3004150390625 1654.825439453125 95387.0 805.2566955566406 2555.8617431640623 524.0841674804688 54.02622985839844 +sub-20034_ses-V1_task-rest_run-02_bold 0.0027600911161731203 0.0043987205011389524 11 32.25537118091325 1.1035618335388122 1.0125560866666665 0.4922240858344881 4805.533203125 0.17487751176118255 18 4.100227790432802 2.8960743334278924 2.6483290614315247 3.2641415369613354 2.7757524018908173 0.00571499 -0.026960834860801697 0.03692912310361862 439 90 90 60 3.136037004378052 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 14.520920863073759 34.886749267578125 107.35230255126953 23.94305419921875 321328.0 0.0091116176918149 543.737152099609 205.40399169921875 0.7983271771270246 464.5509338378906 1671.3358154296875 1661.1162109375 95809.0 805.8455688476563 2575.2501953124997 529.6836547851562 48.407745361328125 +sub-20035_ses-V1_task-cuff_run-01_bold 0.002747021276595745 0.011736194382978724 6 40.914468137521354 1.1013664800854703 1.0621597452136757 0.4249299652022285 6133.3115234375 0.25951639220360684 0 0.0 2.4739562771548083 2.532408232704471 2.413429070765612 2.4760315279943415 0.00394758 0.007258506957441568 0.011147662065923214 235 90 90 60 2.8861466590768705 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 171.81634203179487 17.0089168548584 37.31954574584961 11.889361381530762 341198.0 0.01702127605676651 144.70467224121035 92.9581069946289 2.0071093692940574 261.489990234375 974.8666381835938 929.8021240234375 78134.0 521.2536224365234 1570.6301452636717 322.1583251953125 31.829612731933594 +sub-20035_ses-V1_task-rest_run-01_bold 0.0012066741573033707 0.010633630179775281 5 38.21465220326574 1.0890768703378373 1.0222661243918914 0.4244449622418644 5905.15283203125 0.22562792923266384 116 26.06741573033708 2.460977103484313 2.517804066618122 2.4118040708301836 2.4533231730046334 0.00578764 0.008425073698163033 0.012233291752636433 445 90 90 60 2.8734046187469757 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 198.89598923508575 17.001615524291992 37.042423248291016 11.957303047180176 341167.0 0.02247191034257412 143.1402252197266 94.02861785888672 2.125929436862476 257.712890625 964.2384033203125 919.020263671875 78061.0 518.6831665039062 1555.415771484375 319.83465576171875 33.792266845703125 +sub-20035_ses-V1_task-rest_run-02_bold 0.0008861797752808988 0.015099401685393258 5 40.373375347319815 1.0539304534909906 0.9798378229279283 0.4273747716766345 5893.85009765625 0.2616636249640002 175 39.325842696629216 2.477820167819034 2.5284832328604367 2.423120737047166 2.4818565335494998 0.00496912 0.0066443574614822865 0.008422521874308586 445 90 90 60 2.8812885144387055 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 19 138.9639451979166 17.77789878845215 39.11168670654297 12.321348190307617 341347.0 0.008988764137029648 154.42651824951184 93.44544219970703 2.1568008543826833 264.302978515625 986.3018798828125 941.8685302734375 78228.0 525.1371734619141 1589.228759765625 326.88934326171875 29.614639282226562 +sub-20036_ses-V1_task-cuff_run-01_bold 0.0007545 0.003376555363636364 10 23.326071411252844 1.08516315856492 1.0022631795216397 0.45286524241938225 18990.736328125 0.09059309396054246 0 0.0 2.825902127701467 2.6257623956615768 3.1451832083549816 2.7067607790878427 0.00708713 -0.015716552734375 0.02475486695766449 440 90 90 60 3.0179031039747497 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 34.29043938821235 20.01175880432129 56.929229736328125 13.552271842956543 318561.0 0.0 274.1658935546875 126.83451843261719 1.959424306517512 471.10174560546875 1925.0732421875 1844.70556640625 98680.0 1043.2497436523438 3041.416259765624 611.2509765625 61.5713005065918 +sub-20036_ses-V1_task-cuff_run-02_bold 0.003927171945701358 0.008616532601809954 8 23.17882530047621 1.019222802653061 0.9778638391609984 0.4544970925695782 16839.072265625 0.1534801994172982 2 0.45248868778280543 2.8579687867195376 2.6491665613982454 3.185895706737212 2.738844092023155 0.013226 -0.01640612632036209 0.026338636875152588 442 90 90 60 3.032400937515891 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 40.63202949604468 20.726242065429688 59.022212982177734 14.332579612731934 318896.0 0.05429864674806595 280.90838623046875 130.8318634033203 1.9477036911190204 468.31951904296875 1923.4984130859375 1842.062255859375 98454.0 1055.2792236328125 3034.991162109375 607.4569091796875 39.38021469116211 +sub-20036_ses-V1_task-rest_run-01_bold 0.002266726862302483 0.004872316613995486 7 22.48157419235294 1.0577683508371034 1.008624909276018 0.45394233733610123 18481.427734375 0.10930962431614098 8 1.8058690744920993 2.8166007391573467 2.602308229926895 3.1406082085367757 2.70688577900837 0.00747824 -0.014864221215248108 0.022689376026391983 443 90 90 60 3.0994859026700405 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 31.57382930485977 19.816001892089844 54.886329650878906 13.550790786743164 317843.0 0.011286681517958641 260.476318359375 120.20210266113281 1.6187854758357219 459.1683654785156 1906.383056640625 1831.978515625 99030.0 1044.5675537109375 2991.4572021484373 591.0558471679688 52.16998291015625 +sub-20036_ses-V1_task-rest_run-02_bold 0.001824331065759637 0.007093102585034013 9 24.501979467909088 1.024051140772728 0.9709803513636359 0.4551788889446527 17468.185546875 0.17755328689860406 75 17.006802721088434 2.844629901223365 2.633749895344182 3.1757040404755257 2.7244357678503874 0.0117618 -0.01548970676958561 0.02487318404018879 441 90 90 60 3.07374070640578 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 30.509514232341054 20.225250244140625 57.5672721862793 13.961451530456543 318010.0 0.0476190485060215 275.985266113281 125.74440002441406 1.7735536663310922 463.7989501953125 1913.3154296875 1836.195068359375 99032.0 1047.771307373047 3002.926928710937 597.3782348632812 43.43468475341797 +sub-20036_ses-V3_task-cuff_run-01_bold 0.0008057823129251702 0.0022458538321995466 9 22.273773795772716 1.064942438227273 1.0166801897272735 0.446184884284115 19358.11328125 0.1390835908238981 0 0.0 2.911114612360565 2.7015540593165537 3.264858203599524 2.766931574165615 0.0122109 -0.014122688211500645 0.02602560631930828 441 90 90 60 2.6123995517672634 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 66.69846806285184 19.253658294677734 55.43946838378906 13.040816307067871 317216.0 0.0 265.14456939697266 131.73260498046875 0.9176185367154548 593.2424926757812 1923.9058837890625 1826.251708984375 99375.0 922.7539672851562 3237.6685546874996 699.0670776367188 63.267601013183594 +sub-20036_ses-V3_task-cuff_run-02_bold 0.0012894331065759638 0.002433084897959184 9 20.655233274772723 1.0247598308863637 0.9976475044090909 0.44673437065340366 18527.427734375 0.12890602669965281 1 0.22675736961451248 2.900970168298528 2.690883226407241 3.244991537722288 2.767035740766054 0.0116239 -0.014043488539755344 0.028646210208535194 441 90 90 60 2.6274121187467916 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 108.63418592149397 19.667173385620117 56.238765716552734 13.281179428100586 317241.0 0.0 266.41949462890625 141.65994262695312 0.842537274605411 587.6315307617188 1913.8050537109375 1816.7664794921875 99359.0 917.034716796875 3213.041235351562 691.462646484375 61.139434814453125 +sub-20036_ses-V3_task-rest_run-01_bold 0.0008777324263038548 0.0026539181405895694 9 23.04947620290909 1.0831987421136364 1.0021932197727283 0.44636825145607134 18829.458984375 0.12563211808141653 3 0.6802721088435374 2.892268781011237 2.6820457267584117 3.234045704823903 2.7607149114513962 0.0102367 -0.013312607072293758 0.026271939277648926 441 90 90 60 2.644191319670142 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 79.41268908068022 19.445287704467773 54.15570831298828 13.185941696166992 317005.0 0.0 253.99228820800775 130.75526428222656 0.8350693250402617 588.5292358398438 1920.9412841796875 1823.4195556640625 99405.0 928.5533203125001 3217.580615234374 689.5909423828125 58.95859146118164 +sub-20036_ses-V3_task-rest_run-02_bold 0.0008038063063063064 0.0028205463513513514 6 20.384300154424377 1.0098196006546278 0.9872074379232506 0.4473413866007083 19700.93359375 0.13802146820310268 5 1.1261261261261262 2.901843778920439 2.6946873929227433 3.2415207045268732 2.769323239311702 0.0113105 -0.013358463533222675 0.02717185765504837 444 90 90 60 2.645181077554305 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 82.0277118626979 18.88314437866211 55.70427322387695 12.873873710632324 317131.0 0.0022522523067891598 266.2488708496094 134.74642944335938 0.8011653024530982 586.2958984375 1912.28466796875 1815.96630859375 99379.0 921.2126403808594 3204.412939453122 686.5152587890625 56.89729309082031 +sub-20037_ses-V1_task-rest_run-01_bold 0.0004317687074829932 0.002728663922902494 9 19.94880298261365 1.0119787740909092 0.9761727539545463 0.42908985383370446 12908.6591796875 0.11307065242219877 0 0.0 2.9339521186611015 2.791749889065826 3.2794540363528712 2.7306524305646063 0.00441172 -0.017488352954387665 0.026202214881777763 441 90 90 60 2.6244947961180296 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 35.759956438642114 25.305095672607422 79.94041442871094 17.226757049560547 338595.0 0.0022675737272948027 388.4405944824216 174.67674255371094 1.087666983355449 662.733154296875 2042.372314453125 1965.5782470703125 81799.0 954.5750793457031 3427.5239501953115 748.9312744140625 58.981163024902344 +sub-20037_ses-V3_task-rest_run-01_bold 0.0010196590909090908 0.004108430386363636 10 25.480793889954427 1.0557307927334858 1.0113262387927104 0.42504451619369416 10492.5947265625 0.1785454899613717 48 10.909090909090908 2.96433125129834 2.8021332219865633 3.195008206375114 2.895852325533342 0.00807914 -0.008794661611318588 0.016405755653977394 440 90 90 60 2.721505504056508 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 60.20309114589256 25.763582229614258 74.69944763183594 17.67954444885254 341486.0 0.00909090880304575 352.9977111816406 171.09304809570312 0.751829965819681 595.8796997070312 1890.879638671875 1823.414794921875 78672.0 866.7370086669922 3099.9930175781246 669.9979858398438 47.09877014160156 +sub-20038_ses-V1_task-cuff_run-01_bold 0.0008521171171171171 0.00816274873873874 6 24.461046154356634 1.0157341493002248 0.9743002869525956 0.4417759950151079 11272.990234375 0.1634759575112074 0 0.0 2.8431535198627587 2.6737248937557183 3.168895707412731 2.686839958419826 0.0221052 -0.012747431173920631 0.034286223351955414 444 90 90 60 3.8007555037796936 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 46.90922827528462 23.03042221069336 72.19721984863281 15.711711883544922 341319.0 0.0045045046135783195 359.3716369628901 166.58876037597656 1.1590071441799594 358.2822570800781 1658.72607421875 1642.0113525390625 78993.0 958.904541015625 2391.449169921875 432.0196228027344 46.30254364013672 +sub-20038_ses-V1_task-cuff_run-02_bold 0.0016110835214446955 0.010532920067720091 7 25.56014741481904 1.03006474040724 0.9733974812895918 0.4429921665499968 11095.4755859375 0.15672522324054652 1 0.22573363431151242 2.8826229556715437 2.708524892372891 3.216933205503893 2.722410769137847 0.0122176 -0.013397229835391045 0.032758329063653946 443 90 90 60 3.7520355519679827 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 46.11356354532836 23.202892303466797 72.98726654052734 15.925508499145508 340957.0 0.027088036760687828 363.93182983398464 165.6407928466797 1.1717088506960316 364.6030578613281 1661.5968017578125 1647.2303466796875 79455.0 949.7307067871094 2406.3404541015625 439.0203552246094 41.97892761230469 +sub-20038_ses-V1_task-rest_run-01_bold 0.0030772911963882613 0.009894271647855531 7 24.60913537764707 1.0618722382352943 1.0071586404977377 0.44093308372698425 11549.35546875 0.13883066944230193 6 1.3544018058690745 2.847203516448408 2.667312394010528 3.171083207325808 2.7032149480088883 0.00977991 -0.011791680939495564 0.03624686971306801 443 90 90 60 3.844421961691013 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 51.982425540190434 22.871566772460938 70.26307678222656 15.553048133850098 340899.0 0.0022573363967239857 347.41986083984375 165.00448608398438 1.160409187254455 351.5942687988281 1650.9102783203125 1636.2213134765625 79325.0 957.811767578125 2371.2989257812505 425.60650634765625 41.802146911621094 +sub-20038_ses-V1_task-rest_run-02_bold 0.0014687162162162165 0.0082828072972973 6 24.266493726162537 1.0469224156884873 0.9965543078103831 0.4424492595745677 11645.55078125 0.13030779696115197 4 0.9009009009009009 2.8688090701478868 2.6986248927662815 3.199566539527315 2.7082357781500637 0.00656939 -0.013488340191543102 0.03247644752264023 444 90 90 60 3.7574829112507655 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 46.47106997965986 22.7415828704834 72.69229125976562 15.595721244812012 341146.0 0.022522523999214172 363.4268035888672 165.1748504638672 1.1787848681045814 364.19586181640625 1661.9361572265625 1646.497802734375 79387.0 953.0653686523438 2405.81962890625 438.1889343261719 44.96214294433594 +sub-20038_ses-V3_task-cuff_run-01_bold 0.0010206306306306306 0.00685264313063063 6 28.89678192984197 1.0111028054627533 0.9930951781038382 0.4409561383509963 8338.3046875 0.2852926724872044 1 0.22522522522522523 3.0154506783301804 2.8272248876561763 3.2458582043545166 2.973268942979849 0.011145 -0.011649202555418015 0.03903310000896454 444 90 90 60 3.218586470406334 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 55.83410432118658 22.987014770507812 67.70379638671875 15.817567825317383 341629.0 0.013513513840734959 327.0531555175778 154.1829833984375 0.7223212873766016 384.52825927734375 1463.506103515625 1425.233154296875 78996.0 781.1610565185547 2254.6318359375 442.8105773925781 41.85614776611328 +sub-20038_ses-V3_task-cuff_run-02_bold 0.0009090786516853933 0.006719445483146067 5 29.911828685405393 1.0351288895270279 0.9907891718918913 0.44089005021186206 8089.849609375 0.2691439881725153 0 0.0 3.0051173486790876 2.8246415544254955 3.233908204829367 2.9568022867824 0.00507945 -0.011789271607995033 0.03782955929636955 445 90 90 60 3.2262037496377363 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 53.678003462163666 23.288515090942383 67.07646942138672 15.961797714233398 341625.0 0.006741573102772236 326.3303527832031 151.8757781982422 0.7126263306662426 385.4732360839844 1465.1959228515625 1427.165283203125 78932.0 781.3415740966798 2254.603234863281 442.36395263671875 44.068397521972656 +sub-20038_ses-V3_task-rest_run-01_bold 0.0006644920993227992 0.0057235033182844244 7 28.44414058090499 1.0402155020814472 0.9938791304751128 0.44097833711889645 7677.23046875 0.21374527189496945 91 20.54176072234763 2.985107635549438 2.8113373882874892 3.228945705026559 2.915039813334266 0.0092077 -0.012617806904017925 0.037267204374074936 443 90 90 60 3.2354412522134823 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 56.55153309412259 23.909053802490234 67.6849594116211 16.33634376525879 341692.0 0.0022573363967239857 329.09335021972663 154.81033325195312 0.7246306752347849 387.84112548828125 1471.09130859375 1436.211181640625 78928.0 785.5886077880859 2259.225842285156 443.8968200683594 47.06047821044922 +sub-20038_ses-V3_task-rest_run-02_bold 0.0005284719101123596 0.006389298202247192 5 29.791929043018023 1.0246927160585597 0.9830681993243251 0.442205420819211 7494.56787109375 0.2689386874901287 163 36.62921348314607 3.014840960351696 2.8426665537092464 3.249824870863562 2.9520314564822794 0.00651313 -0.01315438561141491 0.03641841560602188 445 90 90 60 3.197754027355005 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 50.753299781021 24.224720001220703 68.90983581542969 16.539325714111328 341799.0 0.004494382068514824 337.8442840576168 153.7123565673828 0.7036839798182588 391.824951171875 1471.9703369140625 1434.419189453125 78964.0 781.8533905029298 2270.6434204101547 448.5679931640625 44.03992462158203 +sub-20040_ses-V1_task-rest_run-01_bold 0.001983020134228188 0.016787279463087248 3 100.32266381605388 1.2156344399327355 1.0024961600672646 0.4404197037874128 8326.19140625 1.8899625048187867 426 95.30201342281879 3.213510332708395 3.057087378522262 3.3083165352059787 3.2751270843969444 0.0557817 -0.00945421401411295 0.01899024285376072 447 90 90 60 2.745281785147505 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 28.37677246122033 26.56743812561035 76.31736755371094 18.382551193237305 336106.0 0.08053691685199738 378.19239044189453 157.50120544433594 0.42745911281324966 557.85986328125 1751.357421875 1690.532470703125 83701.0 817.4228515625 2871.736083984375 615.7919311523438 23.078746795654297 +sub-20041_ses-V1_task-cuff_run-01_bold 0.0013162500000000001 0.009708160772727275 10 32.70519264842826 1.000954320296128 0.9712904417084282 0.4758187684281864 5186.5244140625 0.1507091845103377 1 0.22727272727272727 2.439574403236486 2.413516570762135 2.3895124050493077 2.515694233898014 0.0101879 0.026710812002420425 0.028966259211301804 440 90 90 60 2.452624088880907 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 106.46011732832707 18.751548767089844 46.60116958618164 13.227272033691406 309569.0 0.020454544574022293 206.86226806640605 114.58882141113281 2.080275789586537 311.916015625 1028.421630859375 967.699951171875 105821.0 489.73406982421875 1787.2840576171875 394.55511474609375 33.27517318725586 +sub-20041_ses-V1_task-cuff_run-02_bold 0.0029294369369369374 0.009603160608108108 6 34.790558511647816 1.0486046485327323 1.0093552862076745 0.4770992361534753 5242.66064453125 0.16728796497533763 3 0.6756756756756757 2.4342257931748574 2.4091207376034762 2.382074905344848 2.511481736576248 0.00872928 0.02666647918522358 0.02922114171087742 444 90 90 60 2.4504847992698497 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 100.7752073890237 18.74289894104004 47.23915100097656 13.211711883544922 309551.0 0.020270271226763725 210.82432556152344 113.89451599121094 2.1053357534476085 311.8505859375 1025.72216796875 966.2905883789062 105933.0 487.8387451171875 1783.0067871093747 394.3244323730469 32.26475143432617 +sub-20041_ses-V1_task-rest_run-01_bold 0.001725900900900901 0.010778863941441442 6 36.10567081699776 1.0307363511512415 0.980345611060948 0.4749073351601105 5281.71337890625 0.18545482602582045 75 16.89189189189189 2.4361688480265262 2.4075249043335556 2.386345738508473 2.5146359012375505 0.00482384 0.02486049197614193 0.02940407581627369 444 90 90 60 2.4554427075601706 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 111.66894146680792 18.71952247619629 45.67830276489258 13.14639663696289 309713.0 0.018018018454313278 201.79550476074195 111.39856719970703 2.143480786808266 312.2147216796875 1032.178466796875 971.9009399414062 105653.0 492.79144287109375 1793.8887939453116 395.8130798339844 31.02532196044922 +sub-20041_ses-V1_task-rest_run-02_bold 0.0014079775280898875 0.009558012494382023 5 33.54032055540539 1.0085095267792792 0.9768666589639641 0.477747761122203 5288.4892578125 0.17044016342751114 68 15.280898876404494 2.444166068166837 2.413133237444034 2.3958499047974784 2.523515062258999 0.00387528 0.02712225914001465 0.02990812063217163 445 90 90 60 2.455008110987472 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 102.89250403093801 18.587501525878906 47.075645446777344 13.056180000305176 309317.0 0.020224720239639282 209.7932586669922 113.21305084228516 2.0961039899114846 308.6244201660156 1019.989013671875 960.7864990234375 106161.0 486.60675048828125 1772.29443359375 391.3559265136719 31.805965423583984 +sub-20041_ses-V3_task-cuff_run-01_bold 0.00187131221719457 0.009476242511312218 8 37.53015871968252 1.0825049226303856 0.9905978819501136 0.4689359735769714 7403.54296875 0.2545494479203254 6 1.3574660633484164 2.505629863030229 2.5680998979528784 2.5451665655308338 2.4036231256069747 0.0051216 0.009507868438959122 0.023297667503356934 442 90 90 60 2.266908901034328 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 82.42024564756515 19.693117141723633 45.8560676574707 13.683258056640625 305252.0 0.03846153989434242 175.6336021423342 110.42769622802734 6.709605459384868 369.8808898925781 1293.26708984375 1194.19921875 109090.0 637.5821258544922 2272.283459472653 526.7938842773438 32.50868225097656 +sub-20041_ses-V3_task-cuff_run-02_bold 0.0016259819413092548 0.009077959571106095 7 36.492471569683225 1.0872706669004524 1.0051148063122173 0.46935924791527084 7338.77783203125 0.22040474908499877 0 0.0 2.5033951386436937 2.5693665645692123 2.5439998989105264 2.396818952451343 0.00506791 0.009908858686685562 0.023300835862755775 443 90 90 60 2.2642898756735184 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 82.56558999312938 19.86285400390625 46.7747802734375 13.808126449584961 305323.0 0.054176073521375656 180.21806030273405 112.85021209716797 6.797961475731249 370.70758056640625 1296.35498046875 1196.3160400390625 108979.0 642.625311279297 2279.431445312499 528.3380737304688 33.669586181640625 +sub-20041_ses-V3_task-rest_run-01_bold 0.0013418651685393258 0.009726630426966292 5 35.38296706840088 1.0509497693243246 0.964345481509009 0.46784545241749836 7749.5712890625 0.199573963808691 108 24.269662921348313 2.505765974573309 2.566883231334558 2.5454707321854144 2.404943960199954 0.0059614 0.009147441014647484 0.023259533569216728 445 90 90 60 2.269072287302864 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 78.51669185605984 19.343793869018555 45.134952545166016 13.386516571044922 305440.0 0.024719100445508957 171.57078552246094 108.76567077636719 6.598971897138901 370.59735107421875 1296.0897216796875 1196.793212890625 108957.0 640.3744018554687 2280.1541992187495 527.434814453125 32.90644454956055 +sub-20041_ses-V3_task-rest_run-02_bold 0.001964067415730337 0.008918033415730338 5 36.854672985833325 1.1033582951576575 1.001059578243243 0.46841320596567354 7895.6669921875 0.2088415455659451 95 21.348314606741575 2.5050701407226286 2.562654064835943 2.5492582320349126 2.40329812529703 0.00920665 0.009901140816509724 0.022961465641856194 445 90 90 60 2.2502976519875815 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 82.25278350493167 19.163883209228516 46.52218246459961 13.238202095031738 305241.0 0.024719100445508957 182.1775360107422 113.35574340820312 6.8664126828508305 372.088134765625 1298.949462890625 1197.5224609375 108938.0 643.0807800292969 2289.7991943359366 532.1593627929688 33.84065246582031 +sub-20042_ses-V1_task-cuff_run-01_bold 0.00038884353741496603 0.003940676961451247 9 20.839001612227293 0.9990079520454548 0.9798653580909089 0.44441732744918944 15717.080078125 0.11793924943793468 0 0.0 2.778352129994093 2.5748415643516553 3.055483211919339 2.704731613711285 0.00552505 -0.005920325871556997 0.026031136512756348 441 90 90 60 3.188884784758588 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 48.16945928994664 21.30610466003418 60.872406005859375 14.563491821289062 326366.0 0.0022675737272948027 269.61791229248047 150.51341247558594 1.1961667840018784 450.0252685546875 1875.0621337890625 1809.860595703125 91838.0 1046.1857727050783 2959.4848388671876 567.5497436523438 56.69015121459961 +sub-20042_ses-V1_task-cuff_run-02_bold 0.001451783295711061 0.005432575417607223 7 21.088700989230766 1.0041779795475112 1.0093224833257923 0.4453345644915235 15329.4521484375 0.11897606391119046 0 0.0 2.7947201800025567 2.5807748974492193 3.0740082111832217 2.7293774313752293 0.0186433 -0.006655833683907986 0.028633957728743553 443 90 90 60 3.161223187469535 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 57.81987200187216 21.50944709777832 62.25053787231445 14.760723114013672 326252.0 0.009029345586895943 273.97664337158244 156.9671173095703 1.2459342863711074 449.9278869628906 1865.453125 1798.827392578125 91938.0 1038.7455505371095 2950.2890625 569.0258178710938 50.69428634643555 +sub-20042_ses-V3_task-rest_run-01_bold 0.002591561085972851 0.0035930792760180998 8 23.44540820011336 1.0550672250793642 1.0472281087301583 0.4441925047468171 16179.6435546875 0.12926671725471278 8 1.8099547511312217 2.971918740772994 2.7269123916422373 3.2415332045263767 2.9473106261503688 0.0154953 -0.0037556022871285677 0.025224965065717697 442 90 90 60 2.6594375119414035 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 47.05317594341531 19.361042022705078 58.28590393066406 13.309955596923828 321431.0 0.015837104991078377 254.57353973388672 146.04530334472656 0.773527352527501 557.156494140625 1791.2027587890625 1703.6923828125 95784.0 895.2904205322266 3007.7347778320304 640.6179809570312 48.54729461669922 +sub-20043_ses-V1_task-cuff_run-01_bold 0.003075102040816327 0.006146269160997733 9 27.29417266868185 1.0494573749999998 1.1023832699090919 0.48287364384888304 3885.043212890625 0.23373880830164376 0 0.0 3.0154923498306148 2.7395373911405647 3.358008199898076 2.9489314584532047 0.01852 -0.006999085191637278 0.034935787320137024 441 90 90 60 2.593221749896991 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 20.983382377576838 40.248783111572266 106.41372680664062 27.941043853759766 318659.0 0.06122449040412903 502.85171813964706 199.69493103027344 2.193903264460551 532.220703125 1787.13037109375 1726.1043701171875 97301.0 771.17236328125 2976.371826171875 665.6181640625 39.12427520751953 +sub-20043_ses-V1_task-cuff_run-02_bold 0.000949090909090909 0.004940285340909092 10 24.071589254760816 0.9821679289749424 0.9692851669931651 0.4836417212182299 3697.847412109375 0.14711101701586715 0 0.0 2.968078474997542 2.7032873925810104 3.313279035008787 2.8876689974028285 0.00652484 -0.00752987340092659 0.03567205369472504 440 90 90 60 2.5940427158510926 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 21.43012189731535 40.434608459472656 107.79680633544922 28.129545211791992 319403.0 0.04999999701976776 514.1315490722656 203.70370483398438 2.2595363800981563 532.006591796875 1790.9873046875 1725.6988525390625 96650.0 788.2918182373047 2984.440002441407 665.2511596679688 44.20200729370117 +sub-20043_ses-V1_task-rest_run-01_bold 0.0020090249433106578 0.0037542324943310654 9 23.366812615113613 1.0231167800454544 1.031575833454546 0.4809191359445329 4004.389892578125 0.1167712239673182 14 3.1746031746031744 2.967215976598919 2.709337392340605 3.312529035038589 2.879781502417563 0.00828571 -0.008580055087804794 0.03299425542354584 441 90 90 60 2.5935259585866794 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 19.757760005806414 39.36796188354492 104.83163452148438 27.278911590576172 319206.0 0.038548752665519714 503.0011291503906 198.40377807617188 2.0786734440449726 538.6113891601562 1807.3382568359375 1745.195068359375 96815.0 780.2431091308595 3014.2982421875004 672.9009399414062 50.546180725097656 +sub-20043_ses-V1_task-rest_run-02_bold 0.0006266591422121896 0.00358564690744921 7 22.42572766298644 1.0082824157013563 1.0130893558144796 0.4835824531824867 3894.462646484375 0.09802941317787155 0 0.0 2.946868759650601 2.6920498930275483 3.2912498692174803 2.857306516706774 0.00848596 -0.008397872559726238 0.036287643015384674 443 90 90 60 2.592044184047833 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 19.523411148862646 39.7892951965332 108.37254333496094 27.42889404296875 319289.0 0.009029345586895943 524.5498779296872 204.5233917236328 2.1068135380850057 534.192138671875 1793.0838623046875 1732.67041015625 96783.0 774.9893859863281 2988.917578124999 668.4536743164062 52.26344299316406 +sub-20045_ses-V1_task-cuff_run-01_bold 0.006279479638009049 0.011296510339366515 8 46.91447661984125 1.130807030136054 1.0242227647165536 0.45675997612921665 2364.021728515625 0.29163542911171675 16 3.6199095022624435 2.5413410601405775 2.504058233830999 2.5754873976593258 2.5444775489314084 0.0142507 0.02471664361655712 0.015325616113841534 442 90 90 60 2.352158695069407 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 94.67638584066954 43.03236389160156 94.99880981445312 32.38461685180664 329567.0 0.13348416984081268 384.6830535888674 217.4523468017578 3.1425357869615134 545.859130859375 1708.44384765625 1604.626708984375 87759.0 789.1755981445314 2972.1481201171873 682.1893310546875 29.577199935913086 +sub-20045_ses-V1_task-cuff_run-02_bold 0.0075009255079006775 0.012579197313769752 7 54.16718607244344 1.182521938733031 1.0396179698416286 0.45719357423186485 2350.03564453125 0.40470551142103095 31 6.997742663656885 2.5405091151405963 2.500270733981501 2.573816564392385 2.547440047047903 0.0122315 0.024572035297751427 0.014989852905273438 443 90 90 60 2.3614838288427134 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 89.96689031786677 42.741119384765625 94.30596160888672 32.2573356628418 329589.0 0.1151241585612297 385.6410827636719 213.56405639648438 3.11918561862426 541.618408203125 1699.0972900390625 1596.2144775390625 87788.0 784.465365600586 2945.844641113281 675.9332275390625 28.416683197021484 +sub-20045_ses-V1_task-rest_run-01_bold 0.005083693693693693 0.010240199054054055 6 47.013921139300216 1.1593746943792331 1.083680562234762 0.45399919827652996 2541.296142578125 0.30598385610102585 170 38.288288288288285 2.541895225533527 2.508679066980717 2.5662290646938852 2.550777544925979 0.0119661 0.024713067337870598 0.010276624001562595 444 90 90 60 2.3689941946737734 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 97.96069897089177 40.83500671386719 90.49339294433594 31.04054069519043 329766.0 0.1621621698141098 365.78209686279297 206.91258239746094 2.9385108592520917 541.3418579101562 1697.8480224609375 1595.3153076171875 87550.0 787.2117309570312 2949.132006835938 673.4107666015625 32.0655632019043 +sub-20045_ses-V1_task-rest_run-02_bold 0.004448175675675676 0.010260048355855856 6 47.59309704950341 1.1663811387358918 1.0296409980361172 0.4579545372972822 2337.158447265625 0.26763884445713665 133 29.954954954954953 2.5407216179153562 2.509987400262062 2.5787457308631847 2.5334317226208225 0.014459 0.025211194530129433 0.012098289094865322 444 90 90 60 2.338145157020484 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 83.46215144116246 43.486328125 96.29755401611328 32.6103630065918 329334.0 0.06981982290744781 399.86948699951154 215.04885864257812 3.0855872692804303 553.414794921875 1712.873046875 1611.468505859375 88243.0 774.9910217285156 2988.535473632811 689.2041625976562 32.254364013671875 +sub-20046_ses-V1_task-cuff_run-01_bold 0.0017434467120181405 0.00565561201814059 9 28.66887091304548 1.1303140911136365 1.0084116138863635 0.45711601227173165 5875.521484375 0.14514352755022228 0 0.0 2.89909793706431 2.661199894253417 3.223324871916577 2.812769045022936 0.0453666 -0.01079864427447319 0.0398375429213047 441 90 90 60 2.99280274253044 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 50.471409802358664 31.763324737548828 90.5312728881836 21.798185348510742 333019.0 0.013605441898107529 422.94446105957 197.4644775390625 1.0201793246526085 500.12615966796875 1756.0128173828125 1692.226806640625 85948.0 949.0117980957032 2782.204077148437 565.4288330078125 46.112953186035156 +sub-20046_ses-V1_task-cuff_run-02_bold 0.0012136111111111113 0.00532232763888889 8 28.155422361302346 1.0597157555348828 0.9621840504651165 0.4575447961837509 5945.10595703125 0.12884908094074407 0 0.0 2.903438213989135 2.667866560655174 3.226254038466849 2.816194042845381 0.0495395 -0.010393612086772919 0.038411177694797516 216 90 90 60 2.9801077782081737 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 47.16754552755122 31.71121597290039 91.05331420898438 21.671297073364258 332902.0 0.0 425.8884231567384 197.95632934570312 1.013195109565049 502.32763671875 1748.5235595703125 1686.157470703125 86048.0 938.8599639892578 2773.3634887695302 565.8009033203125 45.17942810058594 +sub-20046_ses-V1_task-rest_run-01_bold 0.001139640449438202 0.005556244921348315 5 30.86022564326574 1.10805930463964 1.0041534896846858 0.45657511120906463 5916.8974609375 0.21959976435369746 105 23.59550561797753 2.9230826547182804 2.6887415598256763 3.249541537541487 2.8309648667876774 0.0254075 -0.011244561523199081 0.03729052469134331 445 90 90 60 2.969838952798436 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 51.304347147701165 31.9175968170166 89.9169921875 21.903371810913086 332548.0 0.013483146205544472 414.08754425048807 194.87445068359375 0.996198623207488 509.098876953125 1765.44873046875 1702.572998046875 86337.0 941.091259765625 2802.49169921875 573.28466796875 44.539886474609375 +sub-20046_ses-V1_task-rest_run-02_bold 0.002061083521444695 0.005408458848758465 7 28.12976477712671 1.1215659031900451 1.0075777861312227 0.45767756086309613 5778.1064453125 0.11148451506357697 20 4.514672686230249 2.9057229367753927 2.676679060304997 3.227591538413702 2.8128982116074805 0.0212419 -0.010938088409602642 0.03810098022222519 443 90 90 60 2.9714926092331706 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 48.45072955665955 31.98806381225586 91.19941711425781 21.941308975219727 332828.0 0.013544018380343914 424.6372436523436 196.3511962890625 1.0396145017898473 503.6028137207031 1750.6270751953125 1687.440185546875 86049.0 938.7729370117188 2780.4898925781245 567.8729858398438 45.446434020996094 +sub-20046_ses-V3_task-cuff_run-01_bold 0.0006865837104072398 0.007552839502262442 8 29.962914395260764 1.0263805344897967 0.9556738361904764 0.45847564668736346 5526.13134765625 0.24596237882593072 1 0.22624434389140272 2.982636805137227 2.71884155862961 3.3282373677477293 2.9008314890343416 0.0126537 -0.015124006196856499 0.036062050610780716 442 90 90 60 2.9569478184526274 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 48.50952971238877 32.88895034790039 92.56221008300781 22.753395080566406 333555.0 0.07013574987649918 421.22151489257806 195.237060546875 0.8238413666103734 515.6069946289062 1752.8101806640625 1694.4525146484375 85757.0 920.8466430664063 2785.3648437499996 573.0377197265625 38.05727005004883 +sub-20046_ses-V3_task-rest_run-01_bold 0.0013368089887640451 0.005648717460674157 5 31.604783221666697 1.0812738775000001 1.0360362400450454 0.457446907640962 5969.21875 0.28240019478065187 181 40.674157303370784 2.9579798669856494 2.7050498925109747 3.294799869076416 2.8740898393695584 0.0166274 -0.014107849448919296 0.0364350788295269 445 90 90 60 2.9715348443897076 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 49.579685443155206 31.687707901000977 91.12788391113281 21.921348571777344 333331.0 0.047191012650728226 416.90562438964844 195.31219482421875 0.8002466827423529 514.4163818359375 1753.24169921875 1692.537109375 85662.0 928.3911041259765 2781.9451538085937 569.5801391601562 43.67698669433594 +sub-20046_ses-V3_task-rest_run-02_bold 0.0009781531531531532 0.0070772811711711705 6 33.3346464274492 1.0693636888713323 0.9826588684198642 0.45864815518490115 5435.2451171875 0.30260685174826235 191 43.01801801801802 2.966967366016743 2.7111957256000947 3.3125373683715913 2.8771690040785445 0.0211873 -0.015632623806595802 0.03590688481926918 444 90 90 60 2.9548314866178766 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 48.824966029972494 33.14484405517578 92.9963607788086 22.846847534179688 333886.0 0.036036036908626556 425.4301986694336 196.031982421875 0.7796731351499138 518.5267333984375 1754.4119873046875 1695.9549560546875 85563.0 918.9191711425781 2788.922583007812 573.9566040039062 40.29798889160156 +sub-20047_ses-V1_task-cuff_run-01_bold 0.0007466666666666667 0.004627852879818595 9 27.473420125727273 1.0304553010000006 0.9999788220227261 0.5262458105363167 1421.02099609375 0.12049813634365268 1 0.22675736961451248 3.0945409523459673 2.7559040571568785 3.5513331922160307 2.9763856076649935 0.0139499 0.029357675462961197 0.03626023977994919 441 90 90 60 2.3965680723268363 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 23.045005292876322 57.07850646972656 149.6343536376953 40.909297943115234 307203.0 0.07709750533103943 664.688879394531 282.8482666015625 1.505042836202529 576.6649780273438 1642.78857421875 1549.84130859375 107887.0 762.1247314453126 2823.073266601562 646.68896484375 44.69725799560547 +sub-20047_ses-V1_task-cuff_run-02_bold 0.0010223529411764706 0.004777848574660633 8 27.700342757891168 1.0378399496145128 1.0022132073242633 0.5260045660947988 1364.9244384765625 0.12102185779299436 0 0.0 3.0896062312867527 2.753108223934641 3.5441915258331487 2.971518944092468 0.0102648 0.027490299195051193 0.03723813220858574 442 90 90 60 2.3768179880492997 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 23.30880048643813 58.073062896728516 150.81214904785156 41.7330322265625 307873.0 0.0859728530049324 670.533935546875 284.4146423339844 1.5170317543005005 582.7030639648438 1648.029541015625 1550.7579345703125 107449.0 767.7362182617187 2844.0346191406243 652.4482421875 44.47494125366211 +sub-20047_ses-V1_task-rest_run-01_bold 0.0007895259593679458 0.005400253860045148 7 28.717439590972894 1.034512210113122 0.999931419932127 0.5261001545242872 1351.2427978515625 0.1710960759377337 33 7.44920993227991 3.0655937393429777 2.7449623909249943 3.5160456936182305 2.9357731334857093 0.0372431 0.03180386871099472 0.03477606922388077 443 90 90 60 2.4147101948232708 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 22.60449739594952 57.26927947998047 148.0536651611328 41.53950500488281 307503.0 0.18735891580581665 660.7352233886717 278.7333984375 1.550475948671572 569.3560180664062 1634.37060546875 1544.3792724609375 107515.0 759.6399841308594 2794.185327148436 639.5682983398438 43.82944107055664 +sub-20047_ses-V1_task-rest_run-02_bold 0.0006296396396396396 0.005170592274774775 6 27.802657896027103 1.0214571381941309 0.982654168352144 0.5267775646367886 1312.2025146484375 0.13221834830551377 17 3.828828828828829 3.078693734546628 2.7505582240359696 3.5282290264674416 2.9572939531364737 0.0186527 0.02796761691570282 0.03478873521089554 444 90 90 60 2.3909899859175097 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 21.649686506127757 58.64626693725586 149.47613525390625 42.20720672607422 307748.0 0.12387387454509735 670.4413543701169 276.58551025390625 1.4879776773384634 579.4102783203125 1644.8392333984375 1550.4820556640625 107510.0 764.4726623535157 2830.964025878906 648.4656372070312 44.14381408691406 +sub-20047_ses-V3_task-cuff_run-01_bold 0.001021389521640091 0.007480457676537585 11 37.79956832433789 1.0623828709817356 0.9891585367351599 0.49191196580871066 2678.207275390625 0.1448057179901644 0 0.0 2.423545133651356 2.3958832381294872 2.5025915672226122 2.372160595601968 0.00428669 0.02969849295914173 0.006730832625180483 439 90 90 60 2.293176906034148 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 51.61359786736705 25.376476287841797 61.325042724609375 18.243736267089844 308523.0 0.01138952188193798 254.75536041259733 140.65943908691406 6.236856107754178 286.53741455078125 1034.3399658203125 953.426025390625 106287.0 519.3929504394531 1791.0087402343747 415.7644958496094 36.10700607299805 +sub-20047_ses-V3_task-cuff_run-02_bold 0.0037838863636363634 0.008973460022727272 10 40.83856527015947 1.0944506722779044 1.032739161093394 0.49325753208950457 2535.660888671875 0.1837896914742852 4 0.9090909090909091 2.4201812431148935 2.3929832382447227 2.500779067294635 2.3667814238053233 0.00756857 0.031001385301351547 0.006837532855570316 440 90 90 60 2.2940598851504514 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 52.79568908142956 25.77705955505371 62.226654052734375 18.615907669067383 308383.0 0.029545454308390617 259.2413604736314 142.0087127685547 6.369220731548866 285.05889892578125 1029.9571533203125 949.1556396484375 106306.0 520.8999938964844 1779.7385864257812 413.74298095703125 33.3803596496582 +sub-20047_ses-V3_task-rest_run-01_bold 0.0011999095022624433 0.0077362349095022615 8 37.61997212492066 1.0659916317913827 0.9982415964625846 0.49110104214276606 2750.689697265625 0.15173001570575312 8 1.8099547511312217 2.4224992996710903 2.3986124046877064 2.4988040673731144 2.370081426952451 0.00814515 0.0294034406542778 0.004681120626628399 442 90 90 60 2.3020744514577807 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 49.65523838397132 25.093547821044922 60.35316467285156 18.133485794067383 308768.0 0.06108597666025162 251.20657424926742 136.78338623046875 6.217795939824137 287.39678955078125 1037.58251953125 957.201416015625 106179.0 521.7488891601563 1791.0468872070307 415.79754638671875 34.91499328613281 +sub-20047_ses-V3_task-rest_run-02_bold 0.0015923595505617975 0.009525899730337076 5 37.897653184572064 1.067270820630631 1.029203166801802 0.49315718296039424 2578.631103515625 0.14611814787103403 7 1.5730337078651686 2.4326909712627063 2.402666571193275 2.509229066958862 2.386177275635982 0.0035652 0.030116451904177666 0.0066902670077979565 445 90 90 60 2.2888347256826536 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 50.78567406478085 25.890565872192383 62.07730484008789 18.597753524780273 308577.0 0.02921348437666893 258.98382568359386 139.58099365234375 6.298209598647755 286.75531005859375 1032.08984375 949.9775390625 106323.0 522.3440551757812 1784.3822143554685 415.0466003417969 34.06068420410156 +sub-20049_ses-V1_task-cuff_run-01_bold 0.0006597732426303855 0.008069065827664399 9 36.83514175411363 1.0745281019318187 0.9626843217727278 0.4356109157501602 7840.14208984375 0.3384691248895485 0 0.0 2.9408298593440088 2.7342498913506708 3.1722582072791177 2.9159814794022374 0.0247143 -0.023757200688123703 0.04643506929278374 441 90 90 60 2.9866090368530087 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 55.30635004980452 25.984201431274414 69.68343353271484 17.920635223388672 339357.0 0.0317460335791111 320.1260925292971 151.8447265625 0.7287654562541737 488.7948913574219 1635.638916015625 1593.17919921875 80131.0 819.4229125976562 2573.14404296875 533.4375 35.85539245605469 +sub-20049_ses-V1_task-cuff_run-02_bold 0.000983918918918919 0.009293167319819821 6 35.699125221038344 1.0905723488261854 0.9783931904740398 0.43470119419430797 8026.873046875 0.29278873152476 1 0.22522522522522523 2.921356253808191 2.7062748924622975 3.1659790408619624 2.8918148281003138 0.0162964 -0.02249961718916893 0.04905484616756439 444 90 90 60 3.0200991980769727 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 79.17158915468505 25.391231536865234 67.066162109375 17.511260986328125 339755.0 0.029279280453920364 306.0946044921875 152.30287170410156 0.7184319823227625 469.584228515625 1602.4244384765625 1565.2747802734375 80245.0 791.5117553710937 2511.6779296875 518.2826538085938 34.97416687011719 +sub-20049_ses-V1_task-rest_run-01_bold 0.0014599548532731378 0.008809346410835214 7 38.241724260339375 1.1258448107466068 1.041613636221719 0.4328071578733583 7901.03662109375 0.39526933849811696 267 60.270880361173816 2.946865979055788 2.7620665569120026 3.2070457058967867 2.871485674358575 0.0117204 -0.025502992793917656 0.04817478358745575 443 90 90 60 2.931190111647608 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 92.73997011187609 26.49273109436035 70.70989227294922 18.31828498840332 340385.0 0.06094808131456375 317.6546325683594 159.37721252441406 0.6970346227328945 515.9488525390625 1680.6920166015625 1636.7540283203125 79323.0 826.2126647949219 2658.879443359372 558.3887939453125 35.25650405883789 +sub-20049_ses-V1_task-rest_run-02_bold 0.0007940045248868778 0.008175206063348414 8 35.724466678321996 1.091608180634921 0.9676441721768715 0.43500114501599557 7676.0927734375 0.30285915445473777 218 49.321266968325794 2.9216979210929246 2.7309998914798146 3.145458208344054 2.8886356634549055 0.0141815 -0.02329939603805542 0.04895612969994545 442 90 90 60 3.0099276518281766 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 76.63027325283578 25.804658889770508 68.43489837646484 17.87782859802246 339588.0 0.04751131311058998 312.5082733154296 154.3272705078125 0.72173558834894 477.94305419921875 1617.876708984375 1578.572509765625 80102.0 806.4605377197265 2541.236462402343 524.4520263671875 36.69851303100586 +sub-20049_ses-V3_task-cuff_run-01_bold 0.00130718820861678 0.009850334784580498 9 38.144875639159096 1.100974523386364 0.9853034108181814 0.44178910031182006 7378.85888671875 0.3540451600368588 16 3.6281179138321997 2.975072896732853 2.749045724096071 3.1756040404794996 3.0005689256229875 0.011041 -0.024096643552184105 0.05022688955068588 441 90 90 60 2.9801503725134837 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 54.83807988485733 24.088085174560547 64.50899505615234 16.82086181640625 335999.0 0.08163265138864517 287.53946533203026 143.5386505126953 1.238233837449405 419.5831298828125 1494.106689453125 1456.653076171875 82629.0 738.1084106445312 2361.1256347656245 488.7821350097656 35.444358825683594 +sub-20049_ses-V3_task-cuff_run-02_bold 0.0012063963963963964 0.007689153378378377 6 36.576579776230226 1.1267950837923253 1.001373368735891 0.4408601487389555 7170.2255859375 0.3010434173533088 3 0.6756756756756757 2.949874291393068 2.7212373918677413 3.151824874757732 2.9765606075537314 0.0182543 -0.024497102946043015 0.05011273920536041 444 90 90 60 2.994685367872409 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 55.24695443468959 24.609859466552734 64.7932357788086 17.013513565063477 336663.0 0.03153153136372566 291.51510009765605 145.48304748535156 1.2483633044187208 418.6263732910156 1500.521484375 1461.77490234375 82008.0 753.0309906005859 2370.6755615234365 488.12005615234375 39.65092468261719 +sub-20049_ses-V3_task-rest_run-01_bold 0.0011665765765765765 0.008509085923423422 6 38.05792419726867 1.113759730045147 1.0377103622799095 0.4401660226867702 7588.35888671875 0.3460503083991261 230 51.8018018018018 2.9789840059740897 2.743662390976652 3.1840915401422367 3.009198086803381 0.0192125 -0.02422078512609005 0.049138087779283524 444 90 90 60 2.977589644648423 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 60.07517963620845 24.175764083862305 64.09325408935547 16.786035537719727 336580.0 0.06306306272745132 284.9558578491209 143.87335205078125 1.237244877231638 421.51495361328125 1501.457275390625 1464.845703125 82288.0 742.7433563232422 2372.6815185546866 491.9538879394531 37.26427459716797 +sub-20049_ses-V3_task-rest_run-02_bold 0.0019632657657657655 0.008355757117117116 6 37.35654851151243 1.1402073428442443 1.0099734409706551 0.44138711539430203 7001.6279296875 0.32422540193662563 216 48.648648648648646 2.951817346757172 2.725379058369833 3.152937374713525 2.9771356071881567 0.0132053 -0.023454967886209488 0.05039690434932709 444 90 90 60 2.9928738244578588 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 56.87349655168646 24.686664581298828 64.748046875 17.08108139038086 336261.0 0.036036036908626556 293.1689147949219 145.77932739257812 1.2221671464055017 417.2590637207031 1495.7119140625 1457.8277587890625 82306.0 749.8592681884766 2357.9387817382812 487.0966796875 38.97750473022461 +sub-20050_ses-V1_task-rest_run-01_bold 0.0019761486486486487 0.02205777454954955 6 51.54651989756208 1.062412742708804 0.9394569320993231 0.430467167027146 5002.81298828125 0.3709922104002468 187 42.11711711711712 2.6131993652824215 2.6406290617374952 2.526970732920538 2.671998301189231 0.0349796 0.00553323607891798 0.01619233936071396 444 90 90 60 2.7627181248596924 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 32 87.2470239089474 28.272958755493164 53.4432258605957 20.700450897216797 335116.0 0.20045045018196106 186.43806838989258 122.21797943115234 1.4683715797282675 448.9980773925781 1550.58154296875 1478.7861328125 83257.0 787.2482055664062 2534.87041015625 535.26171875 22.88289451599121 +sub-20050_ses-V3_task-cuff_run-01_bold 0.0013672048192771085 0.0074120651807228904 5 33.94966717512078 1.037578451376812 0.952906150797101 0.46266174591226383 4130.78662109375 0.20240668103875786 6 1.4457831325301205 2.982681237658157 2.734308224681686 3.2528998707413725 2.9608356175514112 0.0163446 0.00015542942855972797 0.03773362934589386 415 90 90 60 2.9319057346181268 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 52.81883164424829 30.195072174072266 68.68195343017578 20.9542179107666 327091.0 0.03614458069205284 296.4144592285156 148.915283203125 0.480962227006009 421.56634521484375 1424.044921875 1374.9759521484375 90079.0 718.3445739746094 2264.2792724609376 468.9674377441406 35.28689956665039 +sub-20050_ses-V3_task-cuff_run-02_bold 0.0034277642276422764 0.00753111569105691 7 35.15406435742857 1.030403842244898 0.9671386313061225 0.4617897355163385 4101.9716796875 0.2421405636064905 2 0.8130081300813008 2.9711840162123395 2.714429058804947 3.239895704591445 2.959227285240628 0.0111265 0.0008881455869413912 0.04065798968076706 246 90 90 60 2.950311366676422 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 59.64360191062963 30.013654708862305 68.39393615722656 20.821138381958008 327609.0 0.03252032399177551 291.27642211913917 152.3986053466797 0.5088961117030828 415.8819580078125 1410.56591796875 1361.3515625 89592.0 720.0491424560546 2238.261328124999 461.423828125 34.96947479248047 +sub-20050_ses-V3_task-rest_run-01_bold 0.0025575730337078655 0.007221479123595505 5 34.72474623578828 1.1126192563288295 1.0124266476801809 0.46117239580468505 4218.3125 0.22317024062044752 87 19.55056179775281 2.970352077648828 2.7335582247114885 3.2477040376145028 2.929793970620492 0.0142006 -0.00044230485218577087 0.03499801829457283 445 90 90 60 2.9471605648933075 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 51.792016622337336 30.19178009033203 67.82296752929688 20.928091049194336 327500.0 0.040449440479278564 290.81403808593734 144.89649963378906 0.5283455102508623 424.43072509765625 1442.3360595703125 1393.865234375 89721.0 729.449462890625 2288.889892578125 472.94927978515625 37.936893463134766 +sub-20050_ses-V3_task-rest_run-02_bold 0.0038037162162162168 0.00800217355855856 6 34.694822565327335 1.106011241918736 1.0333122660045144 0.4627029874786519 3991.450927734375 0.22523969254946088 80 18.01801801801802 2.9729423539436652 2.7334207247169524 3.248666537576257 2.9367397995377864 0.00868727 0.0028256012592464685 0.03582671657204628 444 90 90 60 2.935570243663165 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 54.61362063325557 30.376649856567383 68.44378662109375 21.243244171142578 327535.0 0.09009009599685669 294.5322021484375 146.36488342285156 0.6010819313076099 416.0604248046875 1418.910400390625 1367.0665283203125 89668.0 722.4985321044921 2256.4187988281246 465.68768310546875 34.995426177978516 +sub-20051_ses-V1_task-cuff_run-01_bold 0.0014825396825396827 0.004291744648526077 9 26.677204678159107 1.064681626090908 1.003647581181817 0.4399667151947313 9003.57421875 0.17064194671470506 0 0.0 2.956022952625746 2.7872082225796295 3.357799866573021 2.7230607687245887 0.00856165 -0.017922749742865562 0.03237342834472656 441 90 90 60 2.5522227484831723 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 23.52338988898304 28.734243392944336 90.45145416259766 19.560091018676758 336245.0 0.004535147454589605 456.9455932617185 188.55743408203125 0.5749052483457984 645.496826171875 1960.7996826171875 1861.04541015625 83623.0 888.24697265625 3317.5075927734374 729.1817626953125 47.39208221435547 +sub-20051_ses-V1_task-cuff_run-02_bold 0.0018778684807256238 0.004661108458049887 9 25.740069991750012 1.0584436785227274 1.0114603135454552 0.4416871197069966 8840.3974609375 0.1553466925277144 0 0.0 2.9657465611980878 2.793183222342204 3.3701623660817797 2.7338940951702786 0.0105099 -0.01705555059015751 0.032791540026664734 441 90 90 60 2.544080851049793 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 22.961571131297394 28.912425994873047 92.3115005493164 19.657596588134766 335708.0 0.00907029490917921 466.26904602050774 192.4103546142578 0.5851573042340492 644.7638549804688 1955.4913330078125 1856.6734619140625 83999.0 879.1716735839844 3314.241162109375 729.7969360351562 46.02751922607422 +sub-20051_ses-V1_task-rest_run-01_bold 0.0027854298642533935 0.005772160927601811 8 26.37166937142856 1.0326039324489797 0.9950590900226766 0.4382612079279123 8927.087890625 0.16422032541020237 30 6.787330316742081 2.9722187813220065 2.7991623887712804 3.374333199249379 2.743160755945361 0.00679326 -0.01849728263914585 0.032635755836963654 442 90 90 60 2.551913572143136 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 23.109955383986307 28.519969940185547 88.03726196289062 19.57126808166504 336220.0 0.05203619971871376 439.12490386962884 182.2091827392578 0.5805325246880426 647.296875 1965.7525634765625 1866.244384765625 83508.0 887.2740112304688 3326.1537475585938 731.307373046875 40.58750915527344 +sub-20051_ses-V1_task-rest_run-02_bold 0.001743605442176871 0.004979086666666667 9 26.8959017060682 1.055593338340909 1.024164967704546 0.44269304483891747 8970.4697265625 0.16296254858148848 33 7.482993197278912 2.9654271158739234 2.790304055789945 3.367591532850602 2.738385758981222 0.0116112 -0.016766343265771866 0.03263497352600098 441 90 90 60 2.5438694260606205 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 22.467726227774317 28.724157333374023 93.6292953491211 19.53741455078125 335855.0 0.006802720949053764 472.9247283935546 195.20046997070312 0.5867615810766682 644.4379272460938 1950.544189453125 1851.2064208984375 83943.0 878.0065795898438 3303.7242187499974 727.70849609375 44.307289123535156 +sub-20051_ses-V3_task-rest_run-01_bold 0.003969435665914222 0.005832459774266366 7 28.38621427780547 1.083025705361991 1.0255287083031674 0.44363569010957105 7631.0693359375 0.16923469225304477 39 8.803611738148984 2.926375718300534 2.725683225024413 3.263537370318676 2.7899065595585126 0.00978321 -0.015799133107066154 0.030758708715438843 443 90 90 60 2.878449903666547 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 22.51857785426288 28.19287109375 82.48452758789062 19.31828498840332 338270.0 0.031602710485458374 409.35825347900357 168.26966857910156 0.4395534277326476 520.2628173828125 1743.0091552734375 1689.55078125 81888.0 824.3274444580078 2797.6185546874976 586.9619140625 41.778141021728516 +sub-20052_ses-V1_task-cuff_run-01_bold 0.0018345022624434392 0.003537860135746606 8 26.795129849501144 1.0498925952154197 1.0037021224716554 0.4695830007975034 8180.04345703125 0.1354891771407164 0 0.0 3.1722520566810815 2.8875415519260743 3.6342665222538897 2.9949480958632813 0.00602502 -0.028981298208236694 0.04823864996433258 442 90 90 60 1.905735581851795 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 36.97194589709473 26.97866439819336 86.45097351074219 18.45475196838379 306279.0 0.004524887073785067 451.7810058593744 194.49078369140625 4.059605154887777 656.33837890625 1915.5863037109375 1716.118896484375 109398.0 860.932717895508 3631.7833862304683 900.4979858398438 48.15873718261719 +sub-20052_ses-V1_task-cuff_run-02_bold 0.0008705656108597285 0.004926284615384615 8 25.083627311609973 0.9722252344897958 0.9622214333560097 0.4719085223263253 8438.3505859375 0.12554359892475253 0 0.0 3.1757645543949145 2.8799623855605767 3.641579021963317 3.0057522556608482 0.00350074 -0.027896082028746605 0.048781707882881165 442 90 90 60 1.9341838941069183 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 35.694880430379406 26.311159133911133 85.8486557006836 18.115385055541992 305471.0 0.022624434903264046 447.9411926269531 190.610107421875 3.8124274618590954 646.4649047851562 1893.7225341796875 1701.751220703125 110012.0 851.1496978759766 3569.366369628906 879.8250732421875 42.459781646728516 +sub-20052_ses-V1_task-rest_run-01_bold 0.004242947845804988 0.005515832653061224 9 24.77739198870454 1.0071358422045456 0.99250006175 0.4698092142660575 8569.90625 0.13798896120505014 16 3.6281179138321997 3.178445110670968 2.88327488542895 3.650470688276661 3.001589758307293 0.00492153 -0.02790338359773159 0.04945745691657066 441 90 90 60 1.9348032636762291 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 40.224532003976 26.209449768066406 84.19164276123047 18.115646362304688 305919.0 0.043083902448415756 434.2043273925781 188.90692138671875 3.8396207484456584 647.9442138671875 1912.2191162109375 1717.7030029296875 109619.0 861.327685546875 3612.5724609374993 887.7880249023438 40.67626190185547 +sub-20052_ses-V1_task-rest_run-02_bold 0.001634130925507901 0.004461881557562077 7 26.60131709095022 0.9934848756787331 1.0085287189366505 0.47130904861100603 8791.0888671875 0.14834772510951275 23 5.191873589164786 3.1628659453808368 2.8648748861601003 3.6259456892511968 2.9977772607312136 0.0093406 -0.027176357805728912 0.04928756505250931 443 90 90 60 1.9414003895382326 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 38.01668924839023 26.134628295898438 86.11270904541016 17.90519142150879 306279.0 0.009029345586895943 447.705667114257 191.7314453125 3.863710400864127 641.7559204101562 1900.34228515625 1704.4266357421875 109367.0 867.34404296875 3575.063452148437 877.9326782226562 43.32464599609375 +sub-20056_ses-V1_task-cuff_run-01_bold 0.0008549772727272727 0.005493694954545454 10 32.60817102405464 1.0346184661275628 0.9995013861959006 0.5377745133085045 1778.2940673828125 0.21464769766809846 0 0.0 3.0464993037113506 2.7358332246210884 3.508429027254223 2.8952356592587414 0.00916924 0.033079054206609726 0.05860524624586105 440 90 90 60 2.6392598006812573 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 19.20733190271032 46.560447692871094 140.8064727783203 33.30908966064453 300719.0 0.11136363446712494 706.2254333496093 280.9200134277344 1.2319123096887532 473.2937927246094 1470.9141845703125 1412.154541015625 113643.0 707.4388427734375 2443.6609374999994 535.0546875 40.263755798339844 +sub-20056_ses-V1_task-cuff_run-02_bold 0.00040006772009029343 0.004214035733634312 7 32.393336080294134 1.0501088944796384 0.9983528477828063 0.5377224665587047 1693.248046875 0.1909857807895543 0 0.0 3.0259826428211984 2.728854058231749 3.478829028430421 2.870264841801426 0.006658 0.030893947929143906 0.058948978781700134 443 90 90 60 2.6286442171997364 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 18.331907598700607 47.61730194091797 141.44781494140625 34.0270881652832 300913.0 0.054176073521375656 711.3892089843748 280.6888427734375 1.2906470108769668 480.056884765625 1479.9346923828125 1418.61962890625 113426.0 714.7934722900391 2460.7398071289062 539.6749267578125 43.83747482299805 +sub-20056_ses-V1_task-rest_run-01_bold 0.0003628280542986425 0.004891687058823529 8 33.23804673705217 1.0410012612244899 0.9882010765986389 0.536746255681166 1752.2803955078125 0.227938807820561 131 29.638009049773757 3.033111806865925 2.729399891543393 3.487899861403312 2.88203566765107 0.00749582 0.03334708511829376 0.056836094707250595 442 90 90 60 2.632138162115247 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 19.607028453649907 46.96025466918945 141.260498046875 33.56561279296875 301276.0 0.06334841996431351 708.4989013671875 283.50701904296875 1.266645864442439 476.0879821777344 1481.0958251953125 1419.918701171875 113136.0 716.1572570800781 2464.0989990234375 539.4520874023438 41.358726501464844 +sub-20056_ses-V1_task-rest_run-02_bold 0.00047704288939051924 0.005870764379232506 7 33.23002506699092 1.0196519358823528 0.9825415996380085 0.5384814504568635 1656.0672607421875 0.22902349523987495 130 29.345372460496613 3.044431247807495 2.7432582243260453 3.4926331945485596 2.897402324547879 0.00770758 0.031555451452732086 0.05894686281681061 443 90 90 60 2.632870637719177 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 18.711356256725157 48.30003356933594 142.38644409179688 34.715576171875 301161.0 0.1354401856660843 709.0429077148438 281.22039794921875 1.270007277668924 479.32073974609375 1475.4306640625 1415.64794921875 113348.0 710.2429107666015 2455.9007568359357 537.679931640625 39.277122497558594 +sub-20056_ses-V3_task-cuff_run-01_bold 0.00036702947845804987 0.004081739954648525 9 35.30577958256816 1.0891500218863643 0.9925181732954546 0.5376575819672278 2057.09765625 0.22427072633812492 0 0.0 3.0304757043590143 2.7376832245475757 3.51448736034682 2.8392565281826476 0.00496554 0.028146997094154358 0.06225517764687538 441 90 90 60 2.592335034090426 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 18.659473170145144 45.59422302246094 147.3573760986328 32.199546813964844 299183.0 0.01587301678955555 750.0621215820307 294.4450988769531 1.8452691270017336 492.1868591308594 1554.0406494140625 1484.346923828125 114467.0 759.1410339355468 2602.2936279296873 572.5881958007812 44.78140640258789 +sub-20056_ses-V3_task-rest_run-01_bold 0.0007540765765765764 0.004015486283783784 6 34.94230451654629 1.0949644757110613 1.0065912836794588 0.5372300283483693 2023.3822021484375 0.22540806301981287 126 28.37837837837838 3.0251632046206125 2.7322332247641397 3.504254027420122 2.8390023616775757 0.0137964 0.028626181185245514 0.06328345090150833 444 90 90 60 2.6046952300663166 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 19.491989905217917 45.85382080078125 146.40391540527344 32.47522735595703 299191.0 0.022522523999214172 744.8311157226562 293.6210021972656 1.8017736818353232 489.51593017578125 1552.7276611328125 1484.0338134765625 114501.0 760.3311157226562 2594.254638671875 569.7508544921875 45.38533401489258 +sub-20056_ses-V3_task-rest_run-02_bold 0.0006925675675675675 0.004778752770270271 6 35.624954809051886 1.0916041924604958 1.0101816939051909 0.5391578442402322 1930.0509033203125 0.22938642725784564 139 31.306306306306308 3.051328477224434 2.76110822361675 3.5330665262752166 2.8598106817813354 0.00785872 0.028438998386263847 0.06236737221479416 444 90 90 60 2.5814908794955977 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 18.287104857733777 47.04090118408203 149.461669921875 33.44932556152344 299016.0 0.09459459781646729 758.3783874511719 295.7060546875 1.8774040369720648 493.2055969238281 1554.0548095703125 1483.81982421875 114643.0 760.0820129394531 2603.4447021484366 574.789306640625 42.63018798828125 +sub-20057_ses-V1_task-cuff_run-01_bold 0.0035532882882882886 0.027105184684684685 6 50.767424038713315 1.0309846450338607 0.9767787695711065 0.44689906946392105 4713.8828125 0.5568729192397152 56 12.612612612612613 3.194695042311109 2.884774885369345 3.3569040332752853 3.342406208288696 0.0145642 -0.01163419894874096 0.04037831723690033 444 90 90 60 2.4753115123956118 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 64.80871877404259 28.002483367919922 64.77571868896484 19.63964080810547 331146.0 0.1599099189043045 279.6486587524414 140.3949737548828 1.1760155012559883 487.20684814453125 1442.9219970703125 1354.89306640625 88546.0 684.2325439453125 2443.9408569335938 547.3595581054688 19.321430206298828 +sub-20057_ses-V1_task-cuff_run-02_bold 0.00374445945945946 0.03170867995495495 6 50.26145775304746 0.9132332004288943 0.8781091648532736 0.44559070617848756 4156.951171875 0.6909210904080146 68 15.315315315315315 3.2629158579927022 2.90691238448968 3.4642290290105726 3.4176061604778543 0.0356221 -0.008131594397127628 0.040965426713228226 444 90 90 60 2.2938104459574826 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 77.43160834517957 29.568567276000977 67.62808990478516 20.939189910888672 330790.0 0.20045045018196106 290.5324417114256 147.91700744628906 1.5640557759349454 518.0659790039062 1458.510009765625 1355.7747802734375 88683.0 670.5633300781251 2546.0706542968746 591.0545654296875 12.884235382080078 +sub-20057_ses-V1_task-rest_run-01_bold 0.007048755656108598 0.008200739004524886 8 39.97935374678004 1.154523522040816 1.078375497845806 0.44802082937147536 4852.78564453125 0.37146660017960276 260 58.8235294117647 3.0625645199869997 2.8195082212961426 3.1666123741701298 3.2015729644947277 0.0128568 -0.014890546910464764 0.036444343626499176 442 90 90 60 2.4203799355932114 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 41.382937543167074 28.293554306030273 66.04931640625 19.542987823486328 329762.0 0.04977375641465187 293.6299819946292 138.00926208496094 1.366663514342866 495.68231201171875 1478.650390625 1382.337158203125 89611.0 696.1538696289062 2528.91748046875 571.120849609375 32.999664306640625 +sub-20057_ses-V1_task-rest_run-02_bold 0.002327787810383747 0.012895183860045149 7 43.09522993841631 1.0416323524660636 0.9731040351357462 0.4497630314690884 4459.35009765625 0.4644011879346988 317 71.55756207674943 3.170883935338324 2.8410457204403192 3.3452665337377177 3.3263395518369347 0.00964463 -0.008291458711028099 0.040028467774391174 443 90 90 60 2.3314288365674583 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 83.51817455212219 28.765161514282227 67.65444946289062 20.12415313720703 328534.0 0.10158013552427292 298.7647964477535 150.5598602294922 1.609277036598189 507.2809143066406 1453.651123046875 1346.9503173828125 90577.0 694.9900634765625 2529.5455078125 577.7327880859375 25.563617706298828 +sub-20057_ses-V3_task-cuff_run-01_bold 0.0014476696832579185 0.013683687760180996 8 42.76013044326531 1.0444444093877556 0.9648515309070289 0.44904828463370905 7882.2177734375 0.43364819877903954 20 4.524886877828054 3.0675576078700506 2.7945957222860764 3.3702123660797927 3.037864735244283 0.0466457 -0.016916513442993164 0.04221504181623459 442 90 90 60 2.4192637868455185 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 21 59.98626767940192 25.93547821044922 78.61780548095703 18.004526138305664 327980.0 0.0859728530049324 367.43950042724595 177.8190155029297 0.8584124070329109 571.8584594726562 1711.912109375 1594.6923828125 91041.0 824.3529663085938 2980.927734375 659.1607055664062 25.112178802490234 +sub-20057_ses-V3_task-rest_run-01_bold 0.0024598194130925504 0.013106689119638824 7 41.54651381219457 1.0531980340045246 0.9778984080316743 0.4461020534597935 8269.6865234375 0.37387761628079735 245 55.30474040632054 3.1188020459602015 2.8463123868977074 3.450495696222953 3.0595980547599444 0.0327663 -0.018796484917402267 0.04052804037928581 443 90 90 60 2.275151442005618 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 53.485699638046505 25.55229949951172 78.40309143066406 17.577878952026367 328045.0 0.054176073521375656 370.62934570312495 173.9193878173828 1.0469437134234134 610.0624389648438 1756.7474365234375 1622.4876708984375 91029.0 828.639306640625 3159.278564453123 713.1300048828125 26.89488983154297 +sub-20057_ses-V3_task-rest_run-02_bold 0.0010579683972911965 0.00774123769751693 7 43.41239953371039 1.1065893672850682 0.976310178868778 0.4482298989722896 8514.3134765625 0.4276002410316021 302 68.17155756207674 3.0078020616776073 2.7372415578984595 3.2834748695264313 3.002689757607932 0.00742403 -0.014389016665518284 0.04192579537630081 443 90 90 60 2.410043255487998 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 60.13995730025207 24.74573516845703 77.98719787597656 17.09255027770996 329418.0 0.04966140165925026 375.66863403320247 179.32797241210938 0.992066760420049 569.0968017578125 1714.5634765625 1592.8160400390625 90170.0 840.4494445800781 2985.3545532226567 660.9039916992188 35.11138916015625 +sub-20058_ses-V1_task-cuff_run-01_bold 0.0008486651583710407 0.0064899867647058825 8 30.751354031428548 1.051918729319728 1.0095697538775512 0.4575752860577343 6983.48779296875 0.22515846761048633 0 0.0 2.803095160828914 2.555616565115588 3.029462379619981 2.824206537751174 0.0156321 -0.01590207777917385 0.04092683643102646 442 90 90 60 3.170854406059649 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 32.736387571182 24.43610382080078 64.7517318725586 16.746606826782227 330325.0 0.020361991599202156 306.1086120605469 140.78228759765625 0.8215002220263554 386.4007568359375 1446.5523681640625 1403.3021240234375 88426.0 781.9615631103516 2230.850830078125 442.5602722167969 43.00225830078125 +sub-20058_ses-V1_task-cuff_run-02_bold 0.0015820316027088035 0.009825035598194129 7 30.11095437547509 1.0072859589819005 0.982776320633484 0.4581090193254648 6481.39404296875 0.2036292549203353 7 1.580135440180587 2.829343765083067 2.579533230831892 3.0550290452707194 2.8534690191465892 0.0119745 -0.015892423689365387 0.040491558611392975 443 90 90 60 3.1585863942443675 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 34.1847845959879 25.043596267700195 65.73143005371094 17.435667037963867 330883.0 0.11286681890487671 308.0600433349606 140.63661193847656 0.8235887282410004 390.905029296875 1448.75048828125 1402.3251953125 87914.0 789.8000366210938 2239.4975463867186 443.9698791503906 35.185569763183594 +sub-20058_ses-V1_task-rest_run-01_bold 0.0013117832957110608 0.009273170902934539 7 32.2571364182353 1.030936234208145 0.9936363752714952 0.4568018060966816 6947.29296875 0.27718874051832515 157 35.44018058690745 2.8035673801332703 2.547412398774926 3.0244915464841706 2.8387981951407144 0.0116243 -0.015738042071461678 0.042438603937625885 443 90 90 60 3.219536437823852 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 37.608897756377615 24.384288787841797 63.59895706176758 16.77878189086914 330519.0 0.04063205420970917 295.97992858886715 140.02188110351562 0.8528573347542214 383.9840393066406 1446.6129150390625 1402.19873046875 87841.0 801.0677490234375 2217.939208984375 435.5256652832031 36.94502258300781 +sub-20058_ses-V1_task-rest_run-02_bold 0.0007227272727272728 0.0048697721818181825 10 28.002452398337134 1.0308706680182231 1.0023136848974934 0.4583191854919223 7059.55517578125 0.14992033321257775 8 1.8181818181818181 2.7743562824440686 2.5474707321059413 2.998512380849823 2.77708573437644 0.0158559 -0.01639591157436371 0.03955194726586342 440 90 90 60 3.16483855340765 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 31.00423705941209 24.574132919311523 67.06902313232422 16.89090919494629 331702.0 0.02499999850988388 315.77942657470703 142.80955505371094 0.8856308156987232 389.84185791015625 1451.70556640625 1407.611328125 87496.0 792.8516998291016 2239.5606689453125 444.7630615234375 45.194297790527344 +sub-20059_ses-V1_task-cuff_run-01_bold 0.0034454627539503386 0.006257054853273138 7 26.350648241425326 1.054615306266968 1.015670395361991 0.45565656363705936 5377.05029296875 0.12573828287646577 1 0.22573363431151242 2.985711796975867 2.8037373885894863 3.21210403902912 2.941293963308994 0.0113893 -0.018546583130955696 0.042656514793634415 443 90 90 60 2.6138907363376593 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 34.59121735699291 29.986719131469727 85.89881896972656 20.69977569580078 334146.0 0.05191873759031296 420.6930236816406 175.6107940673828 0.8428941404923398 511.29193115234375 1603.6329345703125 1533.06884765625 85094.0 743.4392822265625 2697.310546875 586.5049438476562 44.11521911621094 +sub-20059_ses-V1_task-cuff_run-02_bold 0.0022499774774774775 0.005195267004504505 6 26.960813599593727 1.0675492783747178 1.0190752101580132 0.45625245345491044 5419.24658203125 0.15160889738279268 0 0.0 2.965618748176714 2.7903207224559496 3.195229039699672 2.9113064823745205 0.0108507 -0.018402116373181343 0.04298968240618706 444 90 90 60 2.615974884291375 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 31 33.21182377503813 30.12287139892578 86.78905487060547 20.675676345825195 334318.0 0.02477477490901947 425.8703964233396 176.90480041503906 0.8408026428626947 511.3958740234375 1602.731201171875 1532.895263671875 84928.0 744.8171539306641 2693.804687499999 585.9713134765625 47.68906784057617 +sub-20059_ses-V1_task-rest_run-01_bold 0.00133176072234763 0.0066186672460496615 7 25.606160806855186 1.0235902095701357 1.0235601757692303 0.454608942265191 5592.6142578125 0.14898298785146571 22 4.966139954853273 2.993060408977128 2.80694155512883 3.2368957047106544 2.935343967091899 0.0103795 -0.018584931269288063 0.042685430496931076 443 90 90 60 2.6111877661915295 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 42.16459420775203 29.49809455871582 85.97943878173828 20.44243812561035 334723.0 0.06772009283304214 419.5101623535156 179.73263549804688 0.863339186975419 510.07373046875 1601.7496337890625 1533.212158203125 84700.0 738.5945922851563 2696.6340576171883 587.1669311523438 39.06050109863281 +sub-20059_ses-V1_task-rest_run-02_bold 0.0016313995485327313 0.0073849830248306995 7 26.750634685429826 1.0263090628959282 1.0071195426470592 0.45635922150485936 5329.2353515625 0.153541290218625 33 7.44920993227991 2.9849201335369546 2.8060873884961053 3.2234665385776147 2.925206473537144 0.00898747 -0.020483670756220818 0.046370282769203186 443 90 90 60 2.5966822968831047 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 36.20079219111969 30.15070915222168 88.47282409667969 20.74492073059082 334718.0 0.027088036760687828 430.44323425292896 183.4024658203125 0.8574117550066238 513.83544921875 1597.5244140625 1528.8612060546875 84630.0 733.6035125732421 2693.0897094726565 588.7713623046875 40.330230712890625 +sub-20059_ses-V3_task-cuff_run-01_bold 0.0015908163265306121 0.00529537581632653 8 26.895182722256422 1.0394189216410248 1.003033584871795 0.447643289844151 5887.0869140625 0.12904683670225908 0 0.0 2.9461659639746642 2.7732623898004536 3.1177040427802387 2.9475314593433004 0.00543924 -0.016965942457318306 0.044215429574251175 196 90 90 60 2.6120589907643574 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 37.679938171326704 26.974281311035156 74.76577758789062 18.647958755493164 334942.0 0.020408162847161293 362.7183700561526 159.67556762695312 1.0603931532567064 479.56890869140625 1523.31982421875 1452.665771484375 84086.0 715.1709136962891 2543.0382080078125 556.1348876953125 48.046024322509766 +sub-20059_ses-V3_task-rest_run-01_bold 0.0010715646258503402 0.003809307709750567 9 26.67130451636363 1.04741241559091 1.003263680431818 0.44684691573210733 5899.583984375 0.11711736865547688 8 1.8140589569160999 2.9647034638076057 2.7944790556240457 3.1549665412995602 2.94466479449921 0.00807793 -0.019574956968426704 0.04325585439801216 441 90 90 60 2.5720746900647824 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 46.321653285403755 27.46680450439453 77.11124420166016 18.954648971557617 335480.0 0.027210883796215057 377.7784515380858 167.79505920410156 1.0016834116965025 495.3153076171875 1549.9158935546875 1477.420654296875 83930.0 712.0860443115234 2607.787866210938 574.4047241210938 47.230106353759766 +sub-20059_ses-V3_task-rest_run-02_bold 0.0003508371040723982 0.0027734076470588235 8 27.103343526757385 1.0444615420634917 0.9995024754875268 0.4482137446881791 5789.4375 0.1477910452702812 29 6.5610859728506785 2.949468742834817 2.782824889420474 3.1241582091904396 2.9414231298935385 0.0117622 -0.017633313313126564 0.044514000415802 442 90 90 60 2.5827048292414143 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 45.36228570794251 27.483489990234375 77.67806243896484 18.894798278808594 335256.0 0.004524887073785067 382.34786224365234 169.9425811767578 1.067168511821401 486.541748046875 1529.15673828125 1457.594970703125 83996.0 712.5011749267578 2568.6653442382812 564.3642578125 51.186546325683594 +sub-20061_ses-V1_task-cuff_run-01_bold 0.001832844827586207 0.01997595287356322 10 42.2434286287896 0.9953973628530266 0.9291659539193089 0.46510505463847424 6753.87109375 0.22211562787191877 3 0.8620689655172413 2.40927291975177 2.454974902448062 2.377262405536079 2.3955814512711697 0.00245527 0.008168690837919712 0.01728023961186409 348 90 90 60 2.774208638249366 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 52.01947127741464 16.329925537109375 38.17766189575195 11.316091537475586 317337.0 0.03448275849223137 153.19597778320315 88.24459075927734 3.1518873888104544 266.2038269042969 992.3573608398438 940.3793334960938 97711.0 538.3534545898438 1611.9181518554688 338.9703674316406 23.2923583984375 +sub-20061_ses-V1_task-rest_run-01_bold 0.0018666742596810937 0.013771169407744876 11 40.09519421988584 1.0539459923287673 1.0126520319863022 0.46400859597722544 6966.62109375 0.21143359965456385 101 23.006833712984054 2.4021604110578174 2.4486915693644056 2.3893165717237563 2.3684730920852903 0.00450096 0.006584398448467255 0.015490248799324036 439 90 90 60 2.7655894609788527 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 45.17520092683592 16.11612319946289 37.593841552734375 11.177677154541016 317695.0 0.03416856750845909 153.6072952270507 84.4795150756836 3.255203891695043 268.21246337890625 993.9777221679688 941.1344604492188 97575.0 542.3236938476563 1619.1483398437501 340.2998352050781 28.226604461669922 +sub-20061_ses-V1_task-rest_run-02_bold 0.0025572072072072077 0.01674611421171171 6 42.76671323925508 1.0499204838826177 0.9806844889841995 0.46337141110197927 6448.60986328125 0.22989492967445704 110 24.774774774774773 2.400824302356392 2.446287402793272 2.380595738736958 2.3755897655389457 0.0054027 0.006246539764106274 0.01567700132727623 444 90 90 60 2.7237691518998077 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 12 42.30412863716291 16.672597885131836 38.31968307495117 11.653153419494629 318647.0 0.07207207381725311 156.5970779418946 85.26397705078125 3.4303294491582 270.4580993652344 998.3712158203125 942.8558959960938 97191.0 543.6025085449219 1629.9494018554688 346.15673828125 25.195117950439453 +sub-20061_ses-V3_task-rest_run-01_bold 0.002333024830699774 0.022604011738148983 7 52.18518888900452 1.0687423144343888 0.9841810354298639 0.4615756110153638 5587.73828125 0.35276089754569423 244 55.07900677200903 2.5059563605982946 2.625237395682438 2.455229069104629 2.437402617007817 0.00312939 0.005699727684259415 0.012089915573596954 443 90 90 60 2.676417815806871 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 36.104417396585404 19.07971954345703 39.60371017456055 13.232505798339844 319627.0 0.06997742503881454 159.67810363769536 79.70581817626953 2.3245394797263383 298.47821044921875 1041.80908203125 988.66259765625 96092.0 534.776889038086 1729.9628051757809 369.3957824707031 20.28957748413086 +sub-20062_ses-V1_task-cuff_run-01_bold 0.0020276470588235294 0.005966908936651583 8 34.040649505124684 1.0299480161451253 1.0114300270294778 0.494147515463778 2334.755859375 0.24374777947825124 7 1.583710407239819 2.9805243108281423 2.7363623912667276 3.332599867574379 2.8726106736433197 0.0131524 0.014963020570576191 0.052302103489637375 442 90 90 60 2.4902488493685326 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 24.149996515784533 39.21181106567383 115.27220153808594 27.386878967285156 325729.0 0.029411766678094864 558.476513671875 233.66522216796875 0.7295388088932135 490.8873291015625 1429.776611328125 1341.772705078125 91248.0 686.7211761474609 2428.5652221679684 538.8077392578125 38.735679626464844 +sub-20062_ses-V1_task-cuff_run-02_bold 0.004753401360544219 0.005592243265306123 9 35.396742859568214 1.0661305462045463 1.0270197155227272 0.4951569977476636 2244.91259765625 0.24106740583222844 16 3.6281179138321997 2.9787229234338937 2.7402332244462477 3.330487367658322 2.865448178197112 0.0115468 0.01594216749072075 0.05250969156622887 441 90 90 60 2.4758171657537034 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 23.021065977471434 40.11094665527344 116.44233703613281 27.891157150268555 325407.0 0.011337868869304657 566.6537353515628 234.52291870117188 0.7349216313249962 493.962158203125 1426.7635498046875 1339.24609375 91490.0 677.3324584960938 2424.6490112304687 540.927978515625 39.32482147216797 +sub-20062_ses-V1_task-rest_run-01_bold 0.0038866515837104078 0.00448728169683258 8 32.97616162369616 1.0742154591156463 1.0433078939455789 0.49344560647007585 2424.947509765625 0.20653281452296585 50 11.312217194570136 2.9787548678174645 2.7420498910407267 3.3284665344052895 2.8657481780063767 0.00937642 0.012597647495567799 0.051762185990810394 442 90 90 60 2.4676421129307844 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 24.356370932792373 38.90657043457031 114.69791412353516 27.119911193847656 325939.0 0.024886878207325935 555.0500305175781 230.7660369873047 0.6912951781765186 498.68780517578125 1432.7236328125 1345.228515625 91332.0 676.0173492431641 2437.1952026367185 545.1443481445312 41.37890625 +sub-20062_ses-V1_task-rest_run-02_bold 0.004192556561085973 0.0048163283936651586 8 33.98831006798185 1.0741038414739223 1.044170529229025 0.49613684601367763 2326.90234375 0.23012422276363875 70 15.83710407239819 2.985877088194538 2.7510748906821054 3.33294570089397 2.8736106730075375 0.0100806 0.014578360132873058 0.05127997323870659 442 90 90 60 2.4631937637183627 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 22.433522223006694 39.678062438964844 118.3055191040039 27.515838623046875 325667.0 0.018099548295140266 574.8733520507812 237.11712646484375 0.7334077530427154 494.9090881347656 1425.331298828125 1338.0238037109375 91654.0 670.208187866211 2424.254150390623 543.2039184570312 41.01498794555664 +sub-20062_ses-V3_task-cuff_run-01_bold 0.0028809029345372456 0.005385356049661399 7 31.508673641832587 1.0465355727828056 1.0072387366968325 0.5033701139426807 2925.015869140625 0.23895499062855224 13 2.9345372460496613 2.9703035058488845 2.762070723578504 3.416895697558097 2.7319440964100545 0.0118064 0.007403362076729536 0.06553120911121368 443 90 90 60 2.391753579739801 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 18.81377021037796 41.901084899902344 151.1189727783203 28.650114059448242 322271.0 0.02483070082962513 745.3363647460938 305.6478576660156 1.4654211392897123 591.34912109375 1677.78369140625 1571.5225830078125 93898.0 787.9922088623048 2880.786938476562 657.0552368164062 40.54526901245117 +sub-20062_ses-V3_task-cuff_run-02_bold 0.004953995485327314 0.0036218140632054176 7 30.16800244346155 1.0966443548416296 1.0414789593438911 0.504681392487995 2813.63037109375 0.1697409714346024 8 1.8058690744920993 2.9571215676552534 2.7582957237285086 3.4099498645007666 2.7031191147364844 0.0108566 0.008389929309487343 0.065341055393219 443 90 90 60 2.3717155406909285 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 18 18.071052503580916 42.24245071411133 153.3348388671875 28.948081970214844 321961.0 0.006772009190171957 757.8306884765625 308.8779296875 1.4394576410589073 595.9492797851562 1672.572021484375 1568.6094970703125 94331.0 770.3115234375 2877.8623046875 661.3782958984375 47.57777404785156 +sub-20062_ses-V3_task-rest_run-01_bold 0.0033807882882882882 0.004607854932432432 6 29.402335771670447 1.0504083440857785 1.0438481009255083 0.5028716847395626 3018.5947265625 0.1938452811536786 39 8.783783783783784 2.9772965594319696 2.7693582232889247 3.422058197352958 2.7404732576540263 0.0175329 0.007101492024958134 0.06497181206941605 444 90 90 60 2.38375073461107 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 18.831728583398803 41.13219451904297 150.3824920654297 28.328828811645508 322188.0 0.03378378599882126 742.3870727539056 304.8043518066406 1.4585543956287808 591.6451416015625 1676.365478515625 1570.3424072265625 94075.0 783.7279479980468 2880.7931396484387 658.7660522460938 42.86933135986328 +sub-20062_ses-V3_task-rest_run-02_bold 0.0032489887640449445 0.003802132382022472 5 29.32211411527027 1.0646756290990997 1.0305218524324316 0.5063251176417424 2952.0546875 0.16557538601983052 44 9.887640449438202 2.9675396190086283 2.762533223560126 3.4178998641848612 2.722185769280898 0.0169424 0.007599724922329187 0.06553249061107635 445 90 90 60 2.3704132896875465 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 17.69101881087146 41.772735595703125 155.8799285888672 28.57752799987793 321963.0 0.01123595517128706 767.5244812011706 310.66253662109375 1.470050933079765 594.1369018554688 1668.4486083984375 1565.9708251953125 94347.0 767.7227172851562 2870.9297851562487 660.6284790039062 46.2954216003418 +sub-20064_ses-V1_task-cuff_run-01_bold 0.00047493303571428567 0.0402427328125 2 58.55176790814317 1.1006497653691278 1.0024432119239375 0.5396841422579913 2556.439697265625 0.17567773461198527 0 0.0 2.3645847054346345 2.129374915386243 2.633845728673707 2.3305334722439532 0.0049939 -0.007947538048028946 0.045569173991680145 448 90 90 60 5.133681413712851 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 27.28521306985505 8.710288047790527 22.71330451965332 8.580357551574707 293073.0 1.7723214626312256 86.3991088867186 38.533042907714844 3.0828004126378863 63.0469970703125 451.1632080078125 453.185302734375 119802.0 303.77245025634767 587.888314819336 88.27649688720703 24.524127960205078 +sub-20064_ses-V1_task-cuff_run-02_bold 0.00027883928571428574 0.03836341116071429 2 58.05322179431767 1.0907992934675617 0.9953272367337815 0.5377594823355407 2719.15478515625 0.19132089171598599 0 0.0 2.3700041505001264 2.1221832490053476 2.6320373954122305 2.3557918070828006 0.00434197 -0.006238454487174749 0.04644644632935524 448 90 90 60 5.17175276922628 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 28.02413641022215 8.23373794555664 22.41813850402832 8.334821701049805 293731.0 1.8883929252624512 85.54352951049805 38.452083587646484 3.0980520521883905 62.229591369628906 451.569580078125 453.747802734375 119394.0 303.99163513183595 587.240542602539 87.73542022705078 25.408035278320312 +sub-20064_ses-V1_task-rest_run-01_bold 0.0006525 0.040784490401785715 2 59.882143904004415 1.1099165989038036 1.0053983989038038 0.5386066729042234 2620.017333984375 0.20646049636872918 100 22.321428571428573 2.3701624835593615 2.1293915820522478 2.633391562025088 2.347704306600748 0.00556369 -0.00819934718310833 0.04745125398039818 448 90 90 60 5.1434720854906715 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 1 28.387608954599077 8.419062614440918 22.49188995361328 8.46875 293247.0 1.9017858505249023 85.29620666503908 38.71488571166992 3.100856333517851 63.43915939331055 453.0112609863281 454.7276916503906 119688.0 305.86909637451174 587.7893005371093 88.40833282470703 24.24951171875 +sub-20064_ses-V1_task-rest_run-02_bold 0.00037234375 0.039497195312500004 2 57.661792524630876 1.0868046351901577 0.9976408069351229 0.5375337502860495 2700.306640625 0.1779672789715887 59 13.169642857142858 2.3646347061632187 2.116379082569318 2.6249290623613573 2.3525959735589805 0.00466549 -0.006013696547597647 0.046634361147880554 448 90 90 60 5.139064502237466 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 28.021228253939263 8.303235054016113 22.368118286132812 8.328125 294362.0 1.8571429252624512 84.9417472839356 38.375892639160156 3.0253839305888306 62.62998962402344 448.96307373046875 450.7745666503906 118905.0 303.1625183105469 585.1156494140625 87.71492767333984 24.607746124267578 +sub-20064_ses-V3_task-cuff_run-01_bold 0.00044375 0.009465661763392858 2 60.817554192102904 1.0639623699776286 0.9948463327516782 0.5400991254902076 518.47802734375 0.2522716009137651 0 0.0 3.0816638668006564 2.8540290532577415 3.360008199818603 3.0309543473256237 0.00329094 -0.02004764787852764 0.09656894952058792 448 90 90 60 1.9961480371512512 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 46.02333322595553 12.82715892791748 39.88829803466797 18.13616180419922 288662.0 7.455357551574707 143.5592681884768 68.27520751953125 5.922990141001984 158.25289916992188 489.1498718261719 441.8091735839844 123702.0 238.1481201171875 901.5235931396485 221.32997131347656 25.33595848083496 +sub-20064_ses-V3_task-cuff_run-02_bold 0.0002528953229398664 0.008756247661469933 1 61.21505263006698 1.0652897078794639 0.9947367524107156 0.5420398862057617 495.69647216796875 0.2327294903131881 0 0.0 3.0616888667716537 2.8387457205317133 3.3402123672718855 3.0061085125113634 0.0042778 -0.020455380901694298 0.09836255759000778 449 90 90 60 1.991370044341951 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 46.2713005078879 13.006614685058594 40.477542877197266 18.42984390258789 288696.0 7.599109172821045 145.32962036132812 68.82505798339844 6.0750893301103535 156.8124237060547 483.9465026855469 437.109130859375 123807.0 234.23118286132814 891.8726196289061 219.50082397460938 25.767791748046875 +sub-20064_ses-V3_task-rest_run-01_bold 0.0004757941834451901 0.009732097986577181 3 60.899886392354276 1.0715850774663676 0.9980103919058291 0.5386107917117615 531.936279296875 0.23875165327977466 135 30.201342281879196 3.0722791446760915 2.846487386890754 3.3477082003073613 3.0226418468301604 0.00381661 -0.019948232918977737 0.09523414075374603 447 90 90 60 1.9991710069493918 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 48.233876406245884 12.52749252319336 39.359596252441406 17.957494735717773 289089.0 7.456376075744629 141.15884094238254 68.08267974853516 5.985767712139255 159.2089385986328 490.62939453125 443.25616455078125 123350.0 239.3363494873047 903.1145538330077 221.71908569335938 25.246288299560547 +sub-20064_ses-V3_task-rest_run-02_bold 0.0002592650334075724 0.008463917839643653 1 59.76610197341519 1.0636065927008935 0.9954139222544646 0.5422718232120635 498.3849182128906 0.20843644072352946 87 19.37639198218263 3.0642541446229994 2.8381998872200693 3.3431540338216608 3.011408512827268 0.00536263 -0.019477270543575287 0.0983697772026062 449 90 90 60 1.9953206871042235 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 45.809442915183986 12.897647857666016 40.702537536621094 18.36971092224121 288514.0 7.599109172821045 146.9720565795895 69.74797058105469 6.004446319767725 157.32093811035156 484.16009521484375 437.90423583984375 123910.0 233.48541641235354 892.9871093749994 219.46470642089844 26.275009155273438 +sub-20066_ses-V1_task-cuff_run-01_bold 0.0007161990950226246 0.01906330226244344 8 49.46745098743762 1.0110033056235836 0.9685887322448965 0.4512768804578679 1896.8924560546875 0.40249908724531747 2 0.45248868778280543 2.536602165350392 2.4787499015033285 2.5559290651031703 2.575127529444676 0.00878103 0.016289737075567245 0.009115242399275303 442 90 90 60 3.417980579290177 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 51.426845035304304 22.757274627685547 37.65071105957031 17.86199188232422 340618.0 0.09502262622117996 126.82421073913558 77.26372528076172 1.6893550000683453 182.15213012695312 782.904296875 767.41748046875 79088.0 429.9295425415039 1162.713989257812 224.52223205566406 24.094411849975586 +sub-20066_ses-V1_task-rest_run-01_bold 0.0006224604966139955 0.012128956117381491 7 53.07524277180996 1.0737470385294121 1.0106864608597277 0.450550740038 2086.371337890625 0.45038894482393804 330 74.49209932279909 2.4957952336727023 2.444037402882679 2.5243165663593388 2.51903173177609 0.00400773 0.014721118845045567 0.009630170650780201 443 90 90 60 3.420682074545336 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 49.57665185579096 22.145328521728516 37.54359817504883 17.03386116027832 340635.0 0.03386004641652107 128.8975189208984 76.86942291259766 1.7272400627189004 183.74896240234375 790.8330078125 774.4514770507812 79016.0 436.0265426635742 1174.4114074707031 226.40121459960938 29.3377685546875 +sub-20067_ses-V1_task-cuff_run-01_bold 0.0018894784580498864 0.01182784870748299 9 35.23797544572729 1.033034083113635 0.9577266414772737 0.44606460975490153 22587.53125 0.08739970542437323 0 0.0 2.450914570368935 2.530233232790898 2.4703999018351275 2.3521105764807793 0.0221675 -0.008310128934681416 0.03034384362399578 441 90 90 60 2.479990162867018 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 28 197.94205463203278 10.334510803222656 36.38432312011719 7.1156463623046875 317783.0 0.013605441898107529 178.4126953124992 98.6552963256836 4.920262519713061 302.9047546386719 1128.7547607421875 1055.71435546875 98312.0 587.0316314697266 1933.0995666503907 425.6907958984375 28.654743194580078 +sub-20067_ses-V1_task-cuff_run-02_bold 0.0011953950338600451 0.010051707629796838 7 35.52649963192308 1.1023950482579181 0.9786493587556563 0.4464539440492668 21738.369140625 0.11251106213834441 1 0.22573363431151242 2.435300669573841 2.5309082327640757 2.460712402220074 2.3142813737373737 0.0139563 -0.009765378199517727 0.03278689831495285 443 90 90 60 2.42447960605056 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 36 212.1448112855656 10.334709167480469 37.778900146484375 7.158013820648193 317700.0 0.027088036760687828 187.2776641845703 105.4682846069336 5.197184964326475 308.9737243652344 1140.521728515625 1060.9932861328125 98115.0 596.1426635742188 1970.913793945313 437.61468505859375 34.22938537597656 +sub-20067_ses-V1_task-rest_run-01_bold 0.0011121493212669685 0.00853048423076923 8 34.44994363718823 1.1105259669387757 1.0148852300680273 0.44452511182827115 22696.068359375 0.08470521359504816 9 2.0361990950226243 2.4351826130406033 2.5288832328445423 2.4653499020357965 2.311314704241471 0.0137136 -0.010294288396835327 0.03160367161035538 442 90 90 60 2.39975786132011 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 50 218.6463281101931 10.3580904006958 37.23785400390625 7.099547863006592 318107.0 0.009049774147570133 183.05928039550798 103.43617248535156 5.33404820258664 317.30377197265625 1153.12451171875 1072.87109375 98063.0 595.8744567871095 1999.6068847656247 447.07244873046875 36.508018493652344 +sub-20067_ses-V1_task-rest_run-02_bold 0.0013477578475336325 0.014858491188340808 4 35.57232953213482 1.0516072661348315 0.9520199686966301 0.44690923275524885 20175.54296875 0.11347111894186067 19 4.260089686098655 2.472285399696226 2.56844573127247 2.505833233760467 2.3425772340557423 0.00902201 -0.010651079006493092 0.0343632809817791 446 90 90 60 2.402953537004849 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 49 216.46081157247366 10.737232208251953 38.436431884765625 7.5044846534729 317698.0 0.05381166189908981 189.81782913207968 106.3265380859375 5.370263993600888 311.0439758300781 1145.4581298828125 1064.7421875 98337.0 592.8951171875 1989.5952148437495 443.09503173828125 28.525604248046875 +sub-20067_ses-V3_task-cuff_run-01_bold 0.0032586907449209932 0.012579167878103838 7 35.193047294683296 1.0498942148642532 1.0592995631447952 0.4344645232338877 22287.431640625 0.23053465625879 8 1.8058690744920993 2.4658181157607397 2.535916565898396 2.4729790683993076 2.3885587129845165 0.0103963 -0.005446125753223896 0.028936153277754784 443 90 90 60 2.3830436371252897 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 14 294.62362333371016 10.16737174987793 31.386606216430664 7.097065448760986 320165.0 0.031602710485458374 135.16524658203116 94.22333526611328 5.12213516597429 314.9190673828125 1128.2086181640625 1048.7088623046875 96220.0 574.3240570068359 1960.7776245117188 440.06890869140625 28.462997436523438 +sub-20067_ses-V3_task-cuff_run-02_bold 0.0048978004535147395 0.014394761451247167 9 41.78837597577274 1.0687032853181833 1.0066505685909097 0.4356918743892372 22067.728515625 0.3319131532459122 28 6.349206349206349 2.461443116107606 2.527312399573628 2.4658457353494274 2.3911712133997622 0.00726469 -0.005436535459011793 0.030139874666929245 441 90 90 60 2.4302578763186964 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 18 306.0817422662739 10.146245002746582 31.461252212524414 7.108843803405762 320165.0 0.043083902448415756 135.6458038330078 96.291748046875 4.919997570604682 310.153076171875 1120.4476318359375 1043.84130859375 96169.0 576.0018310546875 1931.6031982421873 429.5165100097656 27.171695709228516 +sub-20067_ses-V3_task-rest_run-01_bold 0.0024144018058690746 0.015910316997742664 7 36.12255670803163 1.0195738501583713 0.9669756384389138 0.4329947775803702 20597.5 0.20359387035341614 56 12.641083521444695 2.493190337640622 2.5838873973255394 2.495870734156341 2.399812881439985 0.00810203 -0.006705101579427719 0.02782040275633335 443 90 90 60 2.306821276416053 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 11 237.62942718528925 10.455190658569336 31.68953514099121 7.406320571899414 320242.0 0.06997742503881454 136.69752502441406 90.13894653320312 5.420313917102076 326.80340576171875 1153.0828857421875 1067.470703125 95990.0 576.0133239746094 2030.1404602050784 462.7428894042969 25.467937469482422 +sub-20067_ses-V3_task-rest_run-02_bold 0.0017535505617977528 0.009712203168539326 5 35.77062988290538 1.0733093244369365 0.988599718738739 0.43492318187330997 24394.470703125 0.1954302826038705 66 14.831460674157304 2.424469503350799 2.510545733573209 2.4187249038885077 2.3441378725906805 0.0129943 -0.004992580506950617 0.029073674231767654 445 90 90 60 2.4403628157794355 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 11 235.1444574018005 9.56528377532959 30.69397735595703 6.635955333709717 320874.0 0.024719100445508957 136.5125892639157 89.32672882080078 4.740133767358652 304.84625244140625 1116.8192138671875 1041.1280517578125 95772.0 570.4079803466798 1923.3434448242183 426.62615966796875 33.948150634765625 +sub-20068_ses-V1_task-cuff_run-01_bold 0.001875121951219512 0.0038307564329268288 13 24.552107808134547 1.0232521131192658 0.9918040023547403 0.5007085619079575 6856.89306640625 0.1040168245207382 0 0.0 2.867178499490235 2.65521656115784 3.1617457076968467 2.784573229616019 0.0150795 0.00820864550769329 0.0322689488530159 328 90 90 60 2.5724909510277354 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 22.262775251789108 28.431612014770508 93.34554290771484 19.72865867614746 301445.0 0.006097560748457909 505.13717651367165 210.04739379882812 0.9074248741934205 557.967041015625 1749.1854248046875 1656.3597412109375 112894.0 837.2171936035156 2964.5958862304688 643.8710327148438 48.49641418457031 +sub-20068_ses-V1_task-cuff_run-02_bold 0.0029019772727272727 0.005634976227272727 10 25.116070971138928 1.0210380118223235 1.0145058955353068 0.5013977935330034 6668.4443359375 0.10704743404133332 3 0.6818181818181818 2.875161829077419 2.662341560874718 3.1613123743807328 2.801831551976807 0.016171 0.008027360774576664 0.03221985697746277 440 90 90 60 2.573350507531627 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 22.4408285348754 28.600744247436523 93.81657409667969 19.98409080505371 301511.0 0.029545454308390617 509.32383728027344 209.48350524902344 0.9359273794707996 551.329345703125 1738.7252197265625 1646.095458984375 112829.0 835.0376831054688 2944.3817871093743 639.6672973632812 42.285682678222656 +sub-20068_ses-V1_task-rest_run-01_bold 0.002755869074492099 0.0039882891196388265 7 26.228689685701358 1.0778241643891409 1.0247421842081448 0.49988934713592975 6579.52392578125 0.12122052300888385 8 1.8058690744920993 2.867029890206281 2.6643623941277506 3.161320707713735 2.775406568777359 0.0183036 0.007786338683217764 0.03156600147485733 443 90 90 60 2.5618946693529225 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 13 23.683297830902895 29.11322021484375 93.63597106933594 20.133182525634766 301861.0 0.006772009190171957 505.5395202636719 212.64608764648438 0.9279200626624458 564.501708984375 1759.9591064453125 1665.965087890625 112706.0 843.6343231201172 2988.149658203125 650.283447265625 48.49776840209961 +sub-20068_ses-V1_task-rest_run-02_bold 0.0013227045454545455 0.0045706815 10 26.438585533462422 1.0389718951025055 0.982774417562642 0.5002978044652934 6445.9609375 0.12046918661596445 9 2.0454545454545454 2.852275725466168 2.649016561404206 3.1391498752613916 2.768660739732908 0.00935477 0.006519096437841654 0.03305363655090332 440 90 90 60 2.581119860218918 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 21.373587350470334 28.96465301513672 92.32689666748047 20.07499885559082 301631.0 0.006818181835114956 500.64317321777344 206.11343383789062 0.9037218933074254 554.486572265625 1747.7877197265625 1653.5772705078125 112563.0 843.0167785644531 2955.7717285156245 640.6405029296875 49.54431915283203 +sub-20068_ses-V3_task-cuff_run-01_bold 0.0015913242009132419 0.005324357922374429 12 24.534219410068637 0.9442742141189924 0.955106397665903 0.49682912662612183 8459.1669921875 0.11821116458165706 2 0.45662100456621 2.9435784846766677 2.735824891288086 3.251058204147887 2.8438523585940305 0.0212944 0.002310799667611718 0.03369477391242981 438 90 90 60 2.462864525956046 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 20.847106910414144 27.438297271728516 93.72567749023438 18.995433807373047 300042.0 0.013698630034923553 519.8194122314453 209.5394744873047 1.0572026894542068 627.90234375 1888.0137939453125 1779.5147705078125 113870.0 882.1446166992188 3249.9830078124996 722.5354614257812 40.827754974365234 +sub-20068_ses-V3_task-cuff_run-02_bold 0.0018363122171945702 0.00372809185520362 8 24.58438751746031 1.0788535278004523 1.035298524195012 0.4968489182987076 8646.697265625 0.11110542630544366 0 0.0 2.914771548498003 2.7180332253283965 3.218270705450745 2.8080107147148676 0.022147 0.0016097703482955694 0.034363292157649994 442 90 90 60 2.473039371128462 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 21.141420959483565 27.23694610595703 94.10297393798828 18.708145141601562 300078.0 0.0022624435368925333 525.4599761962874 211.42520141601562 1.0419919156619475 625.88623046875 1884.798583984375 1775.969482421875 113554.0 892.2052337646485 3244.0017822265627 718.129150390625 49.83830261230469 +sub-20068_ses-V3_task-rest_run-01_bold 0.000798510158013544 0.003029928329571106 7 24.783355182217154 1.0636098886651595 0.9984602906561089 0.4951988277151286 8278.6337890625 0.11639508185525801 4 0.9029345372460497 2.920867384271317 2.7315582247909616 3.236533204725059 2.7945107232979307 0.0246108 0.001226397231221199 0.0330883227288723 443 90 90 60 2.449388954858497 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 20.988527177896774 28.273189544677734 94.21598815917969 19.352144241333008 300593.0 0.0 524.618530273437 211.4161834716797 1.0499438118722813 646.7308349609375 1918.5447998046875 1808.1038818359375 113274.0 896.6451782226563 3302.6936767578118 738.1824340820312 53.90009307861328 +sub-20068_ses-V3_task-rest_run-02_bold 0.0016366216216216216 0.003632162905405405 6 25.192937954176074 1.040039340699774 0.9923226907223488 0.49703629729618803 8225.2099609375 0.1309703051701983 12 2.7027027027027026 2.912421550346408 2.716779058711566 3.221308205330046 2.7991773869976124 0.0147311 0.0023880349472165108 0.03279237821698189 444 90 90 60 2.4511788583045284 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 20.85441821394271 28.005823135375977 96.23902130126953 19.256757736206055 300486.0 0.009009009227156639 537.4628753662109 217.4060516357422 1.0498702882247564 637.3853759765625 1895.451416015625 1784.736572265625 113360.0 891.1703063964844 3270.2339111328115 728.1103515625 50.31172180175781 +sub-20071_ses-V1_task-rest_run-01_bold 0.0009889910313901347 0.010639466569506727 4 49.56825456092132 1.0939731495056166 0.9850082750112348 0.46252609271854117 7109.0947265625 0.33421973976616776 235 52.690582959641254 2.2869242764094686 2.257612410290543 2.31959574116088 2.283564677776983 0.00235511 0.0029934742487967014 0.021442145109176636 446 90 90 60 2.5484114949309635 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 308.025626267939 16.35516357421875 34.0105094909668 11.493273735046387 311477.0 0.026905830949544907 132.15158081054696 84.48722076416016 3.451175599453223 282.103271484375 1051.51171875 978.338623046875 103857.0 551.6865844726562 1775.1503417968743 383.8995056152344 30.900217056274414 +sub-20071_ses-V3_task-rest_run-01_bold 0.0011212272727272727 0.012277874318181819 10 53.81997272259681 1.1000700294988608 1.0080266813895218 0.4626465009752721 7658.58837890625 0.3914790359129639 282 64.0909090909091 2.3421188889578386 2.3168832412686653 2.382041572012839 2.327431853592012 0.00320418 -0.003000777680426836 0.018649153411388397 440 90 90 60 2.4897205004305185 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 228.97605160179498 16.50237464904785 33.65378952026367 11.662500381469727 309878.0 0.04318181797862053 127.42761001586906 78.471435546875 3.506315513032491 304.12725830078125 1098.8726806640625 1023.877197265625 105188.0 565.5815734863281 1870.8157958984375 411.2398681640625 29.180801391601562 +sub-20072_ses-V1_task-cuff_run-01_bold 0.0032267792792792793 0.009761783716216214 6 29.83375181207674 1.0531910228668169 1.050441554063205 0.4839645394454051 6570.5 0.2053199433886836 4 0.9009009009009009 2.8451923917172586 2.620270729213129 3.143137375102942 2.7721690708357043 0.0273455 -0.013068277388811111 0.03597518056631088 444 90 90 60 2.817572751435333 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 24.220524931463558 27.2177734375 79.99750518798828 18.695945739746094 315490.0 0.009009009227156639 396.73549499511716 167.200927734375 1.0372744926079216 480.6103515625 1585.5147705078125 1530.700439453125 100571.0 787.30517578125 2563.1553955078125 543.2664794921875 36.52216339111328 +sub-20072_ses-V1_task-cuff_run-02_bold 0.0022723423423423425 0.008433042297297298 6 29.42227727390521 1.054496178374718 1.0197484214446948 0.484353151611176 6409.4326171875 0.18976193054739257 6 1.3513513513513513 2.8535465561603424 2.633808228675197 3.1451415416899704 2.7816898981158587 0.0176634 -0.013777907006442547 0.03517727181315422 444 90 90 60 2.818465518805633 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 21.340782448166237 27.32796859741211 79.22921752929688 18.797298431396484 314977.0 0.011261261999607086 395.395965576172 163.11610412597656 0.9945965387576194 483.6839599609375 1592.2049560546875 1534.5428466796875 101152.0 795.5909057617188 2578.1937988281247 544.4577026367188 39.846527099609375 +sub-20075_ses-V1_task-cuff_run-01_bold 0.006441038374717834 0.017333535237020317 7 42.757944663778304 1.1158095413348401 1.0324020230542985 0.4412637383866832 7558.25830078125 0.2538886895433161 9 2.0316027088036117 2.6764021324240033 2.7642332234925737 2.698404059441723 2.5665691143377125 0.00853617 -0.013669039122760296 0.028048517182469368 443 90 90 60 2.4329608335196666 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 15 103.3113101742938 16.616525650024414 41.31526565551758 11.530474662780762 327946.0 0.07449210435152054 158.51185607910156 102.51863098144531 6.622353946611776 288.720947265625 1089.946044921875 1011.7437744140625 89000.0 591.3485595703125 1847.8230651855476 415.846435546875 25.276229858398438 +sub-20075_ses-V1_task-cuff_run-02_bold 0.004090767494356659 0.010613083340857787 7 37.998917372443394 1.106514190384615 1.0651855651357465 0.4405224332663341 8110.33154296875 0.1833450167780494 7 1.580135440180587 2.6533562917542133 2.733483224714469 2.684937393310174 2.5416482572379975 0.00543615 -0.01271254662424326 0.025724982842803 443 90 90 60 2.404977574008193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 79.64276632396923 16.111167907714844 41.04273986816406 11.047404289245605 327769.0 0.020316027104854584 160.9977478027336 99.74129486083984 6.717403332410566 290.369140625 1087.7132568359375 1009.6997680664062 89167.0 584.9081481933594 1850.7860961914062 419.83514404296875 32.10404968261719 +sub-20075_ses-V1_task-rest_run-01_bold 0.001604774774774775 0.014641921193693692 6 44.805644941489845 1.0793561508352147 1.023033728419865 0.4409276276442714 7690.51025390625 0.2927000746190589 160 36.03603603603604 2.6696826856057463 2.7662165567470964 2.6842373933379893 2.5585941067321523 0.00490826 -0.01268702931702137 0.02745148353278637 444 90 90 60 2.45120479310909 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 31 106.51901069131779 16.422157287597656 40.641334533691406 11.45945930480957 327583.0 0.0833333358168602 156.02454681396398 101.0958480834961 6.51830493101037 287.78173828125 1087.328369140625 1011.590087890625 89249.0 584.0828735351563 1836.836083984374 412.68865966796875 27.251407623291016 +sub-20075_ses-V1_task-rest_run-02_bold 0.002985823927765237 0.017727941286681717 7 43.47482323545243 1.022263711515837 0.9712244181900465 0.4429398523451621 7293.6787109375 0.2542982788099171 80 18.058690744920995 2.6810590788150925 2.7626207235566484 2.7075498924116337 2.5730066204769964 0.00561944 -0.01373131014406681 0.025386584922671318 443 90 90 60 2.480037494315754 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 70.90024306970913 16.86418342590332 40.69114303588867 11.69074535369873 327669.0 0.06546275317668915 156.39413146972652 95.65371704101562 5.870008272070013 286.8484191894531 1073.949462890625 1001.4266357421875 89183.0 575.5758483886718 1811.7512695312494 403.7926940917969 25.13320541381836 +sub-20076_ses-V1_task-cuff_run-01_bold 0.003788707482993197 0.010831212358276643 9 61.561144416909066 1.1653494187499989 1.025760108772728 0.488813392246892 2706.067626953125 0.4704149193015943 46 10.430839002267573 2.442536903322415 2.367762405913575 2.44517906950398 2.5146692345496913 0.00311835 0.007058712188154459 0.019230324774980545 441 90 90 60 2.2963874851357318 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 45.15983435444845 27.471845626831055 55.60392379760742 19.801586151123047 305654.0 0.06122449040412903 218.53004531860327 114.40866088867188 3.4948748908697578 340.8068542480469 1119.166259765625 1040.3900146484375 109409.0 538.920166015625 1974.6984619140612 453.0530090332031 28.236488342285156 +sub-20076_ses-V1_task-cuff_run-02_bold 0.003007681818181818 0.011444307999999999 10 59.34014040567195 1.1350815663553533 1.0085963333940773 0.48924752525961007 2589.657958984375 0.43947399637222306 28 6.363636363636363 2.456648009864392 2.3742290723232795 2.460870735547116 2.53484422172278 0.00590458 0.007177924271672964 0.019701264798641205 440 90 90 60 2.253107517443388 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 5 44.13079019909688 27.967269897460938 56.878963470458984 20.204544067382812 305580.0 0.07045454531908035 223.21430511474594 116.75936126708984 3.6501339790449956 342.7895202636719 1120.3857421875 1037.4215087890625 109554.0 539.2657958984375 1992.3511596679687 460.4382019042969 27.4630126953125 +sub-20076_ses-V1_task-rest_run-01_bold 0.00222625 0.01131584531818182 10 59.67587521414579 1.1264416643280182 0.9836850445102505 0.4878404978117865 2666.833984375 0.48074714278267877 263 59.77272727272727 2.4656091195928966 2.383799905276302 2.4730165683978176 2.54001088510457 0.0113121 0.0071030366234481335 0.02009965106844902 440 90 90 60 2.2487969677169146 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 46.14547523307206 27.40792465209961 55.6754150390625 19.875 305401.0 0.07499999552965164 217.7022705078125 114.7511978149414 3.6896160062212378 343.7716979980469 1123.2481689453125 1039.193115234375 109659.0 540.1138610839844 1995.5224365234371 462.10858154296875 27.505084991455078 +sub-20076_ses-V1_task-rest_run-02_bold 0.0024541216216216214 0.013289351801801802 6 60.111307140022554 1.1292552418284418 1.0108084683295708 0.4899234376239159 2534.206298828125 0.451374793461401 263 59.234234234234236 2.4637507856703054 2.3827915719830366 2.465112402045234 2.5433483829826464 0.00574943 0.008806352503597736 0.019438790157437325 444 90 90 60 2.255877282154858 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 42.493095265626145 28.366458892822266 57.51510238647461 20.481983184814453 305462.0 0.06981982290744781 225.36362991333036 117.68173217773438 3.5982198379064236 342.9351806640625 1119.0452880859375 1036.802978515625 109688.0 535.4499145507813 1987.8480346679682 459.59869384765625 27.584823608398438 +sub-20076_ses-V3_task-rest_run-01_bold 0.0017880269058295963 0.010409799820627803 4 52.45313848869664 1.0945356195056177 1.019417343123595 0.4889963314907924 3385.602294921875 0.4104891611874298 275 61.65919282511211 2.5093090907876285 2.376020738918752 2.5633540648081277 2.588552468636006 0.00444617 0.014369138516485691 0.01739005744457245 446 90 90 60 2.2815268618041817 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 54.663637397703226 22.807477951049805 51.49690246582031 16.43049430847168 302908.0 0.04932735860347748 200.40494079589814 118.47826385498047 3.92964976722435 319.06036376953125 1035.889892578125 960.4754028320312 110996.0 498.81056213378906 1813.9160461425781 420.9773254394531 28.761131286621094 +sub-20077_ses-V3_task-cuff_run-01_bold 0.000804409090909091 0.00569807340909091 10 26.453413209384983 1.042740135170843 0.9852789952391796 0.4212254722587484 18779.6640625 0.09754629394682769 0 0.0 2.355691116682338 2.3667540726203096 2.4032957378349407 2.297023539591764 0.00425112 -0.011030720546841621 0.020201867446303368 440 90 90 60 2.9005068048345106 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 168.2935078881357 11.874295234680176 28.40821075439453 8.09999942779541 333250.0 0.0 111.24897689819333 74.31169128417969 5.548184428319921 274.065673828125 1142.9735107421875 1093.2545166015625 86215.0 635.543145751953 1799.8812744140628 376.916259765625 47.51433563232422 +sub-20077_ses-V3_task-cuff_run-02_bold 0.0006005 0.005479719954545455 10 26.328772807744876 1.0432880246924838 1.004904720091116 0.4208620008662621 19156.376953125 0.10050799489113396 0 0.0 2.354967504859062 2.366479072631237 2.397670738058458 2.300752703887492 0.00327034 -0.011239901185035706 0.020750468596816063 440 90 90 60 2.879416293978218 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 165.9458247824818 11.83049201965332 28.697742462158203 8.034090995788574 333593.0 0.0 112.74863586425774 74.98563385009766 6.036941181702833 273.9140319824219 1145.2044677734375 1093.9931640625 86015.0 638.9563720703125 1807.3820068359378 379.93353271484375 48.981353759765625 +sub-20077_ses-V3_task-rest_run-01_bold 0.0011468409090909092 0.007028254886363636 10 27.52813259719817 1.0555183776765373 1.0048580954214121 0.42133309616480913 19774.794921875 0.1183648579466692 1 0.22727272727272727 2.3691175011460266 2.375379072277583 2.4153624040221215 2.316611027138375 0.00541576 -0.011205730028450489 0.021243762224912643 440 90 90 60 2.9104484182882944 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 160.51255991035245 11.668753623962402 28.308483123779297 7.945454120635986 333257.0 0.0 110.34772491455078 73.18031311035156 5.295544157480867 272.64044189453125 1136.64306640625 1087.0113525390625 86297.0 631.3058959960938 1788.4299072265624 373.48370361328125 43.00725555419922 +sub-20077_ses-V3_task-rest_run-02_bold 0.0018678876404494384 0.008368824494382022 5 26.24829004450449 1.0217493050000004 1.0790144099999992 0.4235348127579563 19559.00390625 0.1060193170381976 0 0.0 2.387163327348993 2.3863624051744776 2.4262374035899876 2.348890173282513 0.00952397 -0.011475513689219952 0.020787041634321213 445 90 90 60 2.876862818091655 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 161.77492859511995 11.714223861694336 29.169008255004883 7.977528095245361 332309.0 0.0 114.73258209228516 75.22600555419922 5.704098165399241 275.32427978515625 1145.380615234375 1093.1787109375 86634.0 633.1694396972657 1808.66372680664 379.9876708984375 40.361328125 +sub-20078_ses-V1_task-cuff_run-01_bold 0.0006440987654320987 0.004560904716049383 10 30.760928328688145 1.0416123872772278 0.9917219342821785 0.5099253298670985 2030.0994873046875 0.17571940534556046 0 0.0 3.088893713050393 2.8110207216334056 3.3922123652055918 3.063448052312182 0.00509684 0.023710444569587708 0.04534171149134636 405 90 90 60 2.018698638658309 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 24.569412864290204 47.117469787597656 141.85693359375 33.360496520996094 303574.0 0.03703703731298447 689.7006652832029 293.3873291015625 2.2593412588344073 600.2416381835938 1694.8101806640625 1538.316162109375 110943.0 736.3039794921875 3165.5640869140607 762.0301513671875 44.49818420410156 +sub-20078_ses-V1_task-cuff_run-02_bold 0.0017861085972850678 0.005009291040723981 8 29.703513035124733 1.0649163036734688 1.0206116738095228 0.5114495026202268 1917.2222900390625 0.1452344859703688 1 0.22624434389140272 3.0792423254664034 2.8007207220426906 3.378195699095897 3.058810555260623 0.00382821 0.023405198007822037 0.045142654329538345 442 90 90 60 2.0209289081230675 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 23.25659882332388 48.47808074951172 143.24478149414062 34.22285461425781 303522.0 0.04072398319840431 698.3881439208986 291.86090087890625 2.2305622028196614 599.3303833007812 1694.2672119140625 1536.1788330078125 110913.0 740.5005004882812 3160.6553710937487 760.131591796875 43.63524627685547 +sub-20078_ses-V1_task-rest_run-01_bold 0.0005244796380090498 0.0053479733484162895 8 32.74510843371884 1.0559757188888892 0.9930266275736958 0.508273260116261 2062.79248046875 0.21661223377796834 110 24.8868778280543 3.094077043670227 2.812420721577775 3.3937415318114943 3.076068877621411 0.00743652 0.022306496277451515 0.043562743812799454 442 90 90 60 2.02737445012321 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 25.44996944956693 46.81266403198242 137.40789794921875 33.067874908447266 303367.0 0.0429864265024662 660.2246765136721 283.7261657714844 2.2285505728854105 600.5361328125 1699.1273193359375 1542.1221923828125 111034.0 743.48134765625 3170.105139160153 760.646484375 42.69948959350586 +sub-20078_ses-V1_task-rest_run-02_bold 0.0020924604966139956 0.006249104785553047 7 31.451477831900437 1.0539077459728514 1.0080702711538454 0.5132528449388276 1890.749755859375 0.17185485805145134 48 10.835214446952596 3.0859701012557608 2.809599888356531 3.380837365657593 3.0674730497531573 0.00900981 0.026081619784235954 0.045019760727882385 443 90 90 60 2.0273302128757704 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 22.493675297015837 48.676544189453125 146.0906219482422 34.351016998291016 303260.0 0.06320542097091675 714.8185516357419 297.8796081542969 2.234292989485957 596.3977661132812 1689.9737548828125 1533.9119873046875 111169.0 738.1688598632813 3148.541796875 756.6133422851562 39.78801727294922 +sub-20078_ses-V3_task-cuff_run-01_bold 0.0019770294784580496 0.005956766349206348 9 36.910921018727294 1.0922367134318185 1.0592904005909094 0.5087325873932705 1976.935546875 0.27591429981501936 0 0.0 3.108328423237562 2.8151957214675063 3.389654031973917 3.120135516271263 0.00434617 0.022195585072040558 0.04527370631694794 441 90 90 60 2.0048339941599975 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 26.200793330265068 46.83476638793945 137.25552368164062 33.36961364746094 303988.0 0.10657596588134766 659.1099945068352 282.5442199707031 1.9991853050363364 608.21484375 1667.03369140625 1513.293701171875 110478.0 711.9494567871093 3129.151684570312 754.8190307617188 38.5974235534668 +sub-20078_ses-V3_task-cuff_run-02_bold 0.0022603393665158373 0.007400205294117648 8 34.491039851473914 1.054726188662132 1.0031200780498861 0.5103637956513827 1814.500244140625 0.2214673607839793 2 0.45248868778280543 3.0932450928091257 2.7965873888736015 3.3746165325714537 3.108531356982322 0.00633161 0.023136282339692116 0.04395601153373718 442 90 90 60 2.003887633329817 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 24.860632260161356 47.9397087097168 136.62527465820312 34.264705657958984 303197.0 0.11764706671237946 656.8149658203126 277.5897521972656 2.047432608095167 596.9017944335938 1650.5462646484375 1496.26708984375 111121.0 704.4434814453125 3096.6630859375 746.6787719726562 36.51557922363281 +sub-20078_ses-V3_task-rest_run-01_bold 0.0006506546275395034 0.006933554672686229 7 34.63856584443439 1.0539099615610856 1.002445425045249 0.506336297262203 1945.5400390625 0.20647263009905997 113 25.507900677200904 3.1171673079390065 2.8142457215052556 3.3978123649830674 3.1394438373286966 0.00906544 0.02100040391087532 0.041308239102363586 443 90 90 60 1.9961130366287574 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 25.54758407839223 47.19226837158203 131.3018341064453 33.521446228027344 303746.0 0.08577878028154373 623.6856689453125 267.04608154296875 2.0139618616641046 611.61865234375 1674.58251953125 1516.7471923828125 110843.0 717.9771911621094 3146.7486083984368 759.846923828125 38.13429260253906 +sub-20078_ses-V3_task-rest_run-02_bold 0.0012165011286681716 0.0063103473814898415 7 36.45484776733032 1.078519889117648 0.9982810400452486 0.511471433933092 1822.4901123046875 0.2627296470962911 172 38.82618510158014 3.073215929633799 2.787529055900214 3.337154034060079 3.0949646989411046 0.0247808 0.025311775505542755 0.044975001364946365 443 90 90 60 2.015149887303429 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 24.49901561094074 47.597225189208984 138.30184936523438 33.90519332885742 303230.0 0.09255079180002213 671.085025024414 282.1816101074219 2.0766098699010245 588.7737426757812 1641.0953369140625 1488.9638671875 110939.0 704.6198913574219 3067.112915039062 738.881591796875 37.114967346191406 +sub-20081_ses-V1_task-rest_run-01_bold 0.000729255079006772 0.012659590677200903 7 47.820550581968334 1.1136250806334835 0.9641915614932132 0.4711368075685033 3881.4716796875 0.5673645596772813 353 79.68397291196388 2.950956254005382 2.710683225620459 3.2572832039005277 2.88490233249516 0.00589817 -0.010377803817391396 0.03724681958556175 443 90 90 60 3.274409157520082 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 71.38396988138186 33.912437438964844 76.71408081054688 23.792325973510742 327293.0 0.14672686159610748 320.76254882812486 153.0640106201172 0.8395249590820986 397.67718505859375 1510.7119140625 1477.267578125 91034.0 820.2628784179688 2290.699438476562 451.1529846191406 31.325794219970703 +sub-20081_ses-V3_task-rest_run-01_bold 0.001311801801801802 0.015170856801801802 6 70.83751933345374 1.1537591876297961 0.9743311986004511 0.46509628211332815 4408.4921875 0.9747745284664955 388 87.38738738738739 3.0064465298273553 2.7921790557154393 3.3435123671407556 2.8836481666258704 0.0269679 -0.01530835498124361 0.036698728799819946 444 90 90 60 3.10469397150378 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 79.71417400815946 34.01637268066406 80.47818756103516 23.88964080810547 328348.0 0.14639639854431152 346.64032592773424 162.70059204101562 0.8244081922315876 462.79901123046875 1631.210205078125 1588.479736328125 89766.0 873.6188354492188 2537.6836547851562 511.63525390625 27.880521774291992 +sub-20084_ses-V1_task-cuff_run-01_bold 0.0019308126410835216 0.008169624130925507 7 33.055693030882374 1.053411391945701 1.0102739039592754 0.4849858967328421 6624.0546875 0.14033950569937936 1 0.22573363431151242 2.5357208937435467 2.5877540638385588 2.5858123972490468 2.4335962201430354 0.0125047 0.0328926257789135 0.019329121336340904 443 90 90 60 2.2445428201496167 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 2 77.429569288718 19.92978858947754 58.51915740966797 13.810383796691895 301276.0 0.009029345586895943 264.02879333496094 150.79026794433594 4.651848025475462 410.8615417480469 1252.1812744140625 1152.3905029296875 111335.0 638.6038513183594 2187.9185546874996 513.41650390625 33.73381042480469 +sub-20084_ses-V1_task-cuff_run-02_bold 0.003394580498866213 0.010044520430839003 9 31.36899202511363 1.0420932221363641 1.0773782074318177 0.48630006379253377 6632.900390625 0.1317369660379118 0 0.0 2.566740338414324 2.6073082297282126 2.6372873952036144 2.4556253903111442 0.00774323 0.032308485358953476 0.02028033696115017 441 90 90 60 2.2498416959288137 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 7 77.23200342829664 20.23197364807129 59.23599624633789 14.02721118927002 300789.0 0.011337868869304657 267.1337890625 151.43386840820312 4.676461042089085 413.7502746582031 1254.331787109375 1155.413818359375 111718.0 637.4962432861329 2184.8559448242186 513.5510864257812 30.256710052490234 +sub-20084_ses-V1_task-rest_run-01_bold 0.0017169230769230768 0.012011695837104071 8 32.861891121564625 0.9956698612698417 0.9559674453968257 0.4857181886185137 6250.341796875 0.14304240573359783 33 7.46606334841629 2.5829417293805452 2.624241562388676 2.6278707289111325 2.4967128968418275 0.0280665 0.032943032681941986 0.01979568786919117 442 90 90 60 2.2525523641942784 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 6 77.68120599435262 20.568592071533203 59.611724853515625 14.441177368164062 301121.0 0.05656109005212784 267.92535400390625 152.5103302001953 4.509488067013741 419.9286193847656 1265.3858642578125 1166.4683837890625 111471.0 640.4378356933594 2204.075927734375 517.8406372070312 26.804901123046875 +sub-20084_ses-V1_task-rest_run-02_bold 0.0029168385650224214 0.009210203565022421 4 31.337342058764047 1.084946751550563 1.0400890957303373 0.4864081156266504 6475.11669921875 0.11753414095898355 6 1.345291479820628 2.557593115695727 2.6111082295772143 2.6190290625958017 2.442642054914165 0.00557999 0.03239801898598671 0.02051796019077301 446 90 90 60 2.249429321769704 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 6 79.23716637947213 20.19796371459961 59.04971694946289 14.002243041992188 300664.0 0.011210762895643711 268.52681732177695 151.72552490234375 4.76100405609658 414.2261657714844 1256.54638671875 1158.984375 111804.0 637.9958831787109 2184.9650024414054 515.2325439453125 31.702178955078125 +sub-20084_ses-V3_task-cuff_run-01_bold 0.0008733560090702948 0.01591338768707483 9 35.40298673447725 0.9748716435000009 0.9507200878181811 0.49245292036238464 5576.2705078125 0.18370776586656454 1 0.22675736961451248 2.5420236730289365 2.5583248983413025 2.607604063049791 2.460142057695716 0.0108489 0.03199617192149162 0.02107403241097927 441 90 90 60 2.3783260447014993 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 5 97.39054995850408 20.158010482788086 54.452579498291016 14.088435173034668 298808.0 0.06802721321582794 231.53503265380837 139.17201232910156 4.016699219078682 365.7522888183594 1151.24609375 1073.5328369140625 113217.0 578.5882080078126 1968.5351562499998 451.37969970703125 23.909170150756836 +sub-20084_ses-V3_task-cuff_run-02_bold 0.0007673814898419864 0.012893693476297968 7 34.14268966601813 0.9821352038687784 0.938374502466064 0.4919495164956165 5926.03271484375 0.16278098109139172 0 0.0 2.5290639504960524 2.549879065343576 2.5896373970970554 2.4476753890475256 0.0116257 0.030828425660729408 0.021236833184957504 443 90 90 60 2.372870838955634 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 1 85.36036483539567 19.728984832763672 53.900489807128906 13.632054328918457 298868.0 0.015801355242729187 233.14063644409163 136.029296875 4.109822844607775 365.8998718261719 1150.8232421875 1073.5654296875 113206.0 578.2855529785156 1968.4125366210938 452.43115234375 26.281015396118164 +sub-20084_ses-V3_task-rest_run-01_bold 0.0017131828442437924 0.012282643927765236 7 34.881410029094994 1.0277261979864245 1.0011091324660617 0.49236401830876986 6126.84521484375 0.1814269743897611 62 13.99548532731377 2.53535978411317 2.552808231893848 2.5975332301166363 2.4557378903290257 0.0173941 0.032662857323884964 0.019504951313138008 443 90 90 60 2.3832983955022096 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 3 80.02628208574295 19.591768264770508 54.38682556152344 13.57787799835205 298657.0 0.022573363035917282 234.3250579833987 138.6071014404297 3.8572457759104974 367.7557678222656 1155.0198974609375 1078.47412109375 113313.0 577.85869140625 1972.0370605468745 452.5112609863281 26.80245590209961 +sub-20084_ses-V3_task-rest_run-02_bold 0.0027372686230248307 0.010578499638826185 7 33.11973901880092 1.0416525120814473 1.0192048336425348 0.4914825934956145 5985.056640625 0.13831706443826267 39 8.803611738148984 2.517988949303628 2.549074898708864 2.581866564072507 2.423025385129513 0.0111816 0.030341973528265953 0.020227165892720222 443 90 90 60 2.351787795315786 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 17 78.55088824273078 19.588422775268555 54.23886489868164 13.519187927246094 299267.0 0.011286681517958641 236.402035522461 134.52024841308594 4.467420154073615 366.45703125 1149.0030517578125 1069.9954833984375 112859.0 578.244061279297 1971.5641601562486 454.9690856933594 29.383808135986328 +sub-20088_ses-V1_task-cuff_run-01_bold 0.0005908558558558559 0.008903289662162162 6 41.606128873160245 1.0621222117607223 0.9876986605417609 0.5120004599922076 2657.79541015625 0.2079551225565216 0 0.0 2.5440756927676342 2.501729067256885 2.7331207247288734 2.3973772863171448 0.00964046 0.021616045385599136 0.020254867151379585 444 90 90 60 2.4824575147351515 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 46.67507937616877 24.419527053833008 60.232486724853516 17.265766143798828 296558.0 0.006756756920367479 259.0422286987285 135.6329345703125 6.10184703754568 264.2839050292969 975.56591796875 910.0247802734375 115283.0 523.9653381347656 1633.3977905273434 366.58062744140625 32.88387680053711 +sub-20088_ses-V1_task-cuff_run-02_bold 0.0007378054298642534 0.009883205384615385 8 41.48617493154197 1.0533214071882078 0.9892921043310657 0.512927566125331 2641.627197265625 0.2127151874241452 0 0.0 2.55918680978513 2.51347073345698 2.747062390841548 2.417027305056863 0.00528384 0.021747220307588577 0.01919625513255596 442 90 90 60 2.4793674368882797 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 45.95261386978576 24.55685806274414 60.58348083496094 17.352941513061523 296153.0 0.004524887073785067 259.6986450195311 136.1465301513672 6.036898339313419 264.6579895019531 974.7417602539062 909.9367065429688 115503.0 520.5565795898438 1633.8308349609374 367.0019836425781 32.424278259277344 +sub-20088_ses-V1_task-rest_run-01_bold 0.0009159234234234234 0.01083282731981982 6 43.415665430541736 1.0789083669751696 1.004513404085778 0.5110071854834395 2632.40673828125 0.2284779900185202 110 24.774774774774773 2.5375756906872646 2.4949165675275897 2.727495724952391 2.3903147795818134 0.019665 0.021594153717160225 0.021078817546367645 444 90 90 60 2.485506794744522 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 59.61675102673914 24.56645393371582 60.4613151550293 17.405405044555664 296969.0 0.0045045046135783195 257.263073730468 140.07412719726562 6.160638580463235 264.27392578125 979.5780029296875 913.1768798828125 114888.0 530.1442779541015 1641.4332458496092 367.3990783691406 31.689205169677734 +sub-20088_ses-V1_task-rest_run-02_bold 0.0005951351351351352 0.0076955508108108115 6 40.76595330532731 1.064056050338601 0.9917299941986464 0.5126588273062211 2668.540283203125 0.19667077944427752 70 15.765765765765765 2.5475493033695673 2.506174900413557 2.740216557780244 2.3962564519149003 0.00466823 0.021185465157032013 0.017804011702537537 444 90 90 60 2.4669364465226202 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 44.401505911899356 24.37611961364746 60.510494232177734 17.200450897216797 296345.0 0.0045045046135783195 262.0896362304687 134.7638702392578 6.2940492101371355 263.9098205566406 975.0531616210938 909.4662475585938 115343.0 522.2569946289062 1633.890100097655 368.6606140136719 34.71767807006836 +sub-20088_ses-V3_task-cuff_run-01_bold 0.0015887584650112866 0.008220088261851015 7 40.653203170339374 1.0798729867873302 1.0093712917647057 0.5082782882709178 2582.37451171875 0.1846809324250954 1 0.22573363431151242 2.5382326530353048 2.479604068136054 2.690633226417175 2.4444606645526865 0.00553546 0.02054905705153942 0.013574369251728058 443 90 90 60 2.4910603484122444 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 47.774666549323804 24.551624298095703 61.17967987060547 17.93679428100586 300777.0 0.02483070082962513 265.5480957031254 137.23216247558594 5.586316003005107 276.16064453125 996.7747192382812 927.6490478515625 112784.0 538.7084625244141 1664.7386108398434 372.38958740234375 34.38674545288086 +sub-20088_ses-V3_task-cuff_run-02_bold 0.002852252252252252 0.009774655855855853 6 41.459074722144486 1.1082973634311504 1.0325135372009036 0.509363620802713 2532.60595703125 0.1933586830619454 1 0.22522522522522523 2.5331909832631228 2.4748124016597903 2.6902832264310828 2.4344773216984956 0.0170683 0.021064013242721558 0.014430484734475613 444 90 90 60 2.5040336905918084 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 51.3663076097106 24.549760818481445 61.22865295410156 17.986486434936523 299873.0 0.04054054245352745 266.27523193359355 137.7376708984375 5.439670082816248 274.4349670410156 988.9561767578125 922.0946044921875 113381.0 531.3018188476562 1646.5518798828125 368.2420654296875 33.26862335205078 +sub-20088_ses-V3_task-rest_run-01_bold 0.0008244018058690746 0.006749039909706546 7 40.6673528143665 1.0837757897058828 1.0033082836425342 0.5070493858763657 2760.344482421875 0.174048853988078 21 4.74040632054176 2.536554870177772 2.489808234397243 2.690937393071755 2.4289189830643174 0.00581879 0.02049586921930313 0.013266443274915218 443 90 90 60 2.4854184792171226 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 50.3862485400539 23.778532028198242 59.84348678588867 17.295711517333984 300062.0 0.027088036760687828 260.0800262451175 135.99087524414062 5.625727156126734 273.6957702636719 991.7692260742188 922.7607421875 113153.0 533.9494750976562 1658.3684326171874 371.26812744140625 36.47242736816406 +sub-20088_ses-V3_task-rest_run-02_bold 0.001207272727272727 0.008176710795454546 10 40.57213377047837 1.0887548648974945 1.012840832072892 0.5096559491559048 2539.6044921875 0.16449045593814554 19 4.318181818181818 2.5188062545606553 2.4669582353052206 2.6762790603208915 2.4131814680558534 0.00493827 0.022199366241693497 0.014169540256261826 440 90 90 60 2.5106851927698774 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 49.94668596156794 24.41913414001465 60.78052520751953 17.834091186523438 299859.0 0.013636363670229912 264.9522552490229 136.37001037597656 5.44051619349071 270.7838439941406 980.639404296875 914.7158813476562 113439.0 526.5906555175782 1631.5408447265622 364.32757568359375 35.50133514404297 +sub-20090_ses-V1_task-cuff_run-01_bold 0.0025830925507900676 0.016447436410835216 7 36.7848707472172 1.087807433325792 1.0094911650452483 0.4235646607398558 11285.0927734375 0.12618847008610778 0 0.0 2.3461354257651648 2.3397290736941865 2.292512408903742 2.406164794697566 0.0119331 0.0005520160193555057 0.01247897744178772 443 90 90 60 2.977131677961021 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 233.16192152406174 13.052254676818848 29.737764358520508 9.074492454528809 336021.0 0.013544018380343914 111.90970611572266 83.60020446777344 2.7884011747766575 241.08181762695312 990.7525634765625 948.3397216796875 82954.0 532.88759765625 1564.7552490234366 318.53948974609375 29.49907112121582 +sub-20090_ses-V1_task-cuff_run-02_bold 0.0013724153498871332 0.011645438329571104 7 35.84619539350677 1.0831237118325787 1.0006632727149325 0.4228785583387188 11709.078125 0.08180387743755022 0 0.0 2.309684018816602 2.302433241842856 2.2793665760927766 2.347252238514174 0.0130515 -0.00024734166800044477 0.014729979448020458 443 90 90 60 2.9599379990343864 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 239.7041555532698 12.918386459350586 29.839603424072266 8.909707069396973 336509.0 0.006772009190171957 114.11738586425781 84.06593322753906 2.8569602400590286 240.87110900878906 989.686767578125 946.1512451171875 82607.0 534.0112915039062 1563.4885131835936 319.65045166015625 34.934085845947266 +sub-20090_ses-V1_task-rest_run-01_bold 0.0015957787810383748 0.012763306410835213 7 36.994421195067865 1.1083225507239818 0.9867164141628963 0.42238676202046715 11528.6591796875 0.0799809899546598 0 0.0 2.340267365885509 2.3253457409323954 2.30305407515152 2.3924022815726107 0.0124342 0.0005483580753207207 0.014589914120733738 443 90 90 60 2.9240792199049412 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 252.06194398997224 12.838064193725586 28.962671279907227 8.88261890411377 335266.0 0.009029345586895943 109.47743225097656 82.91668701171875 2.9203333581909607 244.1357421875 987.5151977539062 943.961669921875 83312.0 522.9425872802734 1569.2646179199214 322.8216247558594 33.46112060546875 +sub-20090_ses-V1_task-rest_run-02_bold 0.0012050786516853932 0.009675919213483146 5 36.41382910747748 1.1202871793918918 1.0042016158333336 0.4219404865491627 11840.1376953125 0.09673706278101335 0 0.0 2.293400679208163 2.2847832425442043 2.2690707431685633 2.3263480519117214 0.0117964 -0.0004839483881369233 0.012467162683606148 445 90 90 60 2.964536067652701 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 243.67220527547946 13.006918907165527 29.831106185913086 8.930336952209473 336624.0 0.002247191034257412 116.07314605712874 85.22127532958984 2.767312619807223 243.583251953125 1001.2791748046875 959.24609375 82710.0 533.3167541503906 1582.9345397949223 323.5718078613281 37.47712707519531 +sub-20090_ses-V3_task-cuff_run-01_bold 0.0015275398633257404 0.015102704533029612 11 35.10496715650684 1.0708596372146109 0.9608549618721457 0.42592920395827577 14131.49609375 0.15280749210957126 0 0.0 2.3716020809793963 2.3620124061420595 2.3781582388338154 2.374635597962314 0.00106466 -0.0022333019878715277 0.01307826116681099 439 90 90 60 2.821948730649738 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 181.42708030023314 12.583544731140137 32.310611724853516 8.712984085083008 332736.0 0.01138952188193798 125.2010326385498 92.60269165039062 4.29696678159394 266.0460205078125 1067.9891357421875 1020.2950439453125 85108.0 567.5861328125 1709.782525634765 361.5547790527344 32.716068267822266 +sub-20090_ses-V3_task-cuff_run-02_bold 0.0008980725623582767 0.015048062335600907 9 34.77164600102274 1.0585160826136353 0.9407227587499999 0.425288140985023 14385.5 0.14927082828416158 0 0.0 2.354754855920707 2.3357540738521387 2.3644624060447055 2.364048087865277 0.00144958 -0.0021996174473315477 0.013674677349627018 441 90 90 60 2.819153988528193 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 9 176.76487517526027 12.52647590637207 32.389259338378906 8.655328750610352 333020.0 0.006802720949053764 126.8255146026611 93.70524597167969 4.520661312520021 266.7304992675781 1072.375732421875 1024.5941162109375 84933.0 572.2634887695312 1711.58369140625 363.4381408691406 33.14778137207031 +sub-20090_ses-V3_task-rest_run-01_bold 0.0028101801801801805 0.008978036261261261 6 33.63065940893903 1.1609241733634308 1.0428107638148985 0.4242615148333976 14764.9931640625 0.11712098327971814 1 0.22522522522522523 2.3384201305891614 2.318916574521201 2.343645740205219 2.3526980770410635 0.00678515 -0.0024621430784463882 0.014174439944326878 444 90 90 60 2.7938738775922807 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 203.81054672725182 12.261521339416504 31.707305908203125 8.430180549621582 332486.0 0.0022522523067891598 122.87725448608398 94.02027130126953 4.467840862811361 267.0520935058594 1068.3192138671875 1017.5315551757812 85077.0 570.0522583007813 1716.824340820312 364.1988220214844 40.95846939086914 +sub-20090_ses-V3_task-rest_run-02_bold 0.002439527027027027 0.014074685382882882 6 35.89917543291195 1.115067195011287 0.9878626454176068 0.42617988956252706 14521.7275390625 0.15240665576743864 20 4.504504504504505 2.3515104097659942 2.3344999072353083 2.361537406160935 2.3584939159017395 0.00304917 -0.002156736794859171 0.012686274014413357 444 90 90 60 2.840781186001019 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 7 166.91043758612312 12.475229263305664 32.17746353149414 8.596846580505371 332433.0 0.0045045046135783195 125.45315551757788 92.30496978759766 4.269449090962924 264.40911865234375 1068.399169921875 1021.9290771484375 85344.0 571.164193725586 1704.1428100585938 359.7331237792969 32.79389190673828 +sub-20092_ses-V1_task-cuff_run-01_bold 0.0009047737556561085 0.0035488663122171943 8 26.091749654058933 1.056158037256236 1.0110676753514738 0.44060943638920075 11195.5673828125 0.147256710548325 0 0.0 2.8675409818643263 2.665529060748058 3.0638790449190516 2.873214839925868 0.0134442 -0.015885459259152412 0.018005680292844772 442 90 90 60 2.8547749031752407 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 32.17210192374633 20.954336166381836 58.9912223815918 14.282806396484375 331457.0 0.0 291.2746765136719 136.93431091308594 1.097312858533055 469.5205078125 1607.315673828125 1532.3857421875 86862.0 848.5397613525391 2580.764135742187 536.7767944335938 50.21238708496094 +sub-20092_ses-V1_task-cuff_run-02_bold 0.003246085972850679 0.004416228190045249 8 29.21468297052156 1.0853863969387756 1.0518241175283447 0.4416257655219809 12076.685546875 0.21162736163418713 0 0.0 2.897392363868993 2.684008226680429 3.106274876567726 2.901893988358823 0.009714 -0.016986381262540817 0.020254235714673996 442 90 90 60 2.8564293391368 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 21 32.27265930275203 20.276765823364258 60.08660888671875 13.925339698791504 331371.0 0.004524887073785067 297.5690155029297 136.85232543945312 1.0937182550450961 469.8741455078125 1607.261962890625 1532.0068359375 87051.0 847.9525451660156 2578.15966796875 536.333251953125 44.97686004638672 +sub-20092_ses-V1_task-rest_run-01_bold 0.0018327765237020318 0.0043308482618510166 7 27.286694181266988 1.0590043326018097 1.000255787533936 0.4399181453603858 11191.0986328125 0.15691360549401426 18 4.063205417607223 2.8662729261008715 2.6609582275963537 3.0633457116069116 2.8745148390993505 0.012791 -0.016280097886919975 0.016704978421330452 443 90 90 60 2.8669472804226075 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 29.743377313309125 20.896995544433594 57.54000473022461 14.27991008758545 331516.0 0.0022573363967239857 282.8860168457031 130.53477478027344 1.1452158237416779 466.04583740234375 1608.4716796875 1531.9345703125 86711.0 854.9887390136719 2580.566650390625 534.3403930664062 47.352691650390625 +sub-20092_ses-V1_task-rest_run-02_bold 0.0020241441441441444 0.0037585344819819812 6 28.273213276930033 1.0724487685553048 1.0188934079006775 0.44147395804414774 11443.6669921875 0.17760903944104134 44 9.90990990990991 2.869285426163291 2.666999894022946 3.0672582114514424 2.8735981730154845 0.0130695 -0.01641562394797802 0.01666330359876156 444 90 90 60 2.85391452291715 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 27.06264565152504 20.86662483215332 59.828670501708984 14.231982231140137 331652.0 0.0 301.0179122924808 134.58592224121094 1.1545082605739934 470.3821716308594 1612.3289794921875 1537.207275390625 86789.0 852.4946166992188 2590.1046386718726 538.6280517578125 48.22831344604492 +sub-20094_ses-V1_task-cuff_run-01_bold 0.001469502262443439 0.011145343257918553 8 33.06689947911567 1.0113306890476186 0.9579214836054423 0.4506136989532254 5186.0205078125 0.1724482321729626 1 0.22624434389140272 2.4862353994964956 2.5263582329448764 2.5886998971343083 2.3436480684103027 0.00922787 0.016860254108905792 0.011351535096764565 442 90 90 60 2.1697357464426688 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 53.31330747870876 22.71534538269043 54.495018005371094 15.884615898132324 320945.0 0.04977375641465187 221.33349609374994 132.93896484375 5.026737247678934 399.5478515625 1257.861083984375 1162.9400634765625 95834.0 584.5233215332031 2270.953991699218 535.9795532226562 27.281177520751953 +sub-20094_ses-V1_task-cuff_run-02_bold 0.0013336036036036036 0.007600703896396397 6 38.10874610029349 1.075337754492099 1.0113061253047404 0.4503093351234612 5944.7509765625 0.21364669888897303 0 0.0 2.471020117949548 2.505704067098933 2.5769165642692022 2.3304397224805093 0.006766 0.015768906101584435 0.012786143459379673 444 90 90 60 2.1841320177918684 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 52.18372247580563 21.564516067504883 54.23493576049805 14.916666984558105 320989.0 0.020270271226763725 220.5599151611325 132.51939392089844 4.973289010502842 396.7396545410156 1260.3739013671875 1164.5146484375 95710.0 594.8326690673828 2276.022106933594 533.1676635742188 32.643550872802734 +sub-20094_ses-V1_task-rest_run-01_bold 0.0025591216216216215 0.010112315315315314 6 38.701281269887154 1.0691394086230246 1.0267366998871332 0.4497297065717346 5474.53759765625 0.2282756781341898 123 27.7027027027027 2.4702367830026937 2.5093749002864003 2.575862397644425 2.3254730510772554 0.00598779 0.01671205274760723 0.01140906848013401 444 90 90 60 2.17812948170772 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 60.39160877651666 22.172250747680664 53.71598434448242 15.529279708862305 321192.0 0.05180180445313454 216.90000076293967 132.0884246826172 5.140182550568465 397.0069274902344 1261.4603271484375 1166.486572265625 95525.0 591.1247924804687 2272.4663085937514 535.5422973632812 28.698680877685547 +sub-20094_ses-V1_task-rest_run-02_bold 0.002654663677130045 0.011722817421524664 4 40.884999581752794 1.0827343028314604 1.0067668598202246 0.4514763484229278 5239.0322265625 0.25171201550137245 129 28.923766816143498 2.498532627169844 2.5211373998190005 2.61287489617368 2.361585585516852 0.0159746 0.015472947619855404 0.012590797618031502 446 90 90 60 2.1873204266173425 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 23 50.43214515399912 22.794179916381836 54.95625305175781 15.912556648254395 320767.0 0.04708520323038101 224.2280410766602 132.32809448242188 4.953914341826161 396.17889404296875 1256.6126708984375 1161.7646484375 95794.0 590.7498138427735 2264.5630493164053 531.1332397460938 25.751861572265625 +sub-20094_ses-V3_task-cuff_run-01_bold 0.002855135746606335 0.015323377194570135 8 42.95588498950113 1.01388983244898 0.9932308816326535 0.4581084844153949 4608.13037109375 0.32769618232299214 22 4.97737556561086 2.4308798542603327 2.41789990392129 2.506570733731161 2.3681689251285474 0.0273442 0.010527708567678928 0.008568337187170982 442 90 90 60 2.4392379955418666 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 13 40.50975289154343 21.004650115966797 46.22376251220703 14.957014083862305 319285.0 0.0859728530049324 185.76199645996076 105.71428680419922 2.013057925025472 332.3026123046875 1086.807373046875 1020.605224609375 96582.0 512.6204986572266 1887.055902099609 418.4093322753906 22.471485137939453 +sub-20094_ses-V3_task-cuff_run-02_bold 0.0013973198198198196 0.016354467905405404 6 54.17341504397296 1.0438373306772002 0.9585717757336345 0.4576556830412379 4534.388671875 0.4228811115607415 21 4.72972972972973 2.4429479135376506 2.4255124036187965 2.5224748997658533 2.380856437228302 0.0161108 0.009782020933926105 0.007473669480532408 444 90 90 60 2.424757726689224 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 24 38.878116295733676 21.143779754638672 46.5084342956543 15.022522926330566 319748.0 0.07207207381725311 187.9414489746078 106.73112487792969 1.9849780240849846 338.2703552246094 1096.3465576171875 1028.307373046875 96190.0 520.0253448486328 1915.7737854003908 424.0844421386719 21.810626983642578 +sub-20094_ses-V3_task-rest_run-01_bold 0.004178662131519273 0.017469952925170066 9 54.30175619563633 1.0254782214545464 0.9885586861590907 0.45742647407629244 4939.349609375 0.4581075215027791 261 59.183673469387756 2.448564582343243 2.4334874033018985 2.524216566363312 2.3879897773645182 0.0175632 0.009745515882968903 0.008436130359768867 441 90 90 60 2.4473170375041358 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 18 44.09965220165156 20.43368911743164 45.25414276123047 14.585034370422363 319025.0 0.12244898080825806 180.47574462890583 103.54766082763672 2.019409660106863 335.6749267578125 1095.4443359375 1029.2279052734375 96742.0 523.54775390625 1904.4342895507812 420.5513916015625 21.08440399169922 +sub-20094_ses-V3_task-rest_run-02_bold 0.00253337807606264 0.01373510548098434 3 53.16314622414797 1.0792465142600896 1.0563272400448436 0.4567102829837244 4928.03759765625 0.3964079801495173 273 61.07382550335571 2.4570354123459435 2.450312402633333 2.5418457323294588 2.378948102075038 0.0115247 0.009372466243803501 0.0070260269567370415 447 90 90 60 2.3665834601618534 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 40.69967859416926 20.673511505126953 47.30696487426758 14.651006698608398 319593.0 0.07382550090551376 191.95480957031197 108.52825164794922 2.148731739881752 352.3219909667969 1105.6763916015625 1036.1007080078125 96467.0 513.0286315917969 1950.0624511718747 437.8021545410156 23.782554626464844 +sub-20097_ses-V1_task-rest_run-01_bold 0.0012034382022471913 0.007005550292134831 5 37.27783489216216 1.082597285202703 0.9973593623423422 0.4445964955770972 12917.3955078125 0.1980664812223894 59 13.258426966292134 2.4706340450739135 2.484320734615297 2.4817207347186114 2.4458606658878317 0.00460877 0.004056076984852552 0.019465245306491852 445 90 90 60 2.55481712922642 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 75.71722405261269 12.170665740966797 29.032197952270508 8.426966667175293 317966.0 0.006741573102772236 118.47078895568848 72.29887390136719 2.3613685460760614 286.2054748535156 1035.1978759765625 963.5573120117188 97751.0 540.6089782714844 1768.1427001953125 377.1512145996094 36.23374938964844 +sub-20098_ses-V1_task-cuff_run-01_bold 0.0007583484162895927 0.0021559719004524886 8 24.829478075623623 1.0836612663038545 1.00295357229025 0.49963478343367185 5407.9677734375 0.11971763203544976 0 0.0 3.1378340039932264 2.7863165559483947 3.6397873553678455 2.987398100663439 0.0146407 0.0023773745633661747 0.03861163556575775 442 90 90 60 2.2544370843342394 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 33.01545777627803 35.51872253417969 114.40947723388672 24.41402816772461 296737.0 0.0 565.6701660156263 264.0628967285156 2.3743495370694854 734.5472412109375 1973.1168212890625 1860.8575439453125 116778.0 858.4179016113281 3462.136401367184 825.41650390625 57.952674865722656 +sub-20098_ses-V1_task-cuff_run-02_bold 0.006318866213151929 0.008138619206349207 9 32.367995305636356 1.0235491724999999 0.9943957720454555 0.5026942550693819 4753.40673828125 0.3281540703225493 35 7.936507936507937 3.190599270547345 2.8111873882934497 3.7272748518914045 3.0333355714571817 0.0507857 0.0024522149469703436 0.04006881266832352 441 90 90 60 2.278254775890406 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 32.021890614016115 37.0213508605957 116.1648178100586 25.93197250366211 296205.0 0.10657596588134766 568.7759643554687 262.430908203125 2.1911680970276874 725.4597778320312 1953.5894775390625 1845.4285888671875 117183.0 853.4662170410156 3406.2772216796875 810.0150756835938 32.036190032958984 +sub-20098_ses-V1_task-rest_run-01_bold 0.0016618181818181816 0.0027682835 10 24.21888171123007 1.0775493385421417 1.0495217162642376 0.4989265090101381 5696.63916015625 0.13777721492848757 9 2.0454545454545454 3.155043724021612 2.799837388744458 3.670295687488886 2.994998095831492 0.00876061 0.0018980930326506495 0.037895165383815765 440 90 90 60 2.247866375947267 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 33.08022547570984 35.20506286621094 114.2920150756836 24.063634872436523 297148.0 0.0022727272007614374 561.3688415527342 260.2489318847656 2.507445248443708 736.3054809570312 1981.2001953125 1867.89208984375 116524.0 862.3613128662109 3475.046130371092 830.9586791992188 52.40821838378906 +sub-20098_ses-V1_task-rest_run-02_bold 0.0009905191873589164 0.002310573250564334 7 23.954425980113143 1.0660185350904963 1.0064505455203625 0.5014004680833528 5173.61572265625 0.11515406479186202 8 1.8058690744920993 3.1238395642490464 2.779304056227046 3.6256748559286254 2.9665397805914684 0.00850838 0.0015611371491104364 0.03908098489046097 443 90 90 60 2.2579369783072822 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 30.972601079312014 36.14470291137695 116.61603546142578 24.812641143798828 296431.0 0.0022573363967239857 577.7731628417969 265.8626403808594 2.2848498514235853 734.776611328125 1971.5753173828125 1859.8883056640625 116990.0 857.5055633544922 3453.3008666992187 823.7078247070312 57.18601608276367 +sub-20098_ses-V3_task-cuff_run-01_bold 0.00039723981900452487 0.0017498896832579185 8 23.38300147029478 1.0674638263945573 1.0059967690702947 0.5004120077652137 6044.39892578125 0.07400819946460539 0 0.0 3.039388187462102 2.695087392906849 3.500558194233648 2.9225189752458096 0.00825178 -0.004241159185767174 0.044920310378074646 442 90 90 60 2.370251519241801 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 32.3318658167715 32.815155029296875 102.9456558227539 22.398191452026367 296696.0 0.0 506.03055572509766 226.57257080078125 1.8933611726620612 688.5713500976562 1920.88623046875 1812.642578125 116579.0 879.3224182128906 3288.8444580078126 764.74365234375 61.410919189453125 +sub-20098_ses-V3_task-cuff_run-02_bold 0.016617233560090705 0.005255776507936508 9 26.04625779075001 1.136014670636364 1.0985003029545461 0.5022149221557587 5697.55810546875 0.13795540286747923 3 0.6802721088435374 3.0776381796588654 2.713587392171725 3.5651831916656818 2.954143955139189 0.0187149 -0.003582320176064968 0.045185066759586334 441 90 90 60 2.3726088569721635 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 36 32.544824342512655 33.49134826660156 103.99164581298828 23.058958053588867 296031.0 0.0317460335791111 505.0816345214844 227.62710571289062 1.7920163765944315 689.4469604492188 1911.13427734375 1804.53515625 117245.0 872.3805175781251 3275.185595703125 760.5667724609375 40.71601867675781 +sub-20098_ses-V3_task-rest_run-01_bold 0.0005504524886877828 0.0018215472850678736 8 24.410146708548755 1.0861367378911575 1.0011620276417246 0.5000276748800019 6132.54931640625 0.08319678756859913 1 0.22624434389140272 3.044850685953609 2.696433226186704 3.5090998605608994 2.9290189711132233 0.00731866 -0.0036037773825228214 0.04368894174695015 442 90 90 60 2.371466258004704 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 33.40400343528478 32.80173873901367 101.63861846923828 22.330318450927734 296421.0 0.0 496.92083740234375 224.48916625976562 1.8330753190006464 688.4475708007812 1919.5770263671875 1813.201416015625 116893.0 873.5547729492188 3293.7594726562493 764.5875854492188 60.40137481689453 +sub-20098_ses-V3_task-rest_run-02_bold 0.0034927539503385994 0.0031382641760722345 7 24.213275978619897 1.0611992750904977 1.0230744037556556 0.5015575176798709 6087.6396484375 0.0942655498401875 4 0.9029345372460497 3.0896228993120736 2.730316558173634 3.573874857986972 2.9646772817756135 0.00507462 -0.004532975610345602 0.045404963195323944 443 90 90 60 2.342398274642124 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 31.602025554801074 32.91176223754883 104.296142578125 22.63656997680664 295992.0 0.011286681517958641 507.47936706542976 225.52764892578125 2.001115548683094 693.0462646484375 1913.8516845703125 1804.2235107421875 117446.0 873.1597137451172 3299.9774780273438 770.2429809570312 48.165199279785156 +sub-20099_ses-V1_task-cuff_run-01_bold 0.0017087865168539326 0.022039263370786516 5 45.94414134085582 1.0119977854504503 1.0000367248873883 0.44967937153415855 7459.75048828125 0.42010469470443057 30 6.741573033707865 2.4522159892747504 2.4311124033962725 2.4826207346828486 2.4429148297451304 0.0139028 -2.00914905690297e-06 0.03352826088666916 445 90 90 60 3.4179977409071856 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 15 186.41703429244592 14.629453659057617 38.55533981323242 10.191011428833008 330541.0 0.05393258482217789 143.7617950439453 109.25007629394531 2.627575530866234 213.43978881835938 883.9882202148438 862.0831298828125 86784.0 519.7694305419923 1314.966430664062 252.21730041503906 23.46182632446289 +sub-20099_ses-V1_task-cuff_run-02_bold 0.0020743918918918916 0.01871464144144144 6 46.16584224130924 1.0580488850338587 1.016550544582393 0.4497146755987709 7710.32421875 0.3959436303147635 24 5.405405405405405 2.4177590317757165 2.4101957375607594 2.443724902895097 2.3993564548712936 0.00940648 0.0015445048920810223 0.03487413004040718 444 90 90 60 3.4326240680035647 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 180.64999214550474 14.07470417022705 37.9888801574707 9.79054069519043 331208.0 0.045045047998428345 143.00292587280256 108.11183166503906 2.607425113562532 210.2423858642578 879.0614624023438 855.3468627929688 86543.0 523.3365173339844 1307.734765625 249.18019104003906 26.455476760864258 +sub-20099_ses-V1_task-rest_run-01_bold 0.00190647191011236 0.01839389395505618 5 37.63499100144149 1.0344924661261259 1.046953523558558 0.45145543343919525 7535.4052734375 0.22908196027616876 99 22.247191011235955 2.425357641514209 2.416537403975431 2.4634124021127857 2.39612311845441 0.00636839 -0.0028191523160785437 0.026594843715429306 445 90 90 60 3.331442315877907 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 112.89925399678947 14.949295043945312 39.878623962402344 10.346067428588867 330831.0 0.03146067261695862 156.35169219970703 103.12602996826172 2.681025407939405 224.79083251953125 909.989501953125 887.455078125 86594.0 526.3405822753906 1363.276312255859 266.3861083984375 28.070526123046875 +sub-20099_ses-V1_task-rest_run-02_bold 0.0018627516778523493 0.015676026890380314 3 44.97855591910317 1.0739993201569509 0.9975505541031385 0.4494155003966846 7663.7578125 0.3412098992200667 224 50.11185682326622 2.4044131906777118 2.405049904431903 2.433883236619503 2.374306430981729 0.0179793 0.0006099881720729172 0.033226922154426575 447 90 90 60 3.3577472287108967 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 186.34052796164318 14.202467918395996 38.5311279296875 9.760626792907715 330825.0 0.008948545902967453 147.9534698486327 109.6948471069336 2.8925155306811057 216.4416961669922 883.8303833007812 861.2080078125 86658.0 517.1115417480469 1320.442309570312 256.4823913574219 28.89785385131836 +sub-20099_ses-V3_task-cuff_run-01_bold 0.0017087865168539326 0.022039263370786516 5 45.94414134085582 1.0119977854504503 1.0000367248873883 0.44967937153415855 7459.75048828125 0.42010469470443057 30 6.741573033707865 2.4522159892747504 2.4311124033962725 2.4826207346828486 2.4429148297451304 0.0139028 -2.00914905690297e-06 0.03352826088666916 445 90 90 60 3.4179977409071856 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 15 186.41703429244592 14.629453659057617 38.55533981323242 10.191011428833008 330541.0 0.05393258482217789 143.7617950439453 109.25007629394531 2.627575530866234 213.43978881835938 883.9882202148438 862.0831298828125 86784.0 519.7694305419923 1314.966430664062 252.21730041503906 23.46182632446289 +sub-20099_ses-V3_task-cuff_run-02_bold 0.0020743918918918916 0.01871464144144144 6 46.16584224130924 1.0580488850338587 1.016550544582393 0.4497146755987709 7710.32421875 0.3959436303147635 24 5.405405405405405 2.4177590317757165 2.4101957375607594 2.443724902895097 2.3993564548712936 0.00940648 0.0015445048920810223 0.03487413004040718 444 90 90 60 3.4326240680035647 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 6 180.64999214550474 14.07470417022705 37.9888801574707 9.79054069519043 331208.0 0.045045047998428345 143.00292587280256 108.11183166503906 2.607425113562532 210.2423858642578 879.0614624023438 855.3468627929688 86543.0 523.3365173339844 1307.734765625 249.18019104003906 26.455476760864258 +sub-20099_ses-V3_task-rest_run-01_bold 0.00190647191011236 0.01839389395505618 5 37.63499100144149 1.0344924661261259 1.046953523558558 0.45145543343919525 7535.4052734375 0.22908196027616876 99 22.247191011235955 2.425357641514209 2.416537403975431 2.4634124021127857 2.39612311845441 0.00636839 -0.0028191523160785437 0.026594843715429306 445 90 90 60 3.331442315877907 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 8 112.89925399678947 14.949295043945312 39.878623962402344 10.346067428588867 330831.0 0.03146067261695862 156.35169219970703 103.12602996826172 2.681025407939405 224.79083251953125 909.989501953125 887.455078125 86594.0 526.3405822753906 1363.276312255859 266.3861083984375 28.070526123046875 +sub-20099_ses-V3_task-rest_run-02_bold 0.0018627516778523493 0.015676026890380314 3 44.97855591910317 1.0739993201569509 0.9975505541031385 0.4494155003966846 7663.7578125 0.3412098992200667 224 50.11185682326622 2.4044131906777118 2.405049904431903 2.433883236619503 2.374306430981729 0.0179793 0.0006099881720729172 0.033226922154426575 447 90 90 60 3.3577472287108967 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 186.34052796164318 14.202467918395996 38.5311279296875 9.760626792907715 330825.0 0.008948545902967453 147.9534698486327 109.6948471069336 2.8925155306811057 216.4416961669922 883.8303833007812 861.2080078125 86658.0 517.1115417480469 1320.442309570312 256.4823913574219 28.89785385131836 +sub-20100_ses-V1_task-cuff_run-01_bold 0.0005691031390134527 0.016655330941704037 4 56.14205194516851 1.0407563377303366 1.0005110940224722 0.45142317836198126 1542.2745361328125 0.10985664956185325 0 0.0 2.803559610818773 2.666766560698884 3.04664571227051 2.6972665594869234 0.00499216 -0.01690988428890705 0.07043346762657166 446 90 90 60 2.4553336870327156 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 63.8810329434867 5.102679252624512 20.827041625976562 9.123318672180176 338320.0 5.015695095062256 65.34081268310547 43.29651641845703 3.7963258336266588 105.3345718383789 409.4741516113281 374.52020263671875 80934.0 230.02512207031253 706.5938964843748 152.53237915039062 22.683128356933594 +sub-20100_ses-V1_task-rest_run-01_bold 0.0003171973094170404 0.016198867488789237 4 55.19254660435954 1.0342158961573034 0.9937906224044938 0.450573741171005 1566.5592041015625 0.08967271961174052 0 0.0 2.7778512785069966 2.6436207282852835 3.008437380455439 2.6814957267802666 0.00349652 -0.01662548817694187 0.06835795938968658 446 90 90 60 2.4604815924790997 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 71.05495096376825 5.016249179840088 20.71053695678711 9.10986614227295 338541.0 5.058296203613281 64.7668228149414 43.1652946472168 3.628421729063123 105.71354675292969 412.389404296875 377.06280517578125 80711.0 230.51346588134766 712.5997924804688 153.24661254882812 23.680557250976562 +sub-20100_ses-V1_task-rest_run-02_bold 0.0012613839285714288 0.02119345513392857 2 56.73700283163315 1.027538684854586 0.9883665097762855 0.45330402914970835 1473.6302490234375 0.1022348530642487 7 1.5625 2.8526040533143657 2.698145726118655 3.123870709201864 2.7357957246225784 0.003293 -0.01739468052983284 0.07106775045394897 448 90 90 60 2.425443495647128 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 63.390340492696154 5.258605003356934 21.110782623291016 9.287946701049805 337958.0 5.129464626312256 65.3511180877684 42.717864990234375 3.770002447294928 106.77383422851562 406.80596923828125 372.4285888671875 81393.0 224.3196533203125 707.494677734375 153.54977416992188 19.891334533691406 +sub-20101_ses-V1_task-cuff_run-01_bold 0.0009820728929384964 0.011585067562642368 11 49.81432730086758 1.1280737002511427 0.9899874479452054 0.4724039025420452 4594.6494140625 0.26012042515367345 0 0.0 2.4949486773441474 2.545545732182434 2.442245736287207 2.4970545635628008 0.00325892 0.012077278457581997 0.03171626850962639 439 90 90 60 2.063611400837996 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 2 129.19925620809144 20.033706665039062 53.66648483276367 14.11617374420166 307146.0 0.0182232353836298 229.6537628173828 145.5845184326172 8.544153274986531 322.4102478027344 1073.13671875 980.1458129882812 106914.0 503.7331588745117 1922.3448059082032 474.96405029296875 33.13262939453125 +sub-20101_ses-V1_task-cuff_run-02_bold 0.001362267573696145 0.011176420453514739 9 45.97971906231819 1.0645359667045455 0.9977484635454553 0.4733133031518554 4651.42724609375 0.25654360162536044 0 0.0 2.5151070112051475 2.565104064738589 2.4630999021252036 2.51711706675165 0.00136044 0.013368673622608185 0.03296159952878952 441 90 90 60 2.054427236135167 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 0 134.06304818528412 20.087411880493164 54.81398391723633 14.192744255065918 307036.0 0.03401360660791397 232.30725479125977 149.72357177734375 9.09056037883207 323.31317138671875 1073.710693359375 978.780029296875 106992.0 508.14298553466796 1925.8819885253906 476.42254638671875 29.841754913330078 +sub-20101_ses-V1_task-rest_run-01_bold 0.0010311036036036037 0.009198753130630632 6 44.983271781918766 1.0991013665462752 0.9985200703160282 0.47270382661822924 4718.5458984375 0.23538663685045988 133 29.954954954954953 2.495448677627821 2.548729065389273 2.435979069869555 2.5016378976246356 0.00278548 0.013095032423734665 0.031027937307953835 444 90 90 60 2.0871561370457297 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 3 139.32189898354554 19.788066864013672 53.09872817993164 14.08108139038086 306952.0 0.04054054245352745 224.95878982543962 145.32716369628906 8.160988549547247 322.97698974609375 1075.419921875 984.0923461914062 107035.0 503.3477600097657 1922.2060913085932 471.4969482421875 33.43239212036133 +sub-20101_ses-V1_task-rest_run-02_bold 0.001851123595505618 0.009396384089887641 5 44.26327719560808 1.097851890698197 1.0156439237837838 0.4750336809186172 4498.95556640625 0.23808942108943987 132 29.662921348314608 2.513805622008963 2.565908231373301 2.4638124020968912 2.5116962325566976 0.00162497 0.015331108123064041 0.031431395560503006 445 90 90 60 2.0505745910115634 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999996185302734 9 125.4012200555099 20.383281707763672 56.6751594543457 14.4314603805542 307089.0 0.049438200891017914 244.0561859130857 151.99313354492188 8.890281186968858 327.0287170410156 1076.6649169921875 981.251708984375 107055.0 507.07258300781257 1937.9040649414057 478.52301025390625 32.49725341796875 +sub-20101_ses-V3_task-cuff_run-01_bold 0.0009610045662100455 0.008459986461187214 12 43.19469773151026 1.1662642908695646 0.9946260419908468 0.4710739021442849 4194.0712890625 0.20164428111503874 0 0.0 2.5773646093579186 2.7012582259949753 2.545808232172003 2.485027369906778 0.00520152 0.0032499367371201515 0.03373999148607254 438 90 90 60 1.7869637682876074 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 90.00519481163992 24.354616165161133 65.25552368164062 16.840181350708008 305067.0 0.006849315017461777 288.51072692871094 159.93402099609375 15.992238311175864 394.02020263671875 1240.158447265625 1112.559326171875 108915.0 558.7230163574219 2288.2429931640618 622.5947265625 35.65724563598633 +sub-20101_ses-V3_task-cuff_run-02_bold 0.0013530909090909093 0.00852459234090909 10 44.2167729828246 1.1856078713895208 1.002717877494305 0.47219550157881823 4105.271484375 0.19550555101262065 0 0.0 2.5693757167217703 2.6969957261643516 2.538379065800545 2.4727523582004145 0.00681252 0.004430561326444149 0.034101925790309906 440 90 90 60 1.7877954220141223 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 87.39608746678522 24.638153076171875 66.56698608398438 17.047727584838867 304993.0 0.013636363670229912 296.88816528320257 162.55052185058594 16.352329802961272 394.6484680175781 1244.9759521484375 1116.98291015625 108970.0 562.2725860595704 2293.5766357421844 624.7794189453125 35.394683837890625 +sub-20101_ses-V3_task-rest_run-01_bold 0.0015642141230068339 0.008727656537585421 11 46.426451578630136 1.2365495021232873 1.0111247823972598 0.4700144057688651 4258.80517578125 0.20698329728439735 84 19.134396355353076 2.5613312707095015 2.690004059775509 2.5269373995885296 2.467052352764466 0.00841872 0.003787379479035735 0.03371092677116394 439 90 90 60 1.7890195757196141 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 95.30714320477668 24.339672088623047 64.37531280517578 16.7722110748291 305271.0 0.00455580884590745 282.4350891113281 158.91552734375 15.964263393707203 395.98980712890625 1249.911376953125 1120.792724609375 108707.0 569.11142578125 2302.6642578124997 626.4814453125 35.8277587890625 +sub-20101_ses-V3_task-rest_run-02_bold 0.0012229504504504504 0.007482513445945945 6 42.784901616884866 1.1741483177426628 0.9976905016930036 0.4714448622777496 4122.49609375 0.17949588157314375 42 9.45945945945946 2.565953493471036 2.695454059558945 2.533170732674172 2.4692356881799906 0.00831137 0.004774931818246841 0.03336402773857117 444 90 90 60 1.7610772597247335 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 80.28054844917573 24.893693923950195 67.70047760009766 17.112613677978516 305436.0 0.0022522523067891598 304.48988342285156 164.55215454101562 16.889477820326604 398.5696105957031 1248.77392578125 1118.7230224609375 108773.0 560.3846801757812 2313.250488281248 635.246337890625 38.0770149230957 +sub-20102_ses-V1_task-cuff_run-01_bold 0.001030995475113122 0.0038971228733031675 8 30.21835535224488 1.061202161428571 1.011226339115646 0.4298437560861994 9197.6279296875 0.26522803211569884 1 0.22624434389140272 2.8469687982281933 2.60828322968947 3.249504037542977 2.6831191274521338 0.0117638 -0.016251230612397194 0.028868936002254486 442 90 90 60 2.691141916475285 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 47.39908467298572 23.89606285095215 63.34009552001953 16.38461685180664 338130.0 0.0067873308435082436 303.1500167846678 131.8255615234375 1.3404535376642137 480.2592468261719 1668.8814697265625 1579.66748046875 81281.0 832.25341796875 2757.411865234375 586.9841918945312 47.723838806152344 +sub-20102_ses-V1_task-cuff_run-02_bold 0.001779321266968326 0.0062147892986425335 8 34.17419611770973 1.065151428253969 1.0377637785714284 0.43125091726154047 8594.1025390625 0.34757681100074445 5 1.1312217194570136 2.8686729591282796 2.620520729203195 3.2776957030894076 2.707802445092236 0.0199509 -0.016428818926215172 0.029776908457279205 442 90 90 60 2.710422567128392 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 44.4341866899754 24.647422790527344 64.41355895996094 16.94796371459961 337871.0 0.015837104991078377 307.97625732421875 132.5887451171875 1.3548258772401072 477.468505859375 1664.1453857421875 1573.5927734375 81349.0 840.87060546875 2740.801904296872 580.5674438476562 39.1849365234375 +sub-20102_ses-V1_task-rest_run-01_bold 0.000676117381489842 0.004011549051918736 7 31.61864831742082 1.0654990294117648 1.0036906167420812 0.4295237728823946 9590.2197265625 0.31342901126960904 241 54.401805869074494 2.8298951898916225 2.5918498970091384 3.225266538506089 2.6725691341596387 0.00833782 -0.016397934406995773 0.02987765707075596 443 90 90 60 2.7623780021111215 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 57.19326741795958 23.560991287231445 62.37064743041992 16.097064971923828 338115.0 0.0022573363967239857 296.43792724609375 132.95985412597656 1.2638282609113745 469.6971435546875 1663.7169189453125 1577.09033203125 81159.0 844.443798828125 2721.4337402343745 570.9141235351562 47.65406036376953 +sub-20102_ses-V1_task-rest_run-02_bold 0.001429435665914221 0.005853531038374717 7 33.91048311006786 1.0670936038914032 0.994942381176471 0.43143308088583954 8167.06591796875 0.33116060932497104 241 54.401805869074494 2.8768132380619456 2.635433228610626 3.294649869082377 2.700356616492833 0.0144138 -0.017337532714009285 0.02976304106414318 443 90 90 60 2.675109365720316 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 44.31804773172448 25.24105453491211 65.01348876953125 17.221220016479492 337848.0 0.006772009190171957 311.1480834960935 132.79066467285156 1.3884913255596167 482.6355285644531 1668.1240234375 1576.47412109375 81493.0 831.3544311523438 2762.910156249999 589.3084106445312 39.76227569580078 +sub-20104_ses-V1_task-cuff_run-01_bold 0.001258818181818182 0.008269626909090909 10 29.068905984760825 1.028450860865604 0.9916751878815488 0.5004367741014494 5827.9677734375 0.22533355754644557 0 0.0 3.0585242876792016 2.786399889278416 3.4156498642742683 2.973523109484921 0.0155473 0.008579902350902557 0.042895808815956116 440 90 90 60 2.6136847613325456 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 28.547058295568984 30.986387252807617 110.24429321289062 21.545454025268555 306079.0 0.04999999701976776 572.6926940917959 248.5479736328125 1.1071325163812658 565.29931640625 1746.3609619140625 1655.3226318359375 107945.0 878.0231689453126 2920.477246093749 633.326171875 38.5653076171875 +sub-20104_ses-V1_task-cuff_run-02_bold 0.001133846153846154 0.004943212036199096 8 27.94197473088436 1.0833335351473918 1.0077317659863947 0.5001342289659227 5725.5166015625 0.16830434058706129 0 0.0 3.02522429617319 2.76797489001056 3.370266532744307 2.937431465764703 0.0179572 0.00965338759124279 0.04365893825888634 442 90 90 60 2.6075149198455647 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 30.913963975703766 30.79250717163086 110.7564926147461 21.14479637145996 305684.0 0.004524887073785067 585.0635803222654 256.5046691894531 1.1189172368452427 562.8521728515625 1738.081298828125 1648.2896728515625 108158.0 869.9883697509765 2909.3127685546874 632.1275634765625 47.71870422363281 +sub-20104_ses-V1_task-rest_run-01_bold 0.001876968325791855 0.0062316537782805435 8 29.387864646848037 1.1040482845124717 1.0276567217460322 0.4996593358058795 5718.30322265625 0.1929749007900964 59 13.34841628959276 3.029714574073875 2.766758223392239 3.386470698767078 2.9359148000623065 0.0194245 0.009808213450014591 0.04170839115977287 442 90 90 60 2.610475164935418 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 26.487383677626152 30.883073806762695 109.05365753173828 21.486425399780273 306237.0 0.06787330657243729 572.1995605468754 245.6966552734375 1.1700766284431463 567.1121826171875 1753.399658203125 1662.5712890625 107810.0 882.8252685546875 2931.507812499999 636.881591796875 43.95539093017578 +sub-20104_ses-V1_task-rest_run-02_bold 0.001096764705882353 0.006347314253393665 8 28.25411547444445 1.0559193994331078 0.9905485179591842 0.5013002794272635 5496.15234375 0.15712927896710743 25 5.656108597285068 3.034921517706261 2.778845722911925 3.3869581987477066 2.9389606314591528 0.00778236 0.01007849257439375 0.041512567549943924 442 90 90 60 2.6096953490018486 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 24.855530479307568 31.349323272705078 112.05451202392578 21.86651611328125 306267.0 0.0859728530049324 592.656604003907 249.90689086914062 1.1650052601679421 566.672607421875 1747.167236328125 1656.1357421875 107724.0 883.9666564941407 2921.467504882812 634.6058959960938 43.58997344970703 +sub-20105_ses-V1_task-rest_run-01_bold 0.00706601809954751 0.004701037149321267 8 27.055340068526093 1.0120113405442184 1.0120108263265317 0.49108590418778836 7579.37158203125 0.15960806748082293 10 2.262443438914027 2.997847919285578 2.8092873883689484 3.3017540354667494 2.882502334021038 0.0118725 0.012228676117956638 0.04339832067489624 442 90 90 60 2.4162670032871856 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 18 32.58334385573872 27.673009872436523 109.97032928466797 19.131221771240234 309924.0 0.013914028182629063 643.4164154052718 263.2828674316406 0.9900134485166814 645.4182739257812 1821.6826171875 1710.6019287109375 104543.0 872.0070617675782 3138.9380126953124 707.948974609375 43.161041259765625 +sub-20112_ses-V1_task-cuff_run-01_bold 0.00039230425055928415 0.020791064429530198 3 64.15106757975337 1.0141105908520178 0.9839413641031386 0.5356255655937514 688.8658447265625 0.27575553743263764 0 0.0 2.5297290661442653 2.312454074777998 2.641716561694282 2.635016561960516 0.00491539 0.02035163901746273 0.058943476527929306 447 90 90 60 3.455245658276443 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 20.252434001045874 9.585504531860352 32.93999099731445 13.290827751159668 321063.0 5.402684688568115 138.53087463378853 55.06081008911133 0.9113247561376618 90.14353942871094 372.259521484375 361.0682373046875 96684.0 217.51678466796875 559.3265991210938 104.49803161621094 20.282373428344727 +sub-20112_ses-V1_task-cuff_run-02_bold 0.0005495973154362416 0.018909702460850112 3 63.56555194605384 1.03893573029148 1.005344842399103 0.5354434822059627 686.1568603515625 0.2653910626494741 0 0.0 2.4974540674267582 2.288308242404133 2.5992665633810934 2.6047873964950483 0.00955023 0.019147394225001335 0.0595078319311142 447 90 90 60 3.481936084636075 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 20.32053944216204 9.63525676727295 33.08414840698242 13.387024879455566 321534.0 5.407158851623535 139.36319656372063 55.22023391723633 0.9516937269029224 90.02415466308594 374.5664978027344 363.2953186035156 96181.0 221.8590545654297 561.3735961914062 104.33661651611328 20.988338470458984 +sub-20112_ses-V1_task-rest_run-01_bold 0.0009954565701559021 0.019754932962138084 1 64.20817010750004 1.0368433031473214 1.00645835685268 0.5349255822763008 697.6161499023438 0.30769755473002264 195 43.42984409799555 2.5214707331390884 2.3033957418046103 2.6266748956253174 2.634341561987338 0.0103278 0.020844265818595886 0.05899234488606453 449 90 90 60 3.4556351840110695 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 19.74217164878445 9.4635591506958 32.98829650878906 13.251670837402344 321138.0 5.429844379425049 139.22305145263664 55.406715393066406 0.9405443908080522 90.86965942382812 373.9830627441406 362.890869140625 96664.0 220.12840118408204 562.0947662353515 105.01368713378906 20.711395263671875 +sub-20112_ses-V1_task-rest_run-02_bold 0.0008849776785714285 0.021839906250000003 2 61.24285653977629 1.0303272141387014 0.9968936255480976 0.5364737724915669 662.510986328125 0.18174696377946142 47 10.491071428571429 2.5370846214075375 2.32392074098902 2.6507248946696564 2.6366082285639356 0.00666061 0.019108187407255173 0.060988470911979675 448 90 90 60 3.455096871129413 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 0 22.207617267012697 9.679937362670898 33.43254089355469 13.535715103149414 321357.0 5.4151787757873535 140.53125610351577 56.13729476928711 0.9603848774057426 89.59319305419922 372.8549499511719 361.79803466796875 96470.0 217.19153213500977 559.2370788574219 104.71375274658203 19.720428466796875 +sub-20116_ses-V1_task-rest_run-01_bold 0.001840452488687783 0.005410739208144796 8 31.119696043900248 1.0551729312018139 0.953874492312925 0.4881904359795048 5251.34619140625 0.13621974883546842 14 3.167420814479638 2.944457644262639 2.6136998961408975 3.340358200599424 2.8793148360475946 0.0136279 0.0012900842120870948 0.04467639699578285 442 90 90 60 2.6138788865494984 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 27.40985932404024 31.731714248657227 102.84175109863281 22.05203628540039 310568.0 0.027149323374032974 532.191418457031 234.63876342773438 1.1568021295923199 543.87353515625 1722.6446533203125 1638.1494140625 104046.0 838.2500457763672 2880.8372192382812 626.7090454101562 41.44569396972656 +sub-20121_ses-V1_task-cuff_run-01_bold 0.000795375854214123 0.006788121845102507 11 31.309353584520554 1.015960985182648 0.9771035611872146 0.46613106564351925 8037.3642578125 0.12069349721025466 0 0.0 2.4018534846132193 2.3602749062111017 2.4224915704055 2.4227939772230567 0.00333617 -0.008154911920428276 0.028636693954467773 439 90 90 60 2.8489956965634455 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 96.31448682837176 15.481204986572266 38.751365661621094 10.678815841674805 315555.0 0.0 162.7631072998047 93.26557159423828 2.4051328755386034 261.915771484375 1013.5910034179688 966.939697265625 100012.0 534.942495727539 1644.5310302734374 339.3949890136719 40.50484848022461 +sub-20121_ses-V1_task-cuff_run-02_bold 0.0006508390022675737 0.005831103741496598 9 31.30051352743182 1.0310289501136367 0.9906547182272729 0.4657574844507121 8046.255859375 0.11270356884587507 0 0.0 2.3877784816169236 2.34892490666211 2.4023540712056928 2.412056466982969 0.00493342 -0.007947204634547234 0.028229575604200363 441 90 90 60 2.8475332855736606 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 0 91.3210263086365 15.525300025939941 38.670230865478516 10.675737380981445 315668.0 0.0 163.52302322387686 92.43523406982422 2.3752585681481992 263.30645751953125 1014.4505004882812 967.853759765625 99830.0 537.2071502685546 1644.2454528808569 339.8902893066406 41.99617385864258 +sub-20121_ses-V1_task-rest_run-01_bold 0.0006684162895927603 0.005274242466063349 8 31.01295422312922 1.0375288623129253 0.997509922176871 0.46479673247419295 8340.3251953125 0.12297632330089388 6 1.3574660633484164 2.396515978341922 2.364987406023844 2.4213457371176985 2.4032147918842237 0.00586604 -0.006875862367451191 0.025319280102849007 442 90 90 60 2.8612053252068113 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 91.03896322588353 15.258728981018066 37.16632080078125 10.443439483642578 315360.0 0.0 156.8078071594238 87.26170349121094 2.4018722887150146 260.022216796875 1011.7546997070312 964.9344482421875 99943.0 536.5412231445313 1639.6665771484375 337.245849609375 42.337677001953125 +sub-20121_ses-V1_task-rest_run-02_bold 0.000687471783295711 0.005863263769751692 7 31.182553054162884 1.0356456703846149 0.9922681454298646 0.46556497031656074 8173.9892578125 0.12302746639904621 8 1.8058690744920993 2.3896715356913028 2.3523374065265097 2.408866570946909 2.4078106296004895 0.00535354 -0.007573364302515984 0.026134271174669266 443 90 90 60 2.849856863734168 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 84.03267213054018 15.461901664733887 38.108482360839844 10.59593677520752 315781.0 0.0 161.8148956298828 89.0859375 2.432983823506466 261.7278137207031 1013.1558837890625 966.43115234375 99841.0 538.853271484375 1644.458251953125 339.1139831542969 40.97186279296875 +sub-20128_ses-V1_task-cuff_run-01_bold 0.0014265837104072401 0.02091400316742081 8 68.02665262376414 1.122116226643991 0.9798896173015869 0.4686639183154283 5214.1904296875 0.5502024820345146 48 10.85972850678733 2.4594548574738 2.403379071164963 2.5936832302696216 2.3813022709868155 0.00257062 -0.0007954011671245098 0.012552552856504917 442 90 90 60 2.715674840544723 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 2 56.33560779227183 19.552236557006836 41.29093551635742 13.447964668273926 316818.0 0.009049774147570133 155.15713119506813 90.52413940429688 4.199353366985363 249.27842712402344 1040.611572265625 977.1900634765625 99169.0 575.9321533203125 1726.4937255859368 359.8314208984375 24.9959716796875 +sub-20128_ses-V1_task-cuff_run-02_bold 0.0017558690744920995 0.027233372686230252 7 75.96579417916287 1.1193070700000003 0.9874256042760183 0.46938289094035973 5201.083984375 0.725235227793356 130 29.345372460496613 2.5033951475071334 2.432312403348589 2.654287394528095 2.4235856446447164 0.00629629 -0.0010753795504570007 0.01487711537629366 443 90 90 60 2.6925545247113027 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 1 103.52576506986811 19.660377502441406 41.68206787109375 13.556434631347656 316000.0 0.022573363035917282 152.4425567626953 95.76346588134766 4.172888762406411 251.8416290283203 1036.560791015625 973.61962890625 99772.0 567.8161834716797 1725.0407897949217 361.5951843261719 20.904191970825195 +sub-20128_ses-V1_task-rest_run-01_bold 0.0022023755656108597 0.016501346153846155 8 65.44919702517012 1.13146395276644 1.0153921076417236 0.468096646186316 5315.9599609375 0.5951872130205826 335 75.7918552036199 2.4601229117486274 2.4178290705907712 2.5850248972803396 2.3775147673747705 0.00272583 -0.0007353337714448571 0.01326840091496706 442 90 90 60 2.7306830017332433 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 5 118.34776521950566 19.24699592590332 41.26540756225586 13.423077583312988 316996.0 0.04751131311058998 153.92591094970703 94.03417205810547 3.6223367751732125 252.08609008789062 1043.4283447265625 981.4457397460938 99095.0 574.6873535156251 1731.4706420898435 359.4122009277344 26.600805282592773 +sub-20128_ses-V1_task-rest_run-02_bold 0.0018307174887892378 0.025437639910313902 4 83.54967647961786 1.15358091011236 0.998198984247192 0.47093487901712194 4991.4619140625 0.818913184646828 380 85.20179372197309 2.489990976437776 2.4307915700756877 2.6304998954733256 2.408681463764315 0.00808574 -0.0006018131971359253 0.0137449000030756 446 90 90 60 2.751948422586247 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 3 96.68426760629227 19.902109146118164 41.83124923706055 13.79820728302002 315920.0 0.03139013797044754 153.84787063598625 94.69850158691406 3.6680563345846267 251.84130859375 1036.1868896484375 976.9888305664062 99750.0 565.140625 1708.036761474609 355.0153503417969 21.265148162841797 +sub-20130_ses-V1_task-rest_run-01_bold 0.0009336629213483147 0.010505293528089887 5 41.58042882819818 1.116955220292793 1.007301802297297 0.43296220155711423 6868.80224609375 0.23233972508677214 138 31.01123595505618 2.4262508128259985 2.481924901377165 2.3826582386550013 2.4141692984458296 0.00532482 0.0011255346471443772 0.011453753337264061 445 90 90 60 3.2875713591176643 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 178.72131431160122 16.298629760742188 31.9576416015625 11.294382095336914 336157.0 0.008988764137029648 113.23460998535161 77.27651977539062 2.211239736895723 218.01573181152344 953.8340454101562 925.6449584960938 82575.0 535.171923828125 1458.3510253906252 281.55718994140625 35.206050872802734 +sub-20132_ses-V1_task-cuff_run-01_bold 0.000785111111111111 0.015394329333333333 0 60.00158286151446 1.0408170316703778 0.9956350532516707 0.5034979039583761 1112.06396484375 0.32501159461236384 3 0.6666666666666666 2.71754164972833 2.596479063491859 2.8066165551417446 2.7495293305513857 0.0061328 -0.025502638891339302 0.08244313299655914 450 90 90 60 2.6424718830240805 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 0 85.09219165962877 7.330644607543945 24.17792510986328 11.426667213439941 311141.0 5.5822224617004395 82.15111541748047 41.56306457519531 3.3783154636969215 116.45015716552734 434.111083984375 402.4311218261719 104834.0 247.50289306640627 720.2129028320311 152.29270935058594 22.002782821655273 +sub-20132_ses-V1_task-cuff_run-02_bold 0.000697661469933185 0.018913614699331848 1 63.07022918136157 1.023203708191964 0.9890926944866075 0.5039426816814848 1113.96630859375 0.3829990312426666 15 3.34075723830735 2.712769428111453 2.57250823111104 2.80371655525698 2.762083497966339 0.013708 -0.024669714272022247 0.08323744684457779 449 90 90 60 2.671243058910967 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 83.02847678257825 7.221495628356934 23.939565658569336 11.31180477142334 311507.0 5.630289554595947 81.62026977539075 40.65763854980469 3.1288182585227053 115.27974700927734 427.8017578125 397.3363037109375 104501.0 243.3942108154297 707.6748657226562 148.74513244628906 19.541370391845703 +sub-20132_ses-V1_task-rest_run-01_bold 0.0007662723214285714 0.01665684955357143 2 61.92537675574944 1.0380645128859052 0.9933160295302006 0.5009341869754347 1175.0848388671875 0.33534785466119954 231 51.5625 2.701636094411579 2.5790540641842656 2.7881998892068904 2.7376543298435805 0.00279309 -0.02418369986116886 0.07953214645385742 448 90 90 60 2.6734991307450997 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 89.05783357501322 6.933150768280029 23.42279815673828 11.131696701049805 311597.0 5.569196701049805 80.13660888671879 40.56004333496094 3.1849545887972104 116.51335906982422 432.91790771484375 402.4464416503906 104351.0 244.12612915039062 714.5078430175781 150.531005859375 21.42608642578125 +sub-20132_ses-V1_task-rest_run-02_bold 0.0014777455357142856 0.020283600669642857 2 64.33904655507824 1.0238117754138696 0.9901704007829975 0.5041190415315256 1128.0308837890625 0.40669083271481515 260 58.035714285714285 2.725662483731553 2.582249897390608 2.815233221466016 2.779504332338035 0.00606728 -0.023847736418247223 0.08107895404100418 448 90 90 60 2.706783358441222 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999998569488525 2 82.29916680047737 7.267399311065674 24.045555114746094 11.337054252624512 311709.0 5.5870537757873535 82.68527221679688 40.59709167480469 3.0493342958728347 114.85038757324219 430.1681213378906 400.6339416503906 104382.0 245.8103843688965 709.044479370117 148.0103759765625 19.405656814575195 +sub-20133_ses-V1_task-cuff_run-01_bold 0.010233015873015875 0.009391154671201815 9 32.6633095653182 1.0904887091590916 1.0649157124545447 0.42566640264094163 10579.8291015625 0.2844361619828133 11 2.494331065759637 2.8949146200633007 2.685508226620824 3.2678332034813087 2.73140243008777 0.0337922 -0.019152231514453888 0.03064887784421444 441 90 90 60 2.6384980320372824 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 34.84201503230831 22.909732818603516 61.153812408447266 15.808389663696289 337622.0 0.04988662153482437 297.2409439086918 132.8647003173828 0.576402474702927 532.0103759765625 1739.971435546875 1635.802734375 82070.0 888.9681427001954 2935.2476562500005 619.97119140625 32.46954345703125 +sub-20133_ses-V1_task-cuff_run-02_bold 0.005087237442922374 0.00674037611872146 12 29.394784359885584 1.075415012974828 1.0348175137757438 0.42604592133552455 10552.099609375 0.22024621656396753 5 1.1415525114155252 2.8875215650788455 2.6847623933171274 3.2477957042775274 2.7300065976418826 0.0176307 -0.019659345969557762 0.030769703909754753 438 90 90 60 2.628127126024679 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 8 32.633467123305216 22.861860275268555 62.59041976928711 15.792236328125 337675.0 0.054794520139694214 308.2266998291015 135.7919158935547 0.5791204301822774 537.8985595703125 1743.8096923828125 1636.86865234375 81886.0 895.2408447265625 2951.2509765625 622.8232421875 37.93280029296875 +sub-20133_ses-V1_task-rest_run-01_bold 0.005808724373576311 0.005700621435079727 11 30.18047670276253 1.0788157017808218 1.0245065660045656 0.425960442706357 10693.994140625 0.22758592736792171 78 17.767653758542142 2.8623090729873844 2.6620665608856453 3.229616538333236 2.695244119743271 0.01207 -0.01847022958099842 0.029425563290715218 439 90 90 60 2.647504874197948 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 35.583511920540715 22.921234130859375 60.40182113647461 15.6810941696167 336926.0 0.013667427003383636 293.19933319091797 132.3671875 0.6004772965675609 528.7300415039062 1741.0040283203125 1639.650390625 82532.0 885.720425415039 2931.561694335937 619.3153686523438 41.72735595703125 +sub-20133_ses-V1_task-rest_run-02_bold 0.0015520720720720719 0.0066161307882882875 6 30.666010682099294 1.0485282907223483 0.9950163941309264 0.42441318858371324 10570.8955078125 0.24937394315679165 124 27.92792792792793 2.865800725215994 2.6630832275119136 3.167104040817259 2.76721490731881 0.0113325 -0.01913600042462349 0.030022893100976944 444 90 90 60 2.649070389310617 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 28.840553186707986 22.823394775390625 62.196956634521484 15.668919563293457 338564.0 0.03378378599882126 304.31226806640575 133.14048767089844 0.6796676780819295 515.2059326171875 1727.8570556640625 1620.277099609375 81048.0 901.4419158935547 2914.5777587890616 611.6361083984375 40.45895767211914 +sub-20134_ses-V1_task-cuff_run-01_bold 0.0019721719457013575 0.017239258733031674 8 48.920734068163256 1.0695407409750577 1.0222234733333333 0.44769354464521666 5834.30419921875 0.44681917000935006 23 5.203619909502263 2.3528299847454885 2.323787407660985 2.332287407323225 2.402415139252256 0.00924917 3.3937962143681943e-05 0.020886629819869995 442 90 90 60 3.1710466894772424 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 9 130.42992296260996 16.060407638549805 36.32600784301758 11.321267127990723 331721.0 0.0656108632683754 133.73077392578125 93.34994506835938 2.2116375016116603 213.90899658203125 893.7357788085938 857.408447265625 86482.0 510.13882293701175 1382.377703857422 270.385009765625 25.22271156311035 +sub-20134_ses-V1_task-cuff_run-02_bold 0.007830427927927928 0.02244544545045045 6 52.5486038933183 1.0940145972009028 1.070029262347629 0.44945877462133826 5755.35791015625 0.48019467538085137 29 6.531531531531532 2.361432761119302 2.330112407409652 2.3464249067614515 2.4077609691868025 0.00500502 0.0006335024954751134 0.020900409668684006 444 90 90 60 3.1947336041571863 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 16 106.78767122758812 16.218467712402344 36.46133804321289 11.457207679748535 331177.0 0.0855855867266655 133.89955444335968 92.81640625 2.095150021146302 213.37120056152344 890.3715209960938 855.0112915039062 86955.0 508.5558715820313 1377.9405883789063 267.62994384765625 22.01349639892578 +sub-20134_ses-V1_task-rest_run-01_bold 0.0032622471910112353 0.022568263820224723 5 53.84750695290536 1.0161518920495498 0.9587063013513509 0.4486524779274982 5523.26416015625 0.5507892168021209 296 66.51685393258427 2.3652647065489334 2.3419457402727706 2.3518124065473716 2.402035972826657 0.0037202 -0.00016840531316120178 0.016120092943310738 445 90 90 60 3.1851596832211464 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 24 68.66911822512407 16.491867065429688 35.944759368896484 11.667415618896484 331988.0 0.1033707857131958 133.65236053466782 86.19405364990234 2.1552566292692497 214.7473907470703 897.5935668945312 860.7123413085938 86477.0 513.4476318359375 1388.4292236328124 270.2242431640625 22.45532989501953 +sub-20134_ses-V1_task-rest_run-02_bold 0.0035589414414414415 0.019328657477477477 6 52.4911169692551 1.0939552076975168 1.055062459367946 0.4509447013044698 5507.51123046875 0.5026858142823774 262 59.009009009009006 2.348139711401742 2.33040824073123 2.3329749072959065 2.3810359861780888 0.00351717 -0.0001604940480319783 0.015855824574828148 444 90 90 60 3.228509066005032 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 17 68.68669017050144 16.40880012512207 36.443817138671875 11.619369506835938 331665.0 0.11486487090587616 137.33694458007807 86.10050964355469 2.1493690347076155 209.87173461914062 892.6621704101562 857.8018188476562 86631.0 513.6486511230469 1373.788330078125 265.6944274902344 24.739238739013672 +sub-20136_ses-V1_task-cuff_run-01_bold 0.0005008126410835214 0.004453043295711061 7 35.307707734796374 1.1000389769683256 0.9845347423981908 0.455385578195656 7123.99609375 0.21839558611458337 0 0.0 2.904595169034479 2.705266559169032 3.2459123710190307 2.762606576915374 0.023843 -0.00638068001717329 0.02585122175514698 443 90 90 60 2.484360561529363 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 40.81423630959032 27.54360580444336 88.02869415283203 18.934537887573242 328371.0 0.011286681517958641 460.9684143066406 200.927978515625 1.0164589999856153 571.6552124023438 1724.931884765625 1635.135498046875 89791.0 776.4424743652344 2956.0079345703125 658.1679077148438 45.41656494140625 +sub-20136_ses-V1_task-cuff_run-02_bold 0.0008334762979683971 0.004715254176072234 7 35.34899148920813 1.1141135768778283 1.0043919042307685 0.45618901312062216 7136.0634765625 0.21259851920404085 0 0.0 2.9218326654976075 2.7224207251540533 3.266116536882856 2.7769607344559133 0.0210504 -0.00673492019996047 0.025867749005556107 443 90 90 60 2.457904148534425 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 38.82043802347883 27.724327087402344 88.84190368652344 18.914220809936523 327864.0 0.0 466.2818267822265 201.12979125976562 1.0668476398733864 578.1829833984375 1729.1781005859375 1638.320556640625 90246.0 775.3448333740234 2977.6705932617188 666.5481567382812 44.8322868347168 +sub-20136_ses-V1_task-rest_run-01_bold 0.0002766893424036281 0.0033995952154195013 9 33.79956843624997 1.1046972475681816 0.988105515477273 0.4551316563854819 7216.7236328125 0.18520111111227475 43 9.750566893424036 2.901446558671847 2.701054059336421 3.2438165377689785 2.7594690789101417 0.0234389 -0.005890085361897945 0.024719620123505592 441 90 90 60 2.4768648572600855 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 38.62248163353462 27.54244613647461 87.34086608886719 18.79024887084961 327940.0 0.0 455.7148605346679 200.10020446777344 1.0003945123701499 575.6934204101562 1727.959716796875 1638.2947998046875 90073.0 774.4925415039063 2964.7950195312496 661.4352416992188 48.97406768798828 +sub-20136_ses-V1_task-rest_run-02_bold 0.0007087191011235956 0.004566497977528091 5 34.97728502869368 1.105443405698198 0.9973314998423419 0.45681394855526797 7212.25439453125 0.21587913437697934 101 22.696629213483146 2.9186771098563433 2.718037391994898 3.259970703793736 2.7780232337803943 0.0195996 -0.006072074640542269 0.02501041255891323 445 90 90 60 2.46265235838619 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 34.66612641766371 27.60305404663086 89.58557891845703 18.883146286010742 327915.0 0.004494382068514824 471.3258361816406 201.7509765625 1.0562130262851372 577.0721435546875 1726.6278076171875 1636.36865234375 90310.0 774.4568756103515 2967.4960205078132 664.4703979492188 46.0367431640625 +sub-20139_ses-V1_task-cuff_run-01_bold 0.0005449321266968326 0.002830821334841629 8 34.11630644752836 1.1177055292517015 0.9998610172108846 0.4503829387490773 8642.701171875 0.24096643354301361 0 0.0 2.947929854554282 2.6849790599751846 3.2201415387097385 2.9386689649779223 0.00912116 -0.0030984601471573114 0.02713765576481819 442 90 90 60 2.630940921058657 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 35.45409568551284 23.688093185424805 60.89866638183594 16.18099594116211 323924.0 0.0 294.55160675048785 136.03421020507812 0.5823894454743428 524.5006713867188 1609.4234619140625 1540.530517578125 92754.0 728.4960662841797 2682.800061035153 585.5404052734375 50.885292053222656 +sub-20139_ses-V1_task-cuff_run-02_bold 0.001015349887133183 0.0034142560948081263 7 32.88930806214929 1.1073750498868788 1.0027163002488682 0.4507319140786698 8488.27734375 0.2184814538130194 0 0.0 2.9370256919932136 2.6818665600988645 3.2090248724848083 2.9201856433959685 0.0111636 -0.0031617232598364353 0.027213256806135178 443 90 90 60 2.631260868434134 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 33.92382916040254 24.042922973632812 62.1945915222168 16.408578872680664 324431.0 0.0 301.9729309082031 138.42845153808594 0.5611686323756073 530.2579345703125 1618.572509765625 1548.9515380859375 92510.0 735.947866821289 2701.073107910156 588.6695556640625 51.068119049072266 +sub-20139_ses-V1_task-rest_run-01_bold 0.0008635214446952596 0.00381143546275395 7 33.43160870923076 1.109933571674208 1.0018244834841632 0.4507203600211603 8770.12890625 0.24279667222977053 148 33.408577878103834 2.9619201284010255 2.69865822609829 3.231445704927218 2.955656454177568 0.0133298 -0.004073137417435646 0.028588837012648582 443 90 90 60 2.619027396188216 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 33.271840216924986 23.66474151611328 61.7548713684082 16.23702049255371 324040.0 0.0022573363967239857 296.485659790039 136.51727294921875 0.5640900450249875 530.490478515625 1615.9276123046875 1547.7088623046875 92812.0 726.8467498779297 2702.214306640625 590.9447631835938 47.86369705200195 +sub-20139_ses-V1_task-rest_run-02_bold 0.00043641083521444695 0.002832231738148984 7 33.31101956067877 1.1020209430542995 0.9949623458597282 0.4512035977782938 8618.2822265625 0.21751528881513899 106 23.927765237020317 2.951188189033017 2.7002832260337186 3.221029038674472 2.93225230239086 0.0116487 -0.003300114767625928 0.026356106624007225 443 90 90 60 2.6148824080662414 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 35.437664372472966 23.798612594604492 62.525535583496094 16.313770294189453 323975.0 0.0022573363967239857 303.8708862304686 139.46388244628906 0.5548158227903071 533.7400512695312 1619.9500732421875 1550.9593505859375 92989.0 723.6000122070313 2705.33232421875 593.1245727539062 51.467018127441406 +sub-20142_ses-V1_task-cuff_run-01_bold 0.0012184126984126984 0.005235773696145125 9 34.929038667681795 1.066512553249999 0.9927620519318187 0.48868142993265157 4725.13427734375 0.2941039295910303 6 1.3605442176870748 2.995195096907276 2.6719165604942416 3.2061540392655514 3.107514690962034 0.00766792 -0.010433772578835487 0.047772765159606934 441 90 90 60 2.3544611787166363 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 48.932578832700806 31.706172943115234 82.64409637451172 21.96145248413086 304850.0 0.03401360660791397 386.1204132080072 180.69842529296875 0.9022925759956641 582.4879150390625 1620.7213134765625 1533.2686767578125 111370.0 702.3196166992188 2827.2860229492185 651.215576171875 40.494014739990234 +sub-20142_ses-V1_task-cuff_run-02_bold 0.0024880454545454546 0.004610707931818182 10 33.446651745421434 1.0924135665603638 1.0181997822779036 0.48894118226258737 4502.6572265625 0.2487009061349727 4 0.9090909090909091 2.989395098175861 2.6692665605995436 3.196629039644041 3.1022896942839977 0.00821759 -0.010328617878258228 0.047552723437547684 440 90 90 60 2.3558483912148853 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 50.070048997770236 32.411705017089844 83.49830627441406 22.497726440429688 304767.0 0.0181818176060915 392.0936187744145 183.05865478515625 0.9360684562565318 583.8825073242188 1626.792724609375 1538.390869140625 111227.0 710.4024841308594 2837.593017578125 653.00634765625 41.79944610595703 +sub-20142_ses-V1_task-rest_run-01_bold 0.0018972108843537416 0.0042371248979591845 9 33.99815958186365 1.0808100283181823 1.003035073954546 0.4888894564588296 4730.205078125 0.26323498388094047 154 34.92063492063492 2.9830131566539735 2.6660957273922072 3.194087373078371 3.0888563694913422 0.0144542 -0.01075450237840414 0.04628443717956543 441 90 90 60 2.3593049227507126 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 47.681509021743956 31.907888412475586 82.0356216430664 22.174604415893555 304407.0 0.024943310767412186 385.56643371582044 178.76318359375 0.944662653016537 582.1903076171875 1628.0438232421875 1540.12353515625 111692.0 710.8634857177735 2842.057421875 652.7840576171875 42.57167053222656 +sub-20142_ses-V1_task-rest_run-02_bold 0.0013787074829931972 0.006035489591836735 9 37.898448857613644 1.0568717195681823 0.988273318772728 0.4916879989624501 4290.29736328125 0.3652164180513226 209 47.39229024943311 3.012013149148759 2.6848082266486393 3.230399871635442 3.1208313491621977 0.00880426 -0.010852831415832043 0.046516310423612595 441 90 90 60 2.354540730156254 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 42.93580958278384 33.234161376953125 84.88162994384766 23.221088409423828 303812.0 0.05895691737532616 396.20317840576195 181.04945373535156 0.9310629148050773 583.8394165039062 1623.916748046875 1537.7369384765625 112213.0 701.6648681640625 2831.5510742187485 653.09130859375 35.60991668701172 +sub-20143_ses-V1_task-cuff_run-01_bold 0.004650498866213153 0.006396249115646259 9 33.311635802136344 1.0267316908181823 0.9939464503863635 0.5153931806014556 1872.0811767578125 0.25507354731726445 10 2.2675736961451247 2.9671201473332687 2.7114498922566614 3.3305832009878475 2.859327348755297 0.0175416 0.04950699955224991 0.022948499768972397 441 90 90 60 2.3232297584773467 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 10 21.538007830169697 52.116329193115234 154.41758728027344 37.21088409423828 308518.0 0.03401360660791397 764.6620147705069 317.64605712890625 1.0643439862080513 610.1075439453125 1758.245361328125 1634.9796142578125 106662.0 819.6176147460938 3102.4401367187497 703.7495727539062 38.99783706665039 +sub-20143_ses-V1_task-cuff_run-02_bold 0.004859389140271494 0.005991454049773756 8 33.83776675104308 1.0812617458049891 1.026981556077098 0.5159483102719815 1844.1402587890625 0.2824048063564545 10 2.262443438914027 2.967399314650288 2.7151498921096366 3.3310498676359703 2.855998184205256 0.0150369 0.04875662177801132 0.024088814854621887 442 90 90 60 2.3163080541343417 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 14 20.3839334553755 52.085628509521484 154.86170959472656 37.26018142700195 308599.0 0.031674209982156754 772.637573242185 315.4388732910156 1.068811500159386 608.5479736328125 1751.214111328125 1627.94580078125 106689.0 811.336669921875 3095.18115234375 702.81591796875 41.22764587402344 +sub-20143_ses-V1_task-rest_run-01_bold 0.004070566893424036 0.007713790158730157 9 32.3924241021818 1.0639349346590927 1.0160406532500001 0.5137190190647318 1916.1632080078125 0.2531723005742729 119 26.984126984126984 2.9606243176439295 2.7116915589137256 3.3278957010946395 2.842285692923423 0.0131416 0.048242684453725815 0.02233916148543358 441 90 90 60 2.3102860906911094 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 21.80518585716841 51.825523376464844 153.12474060058594 36.937644958496094 308880.0 0.01587301678955555 759.2530456542945 316.3783874511719 1.0877854777889118 617.001220703125 1773.8905029296875 1648.9229736328125 106457.0 819.284814453125 3133.4699218749997 713.7277221679688 42.6235237121582 +sub-20143_ses-V1_task-rest_run-02_bold 0.006600564334085779 0.00705154704288939 7 33.150921480565636 1.0891371486199086 1.0459201784841623 0.5168505430868553 1795.2984619140625 0.24564742755061428 104 23.47629796839729 2.959168762753848 2.7134623921766923 3.3248165345503278 2.8392273615345243 0.0176037 0.04938582330942154 0.022968027740716934 443 90 90 60 2.303755264460025 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 21 19.828258223267536 53.08251953125 156.59954833984375 37.8893928527832 308932.0 0.08803611993789673 779.5440063476562 316.3604431152344 1.0914914627515708 610.0892333984375 1751.88525390625 1627.1884765625 106572.0 805.0959442138671 3100.4289306640626 706.3167114257812 40.801239013671875 +sub-25002_ses-V1_task-cuff_run-01_bold 0.006146305084745763 0.01379611193220339 6 41.26050275023806 1.1505289908503407 1.1403450967346942 0.4378760726775956 11375.8779296875 0.22801856091119127 8 2.711864406779661 2.366641100654825 2.3686499058783093 2.3557707397234147 2.3755026563627517 0.0183022 -0.0007637282251380384 0.012650568038225174 295 90 90 60 2.7831906928936947 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 29 105.05101396392078 13.966615676879883 33.76871871948242 9.606779098510742 328106.0 0.013559321872889996 130.7618637084961 81.53520965576172 3.7915902054014836 269.1752014160156 1064.65673828125 1008.4609985351562 89425.0 581.2067626953125 1742.1389648437503 362.3378601074219 28.26275634765625 +sub-25002_ses-V1_task-rest_run-01_bold 0.004798659090909091 0.01075457334090909 10 39.208032433986325 1.1774386489066055 1.1119453800683374 0.4392121175591456 12197.611328125 0.19435199704736886 70 15.909090909090908 2.3624744370164037 2.375562405603631 2.3507665732555956 2.3610943321899844 0.011659 0.00019548954151105136 0.010675421915948391 440 90 90 60 2.786772346483339 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 20 76.15990627024266 13.427659034729004 33.24916076660156 9.22499942779541 327100.0 0.00909090880304575 129.0955574035644 78.41519165039062 3.711683593474742 268.4722595214844 1064.8104248046875 1009.7249755859375 89993.0 579.7158935546875 1740.9122558593745 362.32574462890625 31.747825622558594 +sub-25002_ses-V1_task-rest_run-02_bold 0.002611255605381166 0.012416255313901347 4 38.57261244537078 1.131311043730337 1.0561968348089894 0.44136561200949265 11771.3994140625 0.18295101492486707 77 17.26457399103139 2.382074431590066 2.3872749051382183 2.3744624056473413 2.3844859839846393 0.0151295 -0.00048050351324491203 0.010150897316634655 446 90 90 60 2.7712918813703293 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 2 71.95019293835674 13.629303932189941 34.12355422973633 9.383408546447754 326746.0 0.013452915474772453 133.6126708984375 79.39266204833984 3.7218509393294505 268.0335998535156 1063.14208984375 1008.009033203125 90502.0 574.7457885742188 1745.2928466796873 363.73052978515625 29.439498901367188 +sub-25004_ses-V1_task-rest_run-01_bold 0.0010859101123595507 0.023908986966292137 5 63.51791533063064 1.051836591261262 0.9554468261711713 0.43876244540889736 5327.6630859375 0.6227904951318316 324 72.80898876404494 2.4301910962230555 2.4268707368981546 2.4786040681757897 2.3850984835952227 0.00487925 0.00313338590785861 0.014043692499399185 445 90 90 60 2.4949743516418397 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 6 245.0716599081101 17.424741744995117 33.82537841796875 12.267416000366211 330096.0 0.06516853719949722 117.31741523742676 83.43281555175781 6.1978307876244685 233.53981018066406 944.1082153320312 881.91796875 88350.0 484.19797821044915 1581.5822937011721 353.47576904296875 20.628053665161133 +sub-25005_ses-V1_task-rest_run-01_bold 0.001450907029478458 0.005543097029478458 9 32.319056497636396 1.0641656424318175 1.030944823681818 0.4834992211756127 3412.768310546875 0.22886610436074942 106 24.03628117913832 2.969343747382979 2.696674892843767 3.2967998689969433 2.914556480308227 0.00894358 -0.018412087112665176 0.04899877682328224 441 90 90 60 2.3183033960535053 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 26.491223110827665 34.906707763671875 100.2840576171875 24.625850677490234 321980.0 0.15419501066207886 482.63345336914045 197.64356994628906 1.1712017562297126 545.5725708007812 1536.4241943359375 1449.466064453125 95754.0 656.0292541503907 2719.0193359375 625.2238159179688 38.07798385620117 +sub-25008_ses-V1_task-rest_run-01_bold 0.0026925675675675675 0.01301890873873874 6 38.33094112911961 1.0513241619864553 1.01090152214447 0.4421549253086139 7185.36083984375 0.2734862017011087 150 33.78378378378378 2.4886396818800747 2.507658233687948 2.4567374023780264 2.5015234095742485 0.00564537 -0.009138401597738266 0.014639029279351234 444 90 90 60 3.221426532904743 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 73.33181948655957 15.036392211914062 35.606143951416016 10.306306838989258 335836.0 0.006756756920367479 145.53884887695312 81.69833374023438 2.2887773737105714 215.13922119140625 898.77294921875 874.450439453125 82858.0 487.9558639526367 1368.242999267578 271.4465637207031 29.20392608642578 +sub-25009_ses-V1_task-cuff_run-01_bold 0.0007955909090909092 0.007952343795454545 10 39.12549716186789 1.016055199589977 0.9919697574487474 0.4653553925511801 4784.017578125 0.16482073928642513 0 0.0 2.4169771830844202 2.366912405947351 2.374224905656779 2.509794237649131 0.0051532 0.013605902902781963 0.02332794852554798 440 90 90 60 2.535019754914635 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 1 72.577505216341 16.237863540649414 35.130531311035156 11.347726821899414 316947.0 0.011363635770976543 140.7395416259766 81.48577117919922 2.6240601264126004 239.55148315429688 845.5477905273438 794.2545166015625 99231.0 412.8340759277344 1433.1613159179688 313.3113708496094 32.084476470947266 +sub-25009_ses-V1_task-cuff_run-02_bold 0.0013526696832579187 0.009861541312217195 8 38.594784933333315 1.0136747420181402 0.9991104151927436 0.4652220929617649 4721.49755859375 0.1611857444124724 1 0.22624434389140272 2.445311897436295 2.3817790720232694 2.410416570885318 2.543740049400298 0.00625927 0.013939924538135529 0.0238348338752985 442 90 90 60 2.5052193354729964 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 0 70.29620602824407 16.23818588256836 34.78226852416992 11.368779182434082 316525.0 0.024886878207325935 138.92670593261712 79.3507308959961 2.597813152825588 241.44952392578125 839.4747314453125 788.4118041992188 99595.0 400.8509155273438 1431.4290649414054 314.70611572265625 29.265117645263672 +sub-25009_ses-V1_task-rest_run-01_bold 0.004537358916478555 0.007981586072234764 7 38.964757082104086 1.0490375921719453 1.0584488867647064 0.46419067936501407 4700.560546875 0.14179175773496894 11 2.4830699774266365 2.4296980150678746 2.383191571967142 2.391858238289426 2.5140442349470553 0.00541053 0.01131980586796999 0.02264946512877941 443 90 90 60 2.4879652437653563 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 11 67.8251173302473 16.42576026916504 35.42916488647461 11.575620651245117 317362.0 0.027088036760687828 140.44244384765625 80.45189666748047 2.614994948907949 245.55979919433594 854.0602416992188 800.6343383789062 99081.0 408.0045166015625 1460.74951171875 321.8012390136719 30.87508773803711 +sub-25009_ses-V1_task-rest_run-02_bold 0.006132757847533632 0.009521849573991032 4 38.66256620444945 1.0700851739101123 1.1182828454606732 0.4652918987258848 4830.96923828125 0.16166859174466275 12 2.690582959641256 2.4328799558683802 2.3717915724201375 2.3950999048272807 2.531748390357723 0.00293253 0.013373869471251965 0.022896986454725266 446 90 90 60 2.52053258183956 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 3 67.39550138647972 16.262086868286133 35.64196014404297 11.434978485107422 317301.0 0.02466367930173874 142.77578735351562 81.51463317871094 2.6650105989116017 241.47467041015625 847.6620483398438 795.1357421875 98968.0 412.9045074462891 1441.735400390625 315.4617919921875 29.149843215942383 +sub-NSphantom_ses-220629_task-rest_bold 0.00039240534521158124 0.0008957082427616927 1 6.853867672299111 0.7649754337723219 0.7798281331919633 0.5876490052834367 3781.06689453125 0.010549478632249377 0 0.0 3.863767902023213 2.8995498847822394 3.6477956883829554 5.043958132904445 0.706399 -0.01018706988543272 0.022441133856773376 449 90 90 54 3.792936426420077 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 13.43555831258736 12.805192947387695 26.34017562866211 17.55902099609375 214528.0 6.857461452484131 71.35924224853512 25.33022689819336 0.5691462276975146 292.2030944824219 1126.6259765625 1110.07568359375 157388.0 674.0696075439453 1627.0639892578122 292.66827392578125 48.886634826660156 +sub-NSphantom_ses-220707_task-rest_bold 0.00035608017817371937 0.0008341083652561247 1 6.834286408660715 0.761982833883929 0.7767336422767859 0.5871835842172533 3813.546875 0.007641296613726071 0 0.0 3.878205401449519 2.9096040510493895 3.6630956877749887 5.061916465524178 0.70772 -0.010104446671903133 0.02226935513317585 449 90 90 54 3.7467254691869543 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 3 13.66288707478925 12.570751190185547 26.153379440307617 17.456571578979492 214242.0 6.902004718780518 70.50512390136703 25.151304244995117 0.5779349000689047 294.114990234375 1129.531982421875 1111.4354248046875 157642.0 675.0338928222656 1638.2371765136716 296.640869140625 48.909141540527344 +sub-NSphantom_ses-220714_task-rest_bold 0.0004394432071269488 0.0010345576636971048 1 6.854289066741073 0.7745203601562501 0.7915423641517855 0.5879664670145839 3955.32421875 0.011564124822622979 0 0.0 3.8585498466750052 2.889312385189041 3.6628790211169315 5.023458133719042 0.694498 -0.00958002544939518 0.021490903571248055 449 90 90 54 3.8114037630154494 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 15.065747064402487 12.065542221069336 25.619693756103516 17.0913143157959 213910.0 6.886414527893066 69.017822265625 24.637069702148438 0.8908948738057663 281.5210876464844 1120.1937255859375 1105.87646484375 157892.0 672.7998138427735 1613.8899169921851 290.1484680175781 50.59397888183594 +sub-NSphantom_ses-220718_task-rest_bold 0.0002023162583518931 0.0006760790311804009 1 6.832922945066968 0.780254745446429 0.7883983856919646 0.5850418401585424 4176.74169921875 0.0114824973404839 0 0.0 3.8230429036414795 2.8794665522469463 3.607370689989301 4.982291468688191 0.722777 -0.009325502440333366 0.02066141925752163 449 90 90 54 3.8720975124205372 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000000953674316 1 14.886922284385815 11.596656799316406 25.220470428466797 16.846324920654297 215432.0 6.873051643371582 68.06559295654293 24.393342971801758 0.9118090992969576 276.8008728027344 1124.2471923828125 1113.5501708984375 156497.0 673.5977905273438 1611.6936279296867 287.582275390625 51.712337493896484 +sub-UCphantom_ses-220701_task-rest_bold 0.0004772888888888889 0.015413431111111112 0 17.47773558329618 1.0670857167260572 1.0073023437861912 0.6003358127093112 3672007.5 0.09144847193982268 2 0.4444444444444444 2.934746632608372 2.778118309859155 2.5518557746478874 3.474265813318074 0.0687994 -0.0010936682811006904 0.0059297396801412106 450 96 96 54 10.15191066972149 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 49.23124706979143 17.003854751586914 66.81013488769531 11.733318328857422 236761.0 0.05673065409064293 296.2857360839844 204.5808563232422 3.5214590641935324 1757.0718994140625 24824.384765625 24563.0390625 189249.0 21435.592578125 29391.276953125 2419.5419921875 78.43820190429688 +sub-UCphantom_ses-220707_task-rest_bold 0.00041419999999999993 0.013286826888888888 0 18.162301575501104 1.074164827193764 1.0091573668151448 0.6013949092184153 3972464.0 0.08572255772119247 1 0.2222222222222222 2.991383221098072 2.8427718309859156 2.607661971830986 3.523715860477315 0.0166867 -0.001093959785066545 0.006221253424882889 450 96 96 54 9.508077206093851 0.7999997138977051 2.21875 2.21875 2.3999977111816406 0 45.2550353344258 15.387222290039062 70.23654174804688 10.653606414794922 235782.0 0.030644927360117438 353.161636352539 214.87109375 3.0823721587382025 1873.87451171875 23390.259765625 23168.5546875 190118.0 19971.6103515625 27933.802246093746 2436.717041015625 80.1343994140625 +sub-UCphantom_ses-220722_task-rest_bold 0.00041393333333333333 0.010612300133333334 0 15.931787650000008 1.0588442170824055 1.0077057310467705 0.5989443502720063 5874391.0 0.08624185609659155 1 0.2222222222222222 2.9966462762814294 2.904441690140845 2.5629521126760566 3.5225450260273865 0.0307722 -0.0014144304441288114 0.006347068585455418 450 96 96 54 8.671065410023685 0.7999997138977051 2.21875 2.21875 2.3999977111816406 2 60.15682852584673 12.088517189025879 64.51737213134766 8.266924858093262 236947.0 0.03390778042376042 300.69455566406003 207.8170623779297 3.556192072326705 1966.3880615234375 24194.27734375 23837.00390625 189076.0 20546.22216796875 29455.16845703125 2749.02099609375 87.62884521484375 +sub-UCphantom_ses-220728_task-rest_bold 0.0004146888888888889 0.012088687555555557 0 15.784829849064579 1.058720768240534 1.003024489020046 0.5998696878308025 5528534.5 0.08824355123475125 0 0.0 3.035874745145929 2.90976 2.5935774647887326 3.604286770649056 0.0996687 -0.001488315174356103 0.0063532679341733456 450 96 96 54 8.849747826423108 0.7999997138977051 2.21875 2.21875 2.3999977111816406 0 54.61995869918388 13.350658416748047 66.73461151123047 9.138577461242676 236347.0 0.04413899406790733 319.60216064453084 212.55429077148438 3.594494813330191 1878.7060546875 25102.818359375 24695.720703125 189628.0 21380.83212890625 30502.4890625 2790.549072265625 85.13622283935547 +sub-UIphantom_ses-210401_task-rest_bold 0.0002817817371937639 0.0006298772138084633 1 17.11368868178571 0.997600600848214 0.9943579104241057 0.5343081355826333 32886.9453125 0.008969512815339975 0 0.0 4.146647546763891 3.1266540424245974 4.785583143171345 4.527705454695731 0.113181 -0.0021463469602167606 0.015344807878136635 449 90 90 60 1.8543235382956156 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 4 11.219540614305586 8.813063621520996 15.668172836303711 5.9443206787109375 240079.0 0.0 63.94899902343745 23.459522247314453 1.8228640135567655 487.0282287597656 1190.634521484375 1051.649169921875 173490.0 556.5237274169922 2348.607495117187 567.1319580078125 72.91747283935547 +sub-UIphantom_ses-220629_task-rest_bold 0.0002779064587973274 0.000891265276169265 1 19.21036022439733 0.9992898384598206 0.9953677724330356 0.5425040276734002 29792.958984375 0.010262561333108888 0 0.0 4.266609807324152 2.98840821458466 4.8481248073528285 4.9632964000349675 0.149456 -0.0004068331327289343 0.013552362099289894 449 90 90 60 1.9866517613686092 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 9 10.975026932007188 8.258325576782227 14.46846866607666 5.570156097412109 238876.0 0.0 58.80178451538086 21.647872924804688 3.1559786539256285 394.2979736328125 1042.074462890625 936.24609375 174574.0 508.509928894043 1978.1997192382814 471.2669982910156 65.3734130859375 +sub-UIphantom_ses-220707_task-rest_bold 0.00025002227171492207 0.000764059995545657 1 19.137421756897314 1.004666968325894 1.0011685261830363 0.5410373042617775 26372.4375 0.00934009948049276 0 0.0 4.192995874918421 3.005816547226248 4.750124811246999 4.8230462662820175 0.0583522 -0.002051738789305091 0.014721567742526531 449 90 90 60 1.9882170443965033 0.800000011920929 2.4000000953674316 2.4000000953674316 2.3999977111816406 4 10.78711557970165 8.974862098693848 14.590723037719727 6.053452491760254 239691.0 0.0 57.131404876708984 21.08442497253418 2.043372510123045 417.0207824707031 1061.40673828125 956.0267333984375 173889.0 502.991552734375 2031.0753906250004 480.8448791503906 69.73052978515625 +sub-UIphantom_ses-220722_task-rest_bold 0.00024256124721603564 0.0006923454766146992 1 18.584995972276783 0.9984674791517854 0.9949301540624996 0.5383104397075215 33539.328125 0.009445964307348866 0 0.0 4.252089132367299 3.041354045814115 4.800291475920221 4.914621875367562 0.111381 -0.0018171265255659819 0.014368116855621338 449 90 90 60 1.9563509487270674 0.800000011920929 2.4000000953674316 2.4000000953674316 2.4000015258789062 7 12.138353052959157 8.116339683532715 14.209290504455566 5.4743876457214355 240326.0 0.0 56.478843688964844 21.027591705322266 1.9952949771849573 436.72540283203125 1073.2928466796875 962.6358642578125 173344.0 499.08666076660154 2049.2700805664062 492.055419921875 68.39767456054688 diff --git a/datastore/src/data/imaging/qc-log-latest.csv b/datastore/src/data/imaging/qc-log-latest.csv new file mode 100644 index 0000000..77ced65 --- /dev/null +++ b/datastore/src/data/imaging/qc-log-latest.csv @@ -0,0 +1,3082 @@ +site,sub,ses,scan,rating,source,date,notes +NS,10042,V1,CUFF1,green,auto,, +NS,10042,V1,CUFF2,green,auto,, +NS,10042,V1,DWI,green,auto,, +NS,10042,V1,REST1,green,auto,, +NS,10042,V1,REST2,green,auto,, +NS,10042,V1,T1w,green,auto,2022-03-01, +NS,10047,V1,CUFF1,yellow,psadil,2022-03-29,"wrap-around, ghosts-other, uncategorized" +NS,10047,V1,CUFF2,green,auto,, +NS,10047,V1,DWI,green,auto,, +NS,10047,V1,REST1,green,auto,, +NS,10047,V1,REST2,green,auto,, +NS,10047,V1,T1w,green,auto,2022-03-01, +NS,10047,V3,CUFF1,green,auto,, +NS,10047,V3,CUFF2,green,auto,, +NS,10047,V3,DWI,green,auto,, +NS,10047,V3,REST1,green,auto,, +NS,10047,V3,REST2,green,psadil,2022-03-02,"head-motion, inu" +NS,10047,V3,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +NS,10050,V1,CUFF1,green,auto,, +NS,10050,V1,CUFF2,green,auto,, +NS,10050,V1,DWI,green,auto,, +NS,10050,V1,REST1,green,auto,, +NS,10050,V1,REST2,green,psadil,2022-03-02,"head-motion, inu" +NS,10050,V1,T1w,green,auto,2022-03-01, +NS,10053,V1,CUFF1,green,auto,, +NS,10053,V1,CUFF2,green,auto,, +NS,10053,V1,DWI,green,auto,, +NS,10053,V1,REST1,green,auto,, +NS,10053,V1,REST2,yellow,psadil,2022-03-18,"head-motion, wrap-around" +NS,10053,V1,T1w,green,auto,2022-03-01, +NS,10054,V1,CUFF1,green,auto,, +NS,10054,V1,CUFF2,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10054,V1,DWI,green,auto,, +NS,10054,V1,REST1,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10054,V1,REST2,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10054,V1,T1w,green,auto,2022-03-01, +NS,10054,V3,CUFF1,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10054,V3,CUFF2,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10054,V3,DWI,green,auto,, +NS,10054,V3,REST1,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10054,V3,REST2,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10054,V3,T1w,green,auto,2022-03-01, +NS,10059,V1,CUFF1,green,psadil,2022-03-02,"wrap-around, uncategorized" +NS,10059,V1,CUFF2,yellow,psadil,2022-03-29,"wrap-around, ghosts-other, uncategorized" +NS,10059,V1,DWI,green,psadil,2022-03-02, +NS,10059,V1,REST1,green,psadil,2022-03-02,inu +NS,10059,V1,REST2,green,psadil,2022-03-02,"wrap-around, inu" +NS,10059,V1,T1w,green,auto,2022-03-01, +NS,10059,V3,CUFF1,green,auto,, +NS,10059,V3,CUFF2,green,auto,, +NS,10059,V3,DWI,green,auto,, +NS,10059,V3,REST1,yellow,psadil,2022-03-29,"wrap-around, ghosts-other, uncategorized" +NS,10059,V3,REST2,green,auto,, +NS,10059,V3,T1w,green,auto,2022-03-01, +NS,10060,V1,CUFF1,red,psadil,2022-01-05,"head-motion, inu" +NS,10060,V1,CUFF2,green,auto,, +NS,10060,V1,DWI,green,auto,, +NS,10060,V1,REST1,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10060,V1,REST2,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10060,V1,T1w,green,auto,2022-03-01, +NS,10060,V3,CUFF1,yellow,psadil,2022-03-02,"head-motion, inu" +NS,10060,V3,CUFF2,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10060,V3,DWI,green,psadil,2022-03-02, +NS,10060,V3,REST1,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10060,V3,REST2,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10060,V3,T1w,green,auto,2022-03-01, +NS,10061,V1,CUFF1,green,auto,, +NS,10061,V1,CUFF2,green,auto,, +NS,10061,V1,DWI,green,auto,, +NS,10061,V1,REST1,green,auto,, +NS,10061,V1,REST2,green,auto,, +NS,10061,V1,T1w,green,auto,2022-03-01, +NS,10061,V3,CUFF1,green,auto,, +NS,10061,V3,CUFF2,green,auto,, +NS,10061,V3,DWI,green,auto,, +NS,10061,V3,REST1,green,auto,, +NS,10061,V3,REST2,green,auto,, +NS,10061,V3,T1w,green,auto,2022-03-01, +NS,10070,V1,CUFF1,green,auto,, +NS,10070,V1,CUFF2,green,auto,, +NS,10070,V1,DWI,green,auto,, +NS,10070,V1,REST1,green,auto,, +NS,10070,V1,REST2,green,auto,, +NS,10070,V1,T1w,green,auto,2022-03-01, +NS,10070,V3,CUFF1,green,auto,, +NS,10070,V3,CUFF2,green,auto,, +NS,10070,V3,DWI,green,auto,, +NS,10070,V3,REST1,green,auto,, +NS,10070,V3,REST2,green,auto,, +NS,10070,V3,T1w,green,auto,2022-03-01, +NS,10071,V1,CUFF1,green,auto,, +NS,10071,V1,CUFF2,green,auto,, +NS,10071,V1,DWI,green,psadil,2022-03-02, +NS,10071,V1,REST1,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10071,V1,REST2,yellow,psadil,2022-03-18,"head-motion, uncategorized" +NS,10071,V1,T1w,green,psadil,2022-01-05,"eye-spillover, inu, postprocessing" +NS,10071,V3,CUFF1,green,auto,, +NS,10071,V3,CUFF2,green,auto,, +NS,10071,V3,DWI,green,auto,, +NS,10071,V3,REST1,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10071,V3,REST2,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10071,V3,T1w,green,auto,2022-03-01, +NS,10073,V1,CUFF1,green,auto,, +NS,10073,V1,CUFF2,green,auto,, +NS,10073,V1,DWI,green,auto,, +NS,10073,V1,REST1,green,auto,, +NS,10073,V1,REST2,green,auto,, +NS,10073,V1,T1w,yellow,psadil,2022-03-02,head-motion +NS,10073,V3,CUFF1,green,auto,, +NS,10073,V3,CUFF2,green,auto,, +NS,10073,V3,DWI,green,auto,, +NS,10073,V3,REST1,green,psadil,2022-03-02,"wrap-around, inu" +NS,10073,V3,REST2,yellow,psadil,2022-03-31,"wrap-around, inu, uncategorized" +NS,10073,V3,T1w,green,auto,2022-03-01, +NS,10074,V1,DWI,green,auto,, +NS,10074,V1,REST1,green,auto,, +NS,10074,V1,REST2,green,auto,, +NS,10074,V1,T1w,green,auto,2022-03-01, +NS,10075,V1,CUFF1,green,auto,, +NS,10075,V1,CUFF2,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10075,V1,DWI,green,auto,, +NS,10075,V1,REST1,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10075,V1,REST2,yellow,psadil,2022-03-18,"head-motion, wrap-around, uncategorized" +NS,10075,V1,T1w,green,auto,2022-03-01, +NS,10075,V3,CUFF1,green,auto,, +NS,10075,V3,CUFF2,green,auto,, +NS,10075,V3,DWI,green,auto,, +NS,10075,V3,REST1,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10075,V3,REST2,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10075,V3,T1w,yellow,psadil,2022-01-05,"head-motion, eye-spillover" +NS,10076,V1,CUFF1,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10076,V1,CUFF2,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10076,V1,DWI,green,auto,, +NS,10076,V1,REST1,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10076,V1,REST2,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10076,V1,T1w,yellow,psadil,2022-03-02,head-motion +NS,10076,V3,CUFF1,yellow,psadil,2022-03-21,"head-motion, eye-spillover, wrap-around, uncategorized" +NS,10076,V3,CUFF2,yellow,psadil,2022-03-21,"head-motion, eye-spillover, wrap-around, uncategorized" +NS,10076,V3,DWI,green,auto,, +NS,10076,V3,REST1,yellow,psadil,2022-03-21,"head-motion, eye-spillover, wrap-around, uncategorized" +NS,10076,V3,REST2,yellow,psadil,2022-03-21,"head-motion, eye-spillover, wrap-around, uncategorized" +NS,10076,V3,T1w,yellow,psadil,2022-03-02,head-motion +NS,10077,V1,CUFF1,green,psadil,2022-01-05,"head-motion, inu" +NS,10077,V1,CUFF2,green,psadil,2022-01-05,inu +NS,10077,V1,DWI,green,auto,, +NS,10077,V1,REST1,green,psadil,2022-03-02,inu +NS,10077,V1,REST2,green,psadil,2022-03-02,"head-motion, inu" +NS,10077,V1,T1w,green,auto,2022-03-01, +NS,10077,V3,CUFF1,green,psadil,2022-01-05, +NS,10077,V3,CUFF2,green,auto,, +NS,10077,V3,DWI,green,auto,, +NS,10077,V3,REST1,green,psadil,2022-03-02,inu +NS,10077,V3,REST2,green,auto,, +NS,10077,V3,T1w,green,auto,2022-03-01, +NS,10080,V1,CUFF1,green,auto,, +NS,10080,V1,CUFF2,green,auto,, +NS,10080,V1,DWI,green,psadil,2022-03-02, +NS,10080,V1,REST1,green,auto,, +NS,10080,V1,REST2,green,auto,, +NS,10080,V1,T1w,green,auto,2022-03-01, +NS,10080,V3,CUFF1,green,auto,, +NS,10080,V3,CUFF2,green,auto,, +NS,10080,V3,DWI,green,auto,, +NS,10080,V3,REST1,green,auto,, +NS,10080,V3,REST2,green,auto,, +NS,10080,V3,T1w,green,psadil,2022-03-02,postprocessing +NS,10085,V1,CUFF1,green,psadil,2022-01-05,"head-motion, inu" +NS,10085,V1,CUFF2,green,psadil,2022-03-02,"head-motion, inu" +NS,10085,V1,DWI,green,auto,, +NS,10085,V1,REST1,green,psadil,2022-03-02,inu +NS,10085,V1,REST2,yellow,psadil,2022-01-05,"head-motion, field-variation" +NS,10085,V1,T1w,green,auto,2022-03-01, +NS,10085,V3,CUFF1,green,psadil,2022-03-14,"head-motion, uncategorized" +NS,10085,V3,CUFF2,green,psadil,2022-03-15,"head-motion, wrap-around, uncategorized" +NS,10085,V3,DWI,green,auto,, +NS,10085,V3,REST1,green,psadil,2022-03-14,"head-motion, uncategorized" +NS,10085,V3,REST2,green,psadil,2022-03-02,head-motion +NS,10085,V3,T1w,yellow,psadil,2022-03-02,"inu, postprocessing, head-motion" +NS,10086,V1,DWI,green,auto,, +NS,10086,V1,REST1,green,auto,, +NS,10086,V1,REST2,green,auto,, +NS,10086,V1,T1w,green,auto,2022-03-01, +NS,10092,V1,CUFF1,green,psadil,2022-01-31,wrap-around +NS,10092,V1,CUFF2,green,psadil,2022-01-31,wrap-around +NS,10092,V1,DWI,green,auto,, +NS,10092,V1,REST1,green,auto,, +NS,10092,V1,REST2,red,psadil,2022-04-13, +NS,10092,V1,T1w,green,auto,2022-03-01, +NS,10092,V3,CUFF1,green,auto,, +NS,10092,V3,CUFF2,green,auto,, +NS,10092,V3,DWI,green,auto,, +NS,10092,V3,REST1,green,auto,, +NS,10092,V3,REST2,green,psadil,2022-03-02,"head-motion, inu" +NS,10092,V3,T1w,green,psadil,2022-03-02, +NS,10093,V1,CUFF1,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10093,V1,CUFF2,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10093,V1,DWI,green,auto,, +NS,10093,V1,REST1,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10093,V1,REST2,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10093,V1,T1w,yellow,psadil,2022-03-02,postprocessing +NS,10093,V3,CUFF1,yellow,psadil,2022-01-05,"wrap-around, inu" +NS,10093,V3,CUFF2,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10093,V3,DWI,green,auto,, +NS,10093,V3,REST1,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10093,V3,REST2,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10093,V3,T1w,yellow,psadil,2022-03-02,head-motion +NS,10094,V1,DWI,green,auto,, +NS,10094,V1,REST1,green,auto,, +NS,10094,V1,REST2,green,auto,, +NS,10094,V1,T1w,yellow,psadil,2022-03-02,head-motion +NS,10095,V1,CUFF1,red,psadil,2022-04-13, +NS,10095,V1,CUFF2,green,auto,, +NS,10095,V1,DWI,green,auto,, +NS,10095,V1,REST1,green,auto,, +NS,10095,V1,REST2,red,psadil,2022-04-13, +NS,10095,V1,T1w,green,auto,2022-03-01, +NS,10095,V3,CUFF1,green,auto,, +NS,10095,V3,CUFF2,green,auto,, +NS,10095,V3,DWI,green,auto,, +NS,10095,V3,REST1,green,auto,, +NS,10095,V3,REST2,green,auto,, +NS,10095,V3,T1w,green,auto,2022-03-01, +NS,10100,V1,DWI,green,psadil,2022-03-02, +NS,10100,V1,REST1,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10100,V1,REST2,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10100,V1,T1w,green,auto,2022-03-01, +NS,10101,V1,CUFF1,green,auto,, +NS,10101,V1,CUFF2,green,auto,, +NS,10101,V1,DWI,green,psadil,2022-03-02, +NS,10101,V1,REST1,green,auto,, +NS,10101,V1,REST2,green,auto,, +NS,10101,V1,T1w,green,auto,2022-03-01, +NS,10101,V3,DWI,green,auto,, +NS,10101,V3,REST1,green,auto,, +NS,10101,V3,REST2,green,auto,, +NS,10101,V3,T1w,green,auto,2022-03-01, +NS,10104,V1,DWI,green,auto,, +NS,10104,V1,REST1,yellow,psadil,2022-03-21,"head-motion, uncategorized" +NS,10104,V1,REST2,green,auto,, +NS,10104,V1,T1w,green,auto,2022-03-01, +NS,10104,V3,DWI,green,auto,, +NS,10104,V3,REST1,green,auto,, +NS,10104,V3,REST2,green,auto,, +NS,10104,V3,T1w,green,auto,2022-03-01, +NS,10105,V1,DWI,green,auto,, +NS,10105,V1,REST1,green,auto,, +NS,10105,V1,REST2,green,auto,, +NS,10105,V1,T1w,green,auto,2022-03-01, +NS,10105,V3,DWI,green,auto,, +NS,10105,V3,REST1,green,auto,, +NS,10105,V3,REST2,green,auto,, +NS,10105,V3,T1w,green,auto,2022-03-01, +NS,10111,V1,CUFF1,yellow,psadil,2022-03-21,"head-motion, uncategorized" +NS,10111,V1,CUFF2,yellow,psadil,2022-03-21,"head-motion, uncategorized" +NS,10111,V1,DWI,green,auto,, +NS,10111,V1,REST1,yellow,psadil,2022-04-13,"head-motion, inu, uncategorized" +NS,10111,V1,REST2,yellow,psadil,2022-03-21,"head-motion, uncategorized" +NS,10111,V1,T1w,yellow,psadil,2022-03-02,head-motion +NS,10112,V1,CUFF1,yellow,psadil,2022-03-21,"head-motion, uncategorized" +NS,10112,V1,CUFF2,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10112,V1,DWI,green,auto,, +NS,10112,V1,REST1,yellow,psadil,2022-03-21,"head-motion, uncategorized" +NS,10112,V1,REST2,yellow,psadil,2022-03-21,"head-motion, wrap-around, uncategorized" +NS,10112,V1,T1w,green,auto,2022-03-01, +NS,10112,V3,DWI,green,auto,, +NS,10112,V3,REST1,yellow,psadil,2022-04-13,"head-motion, uncategorized" +NS,10112,V3,REST2,yellow,psadil,2022-04-13,"head-motion, noneye-spillover, noise-global, ghosts-other, uncategorized" +NS,10112,V3,T1w,green,psadil,2022-03-02, +NS,10113,V1,CUFF1,yellow,psadil,2022-04-13,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10113,V1,CUFF2,green,auto,, +NS,10113,V1,DWI,green,auto,, +NS,10113,V1,REST1,yellow,psadil,2022-04-13,"head-motion, wrap-around, uncategorized" +NS,10113,V1,REST2,yellow,psadil,2022-04-13,"head-motion, noise-global, uncategorized" +NS,10113,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover, postprocessing" +NS,10113,V3,DWI,green,auto,, +NS,10113,V3,REST1,green,auto,, +NS,10113,V3,REST2,green,auto,, +NS,10113,V3,T1w,green,psadil,2022-03-02,postprocessing +NS,10117,V1,CUFF1,green,auto,, +NS,10117,V1,CUFF2,green,auto,, +NS,10117,V1,DWI,green,auto,, +NS,10117,V1,REST1,green,auto,, +NS,10117,V1,REST2,green,auto,, +NS,10117,V1,T1w,yellow,psadil,2022-03-03,inu +NS,10117,V3,CUFF1,green,auto,, +NS,10117,V3,CUFF2,green,auto,, +NS,10117,V3,DWI,green,auto,, +NS,10117,V3,REST1,green,auto,, +NS,10117,V3,REST2,green,auto,, +NS,10117,V3,T1w,yellow,psadil,2022-03-03,"inu, postprocessing" +NS,10118,V1,CUFF1,green,auto,, +NS,10118,V1,CUFF2,green,auto,, +NS,10118,V1,DWI,green,auto,, +NS,10118,V1,REST1,green,auto,, +NS,10118,V1,REST2,green,auto,, +NS,10118,V1,T1w,yellow,psadil,2022-03-16,"head-motion, inu" +NS,10122,V1,CUFF1,green,auto,, +NS,10122,V1,CUFF2,green,auto,, +NS,10122,V1,DWI,green,auto,, +NS,10122,V1,REST1,yellow,psadil,2022-04-13,"head-motion, noise-global, ghosts-other, postprocessing" +NS,10122,V1,REST2,green,auto,, +NS,10122,V1,T1w,green,auto,2022-03-01, +NS,10122,V3,CUFF1,green,auto,, +NS,10122,V3,CUFF2,green,auto,, +NS,10122,V3,DWI,green,auto,, +NS,10122,V3,REST1,green,auto,, +NS,10122,V3,REST2,yellow,psadil,2022-04-13,"head-motion, ghosts-other, uncategorized" +NS,10122,V3,T1w,yellow,psadil,2022-03-02,postprocessing +NS,10128,V1,CUFF1,green,auto,, +NS,10128,V1,CUFF2,green,auto,, +NS,10128,V1,DWI,green,auto,, +NS,10128,V1,REST1,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10128,V1,REST2,green,auto,, +NS,10128,V1,T1w,green,psadil,2022-03-15,inu +NS,10137,V1,DWI,green,psadil,2022-03-02, +NS,10137,V1,REST1,yellow,psadil,2022-04-13,"head-motion, wrap-around, field-variation, uncategorized" +NS,10137,V1,REST2,yellow,psadil,2022-04-13,"head-motion, wrap-around, ghosts-other, postprocessing, uncategorized" +NS,10137,V1,T1w,green,auto,2022-03-01, +NS,10138,V1,DWI,green,auto,, +NS,10138,V1,REST1,yellow,psadil,2022-04-13,"head-motion, ghosts-other, uncategorized" +NS,10138,V1,REST2,yellow,psadil,2022-04-13,"head-motion, eye-spillover, ghosts-other, uncategorized" +NS,10138,V1,T1w,green,auto,2022-03-01, +NS,10139,V1,CUFF1,yellow,psadil,2022-04-13,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10139,V1,CUFF2,yellow,psadil,2022-04-13,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10139,V1,DWI,green,psadil,2022-03-02, +NS,10139,V1,REST1,green,auto,, +NS,10139,V1,REST2,yellow,psadil,2022-04-13,"head-motion, noneye-spillover, ghosts-other, uncategorized" +NS,10139,V1,T1w,green,auto,2022-03-01, +NS,10141,V1,DWI,green,auto,, +NS,10141,V1,REST1,yellow,psadil,2022-04-13,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10141,V1,REST2,yellow,psadil,2022-04-13,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10141,V1,T1w,green,auto,2022-03-01, +NS,10145,V1,DWI,green,auto,, +NS,10145,V1,REST1,yellow,psadil,2022-03-02,"head-motion, inu" +NS,10145,V1,REST2,yellow,psadil,2022-01-05,"head-motion, inu" +NS,10145,V1,T1w,yellow,psadil,2022-03-02,head-motion +NS,10151,V1,CUFF1,green,auto,, +NS,10151,V1,CUFF2,green,auto,, +NS,10151,V1,DWI,green,auto,, +NS,10151,V1,REST1,green,auto,, +NS,10151,V1,REST2,green,auto,, +NS,10151,V1,T1w,green,auto,2022-03-01, +NS,10157,V1,CUFF1,yellow,psadil,2022-04-14,"head-motion, uncategorized" +NS,10157,V1,CUFF2,yellow,psadil,2022-04-14,"head-motion, uncategorized" +NS,10157,V1,DWI,green,auto,, +NS,10157,V1,REST1,yellow,psadil,2022-04-14,"head-motion, inu, uncategorized" +NS,10157,V1,REST2,yellow,psadil,2022-04-14,"head-motion, uncategorized" +NS,10157,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +NS,10158,V1,DWI,green,auto,, +NS,10158,V1,REST1,green,psadil,2022-01-05,inu +NS,10158,V1,REST2,green,psadil,2022-03-02,"inu, uncategorized" +NS,10158,V1,T1w,green,auto,2022-03-01, +NS,10160,V1,CUFF1,green,auto,, +NS,10160,V1,CUFF2,green,auto,, +NS,10160,V1,DWI,green,auto,, +NS,10160,V1,REST1,yellow,psadil,2022-04-14,"head-motion, ghosts-other, uncategorized" +NS,10160,V1,REST2,green,auto,, +NS,10160,V1,T1w,green,auto,2022-03-01, +NS,10161,V1,DWI,green,auto,, +NS,10161,V1,REST1,yellow,psadil,2022-04-14,"head-motion, ghosts-other, uncategorized" +NS,10161,V1,REST2,yellow,psadil,2022-04-14,"head-motion, ghosts-other, uncategorized" +NS,10161,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover, inu, postprocessing" +NS,10162,V1,CUFF1,green,auto,, +NS,10162,V1,CUFF2,green,auto,, +NS,10162,V1,DWI,green,psadil,2022-03-02, +NS,10162,V1,REST1,yellow,psadil,2022-04-14,"head-motion, ghosts-other, uncategorized" +NS,10162,V1,REST2,green,auto,, +NS,10162,V1,T1w,green,auto,2022-03-01, +NS,10163,V1,DWI,green,auto,, +NS,10163,V1,REST1,green,psadil,2022-03-02,"inu, uncategorized" +NS,10163,V1,REST2,green,psadil,2022-03-02,"em-perturbation, wrap-around, inu" +NS,10163,V1,T1w,green,auto,2022-03-01, +NS,10165,V1,DWI,green,auto,, +NS,10165,V1,REST1,yellow,psadil,2022-04-14,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10165,V1,REST2,yellow,psadil,2022-04-14,"head-motion, wrap-around, ghosts-other, field-variation, uncategorized" +NS,10165,V1,T1w,green,auto,2022-03-01, +NS,10166,V1,CUFF1,red,psadil,2022-03-02,"head-motion, inu" +NS,10166,V1,CUFF2,red,psadil,2022-03-02,"head-motion, wrap-around, inu" +NS,10166,V1,DWI,green,auto,, +NS,10166,V1,REST1,yellow,psadil,2022-01-05,"head-motion, inu" +NS,10166,V1,REST2,red,psadil,2022-03-02,"head-motion, inu" +NS,10166,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover, inu" +NS,10167,V1,CUFF1,green,auto,, +NS,10167,V1,CUFF2,green,auto,, +NS,10167,V1,DWI,green,auto,, +NS,10167,V1,REST1,green,auto,, +NS,10167,V1,REST2,green,auto,, +NS,10167,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover, inu" +NS,10168,V1,CUFF1,yellow,psadil,2022-04-14,"head-motion, ghosts-other, uncategorized" +NS,10168,V1,CUFF2,yellow,psadil,2022-04-14,"head-motion, noneye-spillover, ghosts-other, uncategorized" +NS,10168,V1,DWI,green,auto,, +NS,10168,V1,REST1,yellow,psadil,2022-04-14,"head-motion, noneye-spillover, ghosts-other, uncategorized" +NS,10168,V1,REST2,yellow,psadil,2022-04-14,"head-motion, noneye-spillover, ghosts-other, uncategorized" +NS,10168,V1,T1w,green,auto,2022-03-01, +NS,10170,V1,CUFF1,green,psadil,2022-01-05,"head-motion, inu" +NS,10170,V1,CUFF2,green,auto,, +NS,10170,V1,DWI,green,auto,, +NS,10170,V1,REST1,yellow,psadil,2022-04-14,"head-motion, ghosts-other, uncategorized" +NS,10170,V1,REST2,yellow,psadil,2022-04-14,"head-motion, ghosts-other, uncategorized" +NS,10170,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +NS,10171,V1,DWI,green,auto,, +NS,10171,V1,REST1,yellow,psadil,2022-01-05,"head-motion, wrap-around" +NS,10171,V1,REST2,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10171,V1,T1w,yellow,psadil,2022-03-02,"eye-spillover, inu" +NS,10175,V1,CUFF1,yellow,psadil,2022-04-14,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10175,V1,CUFF2,yellow,psadil,2022-04-14,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10175,V1,DWI,green,auto,, +NS,10175,V1,REST1,green,auto,, +NS,10175,V1,REST2,green,auto,, +NS,10175,V1,T1w,yellow,psadil,2022-03-02,postprocessing +NS,10177,V1,CUFF1,green,auto,, +NS,10177,V1,CUFF2,green,auto,, +NS,10177,V1,DWI,green,auto,, +NS,10177,V1,REST1,green,auto,, +NS,10177,V1,REST2,green,auto,, +NS,10177,V1,T1w,green,auto,2022-03-01, +NS,10179,V1,CUFF1,yellow,psadil,2022-01-05,"head-motion, inu" +NS,10179,V1,CUFF2,green,auto,, +NS,10179,V1,DWI,green,auto,, +NS,10179,V1,REST1,green,psadil,2022-03-02,"head-motion, inu" +NS,10179,V1,REST2,green,psadil,2022-03-02,head-motion +NS,10179,V1,T1w,green,auto,2022-03-01, +NS,10180,V1,DWI,green,auto,, +NS,10180,V1,REST1,green,auto,, +NS,10180,V1,REST2,green,auto,, +NS,10180,V1,T1w,green,auto,2022-03-01, +NS,10182,V1,CUFF1,red,psadil,2022-01-05, +NS,10182,V1,CUFF2,green,auto,, +NS,10182,V1,DWI,green,auto,, +NS,10182,V1,REST1,green,auto,, +NS,10182,V1,REST2,green,auto,, +NS,10182,V1,T1w,green,auto,2022-03-01, +NS,10182,V3,CUFF1,green,auto,, +NS,10182,V3,CUFF2,green,psadil,2022-03-22,uncategorized +NS,10182,V3,DWI,green,auto,, +NS,10182,V3,REST1,green,auto,, +NS,10182,V3,REST2,green,auto,, +NS,10182,V3,T1w,green,auto,2022-04-01, +NS,10185,V1,CUFF1,green,psadil,2022-03-02,"head-motion, inu" +NS,10185,V1,CUFF2,green,auto,, +NS,10185,V1,DWI,green,auto,, +NS,10185,V1,REST1,green,psadil,2022-03-02,"head-motion, inu" +NS,10185,V1,REST2,green,auto,, +NS,10185,V1,T1w,green,auto,2022-03-01, +NS,10185,V3,CUFF1,green,auto,, +NS,10185,V3,CUFF2,green,auto,, +NS,10185,V3,DWI,green,auto,, +NS,10185,V3,REST1,green,auto,, +NS,10185,V3,REST2,green,auto,, +NS,10185,V3,T1w,yellow,psadil,2022-03-11,"head-motion, noise-local, inu, postprocessing" +NS,10190,V1,DWI,green,auto,, +NS,10190,V1,REST1,green,psadil,2022-03-02,inu +NS,10190,V1,REST2,green,psadil,2022-03-02,"head-motion, inu" +NS,10190,V1,T1w,green,auto,2022-03-01, +NS,10191,V1,CUFF1,green,auto,, +NS,10191,V1,CUFF2,green,auto,, +NS,10191,V1,DWI,green,psadil,2022-03-02,postprocessing +NS,10191,V1,REST1,green,auto,, +NS,10191,V1,REST2,green,auto,, +NS,10191,V1,T1w,green,auto,2022-03-01, +NS,10192,V1,CUFF1,green,psadil,2021-11-16,"wrap-around, ghosts-other" +NS,10192,V1,CUFF2,green,psadil,2022-03-02,"head-motion, ghosts-other" +NS,10192,V1,DWI,green,auto,, +NS,10192,V1,REST1,green,psadil,2022-03-02,"ghosts-other, uncategorized" +NS,10192,V1,REST2,green,psadil,2022-03-02,"noise-local, ghosts-other" +NS,10192,V1,T1w,green,psadil,2021-11-16,"ghosts-other, inu, postprocessing" +NS,10192,V3,CUFF1,green,auto,, +NS,10192,V3,CUFF2,green,auto,, +NS,10192,V3,DWI,green,auto,, +NS,10192,V3,REST1,green,auto,, +NS,10192,V3,REST2,green,auto,, +NS,10192,V3,T1w,green,auto,2022-04-01, +NS,10194,V1,CUFF1,green,auto,, +NS,10194,V1,CUFF2,green,auto,, +NS,10194,V1,DWI,green,auto,, +NS,10194,V1,REST1,green,auto,, +NS,10194,V1,REST2,green,auto,, +NS,10194,V1,T1w,green,auto,2022-03-01, +NS,10197,V1,DWI,green,auto,, +NS,10197,V1,REST1,yellow,psadil,2022-01-05,"head-motion, wrap-around, inu" +NS,10197,V1,REST2,green,auto,, +NS,10197,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover, postprocessing" +NS,10198,V1,DWI,green,auto,, +NS,10198,V1,REST1,yellow,psadil,2022-03-02,"wrap-around, inu" +NS,10198,V1,REST2,yellow,psadil,2022-01-05,"head-motion, inu" +NS,10198,V1,T1w,green,auto,2022-03-01, +NS,10202,V1,CUFF1,red,psadil,2022-03-02,ghosts-other +NS,10202,V1,CUFF2,red,psadil,2022-03-02,ghosts-other +NS,10202,V1,DWI,green,psadil,2022-03-02, +NS,10202,V1,REST1,green,psadil,2022-03-02, +NS,10202,V1,T1w,green,psadil,2021-11-16,"eye-spillover, noneye-spillover, ghosts-other, postprocessing" +NS,10203,V1,CUFF1,green,auto,, +NS,10203,V1,CUFF2,green,auto,, +NS,10203,V1,DWI,green,auto,, +NS,10203,V1,REST1,green,auto,, +NS,10203,V1,REST2,green,auto,, +NS,10203,V1,T1w,green,auto,2022-03-01, +NS,10205,V1,REST2,yellow,psadil,2022-07-19,"head-motion, inu, uncategorized" +NS,10205,V3,DWI,green,auto,, +NS,10205,V3,REST1,green,auto,, +NS,10205,V3,REST2,green,auto,, +NS,10205,V3,T1w,yellow,auto,2022-04-01, +NS,10206,V1,CUFF1,green,auto,, +NS,10206,V1,CUFF2,yellow,psadil,2022-01-05,"head-motion, inu" +NS,10206,V1,DWI,green,auto,, +NS,10206,V1,REST1,yellow,psadil,2022-01-05,"head-motion, inu" +NS,10206,V1,REST2,green,auto,, +NS,10206,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover, inu, postprocessing" +NS,10207,V1,CUFF1,green,auto,, +NS,10207,V1,CUFF2,green,auto,, +NS,10207,V1,DWI,green,auto,, +NS,10207,V1,REST1,green,auto,, +NS,10207,V1,REST2,green,psadil,2022-03-02,"head-motion, inu" +NS,10207,V1,T1w,green,auto,2022-03-01, +NS,10211,V1,CUFF1,green,psadil,2021-11-16,"noise-local, ghosts-other" +NS,10211,V1,CUFF2,green,psadil,2021-11-16,"ghosts-other, uncategorized" +NS,10211,V1,DWI,green,auto,, +NS,10211,V1,REST1,green,psadil,2022-03-02,noise-global +NS,10211,V1,REST2,green,auto,, +NS,10211,V1,T1w,yellow,psadil,2022-03-02,"eye-spillover, inu, postprocessing" +NS,10211,V3,CUFF1,green,auto,, +NS,10211,V3,CUFF2,green,auto,, +NS,10211,V3,DWI,green,auto,, +NS,10211,V3,REST1,green,auto,, +NS,10211,V3,REST2,green,auto,, +NS,10211,V3,T1w,green,auto,2022-04-01, +NS,10212,V1,DWI,green,auto,, +NS,10212,V1,REST1,green,auto,, +NS,10212,V1,REST2,green,auto,, +NS,10212,V1,T1w,green,psadil,2021-11-29,"eye-spillover, ghosts-other, inu, postprocessing" +NS,10215,V1,CUFF1,green,auto,, +NS,10215,V1,CUFF2,green,auto,, +NS,10215,V1,DWI,green,auto,, +NS,10215,V1,REST1,green,auto,, +NS,10215,V1,REST2,green,auto,, +NS,10215,V1,T1w,green,auto,2022-03-01, +NS,10220,V1,DWI,green,auto,, +NS,10220,V1,REST1,green,auto,, +NS,10220,V1,REST2,green,auto,, +NS,10220,V1,T1w,yellow,psadil,2022-03-02,postprocessing +NS,10220,V3,CUFF1,green,auto,, +NS,10220,V3,CUFF2,green,auto,, +NS,10220,V3,DWI,green,auto,, +NS,10220,V3,REST1,green,auto,, +NS,10220,V3,REST2,green,auto,, +NS,10220,V3,T1w,yellow,auto,2022-04-01, +NS,10221,V1,CUFF1,green,psadil,2022-04-13,"inu, uncategorized" +NS,10221,V1,CUFF2,green,psadil,2022-04-01,uncategorized +NS,10221,V1,DWI,green,auto,, +NS,10221,V1,REST1,green,psadil,2022-08-05,"wrap-around, uncategorized" +NS,10221,V1,REST2,green,psadil,2022-04-13,"head-motion, inu, field-variation, uncategorized" +NS,10221,V1,T1w,green,psadil,2021-11-23,inu +NS,10223,V1,CUFF1,green,auto,, +NS,10223,V1,CUFF2,green,auto,, +NS,10223,V1,DWI,green,auto,, +NS,10223,V1,REST1,green,auto,, +NS,10223,V1,REST2,green,auto,, +NS,10223,V1,T1w,yellow,psadil,2022-03-02,"eye-spillover, inu" +NS,10223,V3,CUFF1,green,auto,, +NS,10223,V3,CUFF2,green,auto,, +NS,10223,V3,DWI,green,auto,, +NS,10223,V3,REST1,yellow,psadil,2022-03-29,"head-motion, wrap-around, ghosts-other, uncategorized" +NS,10223,V3,REST2,green,auto,, +NS,10223,V3,T1w,yellow,auto,2022-04-01, +NS,10231,V1,CUFF1,green,auto,, +NS,10231,V1,CUFF2,green,auto,, +NS,10231,V1,DWI,green,auto,, +NS,10231,V1,REST1,green,auto,, +NS,10231,V1,REST2,green,auto,, +NS,10231,V1,T1w,yellow,psadil,2022-03-03,"inu, postprocessing" +NS,10234,V1,CUFF1,green,auto,, +NS,10234,V1,CUFF2,green,auto,, +NS,10234,V1,DWI,green,auto,, +NS,10234,V1,REST1,green,auto,, +NS,10234,V1,REST2,green,auto,, +NS,10234,V1,T1w,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +NS,10234,V3,CUFF1,yellow,psadil,2022-03-30,"head-motion, ghosts-other, uncategorized" +NS,10234,V3,CUFF2,green,auto,, +NS,10234,V3,DWI,green,auto,, +NS,10234,V3,REST1,green,auto,, +NS,10234,V3,REST2,green,auto,, +NS,10234,V3,T1w,yellow,psadil,2022-03-30,"eye-spillover, inu, postprocessing" +NS,10238,V1,DWI,green,auto,, +NS,10238,V1,REST1,green,auto,, +NS,10238,V1,REST2,green,auto,, +NS,10238,V1,T1w,green,auto,2022-03-01, +NS,10238,V3,CUFF1,green,auto,, +NS,10238,V3,CUFF2,green,auto,, +NS,10238,V3,DWI,green,auto,, +NS,10238,V3,REST1,green,auto,, +NS,10238,V3,REST2,green,auto,, +NS,10238,V3,T1w,green,psadil,2022-04-04,inu +NS,10246,V1,CUFF1,green,auto,, +NS,10246,V1,CUFF2,green,auto,, +NS,10246,V1,DWI,green,auto,, +NS,10246,V1,REST1,green,auto,, +NS,10246,V1,REST2,green,auto,, +NS,10246,V1,T1w,green,auto,2022-03-01, +NS,10246,V3,CUFF1,green,auto,, +NS,10246,V3,CUFF2,green,auto,, +NS,10246,V3,DWI,green,auto,, +NS,10246,V3,REST1,green,auto,, +NS,10246,V3,REST2,green,auto,, +NS,10246,V3,T1w,yellow,auto,2022-05-25, +NS,10250,V1,CUFF1,green,auto,, +NS,10250,V1,CUFF2,green,auto,, +NS,10250,V1,DWI,green,psadil,2022-03-02, +NS,10250,V1,REST1,green,auto,, +NS,10250,V1,REST2,green,auto,, +NS,10250,V1,T1w,yellow,psadil,2022-03-03,"inu, postprocessing" +NS,10250,V3,CUFF1,green,auto,, +NS,10250,V3,CUFF2,green,auto,, +NS,10250,V3,DWI,green,auto,, +NS,10250,V3,REST1,green,auto,, +NS,10250,V3,REST2,green,auto,, +NS,10250,V3,T1w,yellow,auto,2022-07-12, +NS,10257,V1,DWI,green,auto,, +NS,10257,V1,REST1,green,auto,, +NS,10257,V1,REST2,green,psadil,2022-03-02,head-motion +NS,10257,V1,T1w,green,psadil,2022-03-02,postprocessing +NS,10257,V3,DWI,green,auto,, +NS,10257,V3,REST1,green,auto,, +NS,10257,V3,T1w,yellow,auto,2022-07-12, +NS,10258,V1,CUFF1,red,psadil,2022-03-02,"head-motion, wrap-around" +NS,10258,V1,CUFF2,red,psadil,2022-03-02,"head-motion, wrap-around" +NS,10258,V1,DWI,green,auto,, +NS,10258,V1,REST1,red,psadil,2022-03-02,"head-motion, wrap-around" +NS,10258,V1,REST2,red,psadil,2022-03-02,"head-motion, wrap-around" +NS,10258,V1,T1w,red,psadil,2022-03-02,"head-motion, postprocessing" +NS,10285,V1,DWI,green,auto,, +NS,10285,V1,REST1,green,auto,, +NS,10285,V1,REST2,green,auto,, +NS,10285,V1,T1w,green,auto,2022-03-02, +NS,10285,V3,CUFF1,green,auto,, +NS,10285,V3,CUFF2,green,auto,, +NS,10285,V3,DWI,green,auto,, +NS,10285,V3,REST1,green,auto,, +NS,10285,V3,REST2,green,auto,, +NS,10285,V3,T1w,green,auto,2022-07-12, +NS,10288,V1,CUFF1,green,auto,, +NS,10288,V1,CUFF2,green,auto,, +NS,10288,V1,DWI,green,auto,, +NS,10288,V1,REST1,yellow,psadil,2022-05-03,"head-motion, wrap-around, uncategorized" +NS,10288,V1,REST2,yellow,psadil,2022-05-03,"head-motion, wrap-around, inu, uncategorized" +NS,10288,V1,T1w,green,auto,2022-05-25, +NS,10288,V3,CUFF1,green,auto,, +NS,10288,V3,CUFF2,green,auto,, +NS,10288,V3,DWI,green,auto,, +NS,10288,V3,REST1,green,auto,, +NS,10288,V3,REST2,green,auto,, +NS,10288,V3,T1w,green,auto,2022-07-12, +NS,10293,V1,CUFF1,green,auto,, +NS,10293,V1,CUFF2,green,auto,, +NS,10293,V1,DWI,green,auto,, +NS,10293,V1,REST1,yellow,psadil,2022-03-31,"head-motion, ghosts-other, inu, uncategorized" +NS,10293,V1,REST2,yellow,psadil,2022-03-31,"head-motion, postprocessing" +NS,10293,V1,T1w,yellow,auto,2022-05-25, +NS,10293,V3,CUFF1,yellow,psadil,2022-07-22,"head-motion, field-variation, uncategorized" +NS,10293,V3,CUFF2,yellow,psadil,2022-07-19,"head-motion, uncategorized" +NS,10293,V3,DWI,green,auto,, +NS,10293,V3,REST1,yellow,psadil,2022-07-19,"head-motion, uncategorized" +NS,10293,V3,REST2,yellow,psadil,2022-07-19,"head-motion, uncategorized" +NS,10293,V3,T1w,yellow,auto,2022-07-12, +NS,10294,V1,CUFF1,green,psadil,2022-05-09,"head-motion, uncategorized" +NS,10294,V1,CUFF2,green,psadil,2022-05-09,"head-motion, uncategorized" +NS,10294,V1,DWI,green,auto,, +NS,10294,V1,REST1,green,psadil,2022-05-09,"head-motion, uncategorized" +NS,10294,V1,REST2,green,psadil,2022-05-09,"head-motion, uncategorized" +NS,10294,V1,T1w,green,auto,2022-05-24, +NS,10294,V3,CUFF1,green,auto,, +NS,10294,V3,CUFF2,green,auto,, +NS,10294,V3,DWI,green,auto,, +NS,10294,V3,REST1,green,psadil,2022-07-19,uncategorized +NS,10294,V3,REST2,green,auto,, +NS,10294,V3,T1w,green,auto,2022-07-12, +NS,10296,V1,CUFF1,green,auto,, +NS,10296,V1,CUFF2,green,psadil,2022-03-11,"head-motion, uncategorized" +NS,10296,V1,DWI,green,auto,, +NS,10296,V1,REST1,green,auto,, +NS,10296,V1,REST2,green,auto,, +NS,10296,V1,T1w,yellow,psadil,2022-03-03,postprocessing +NS,10297,V1,CUFF1,green,auto,, +NS,10297,V1,CUFF2,green,auto,, +NS,10297,V1,DWI,green,auto,, +NS,10297,V1,REST1,green,auto,, +NS,10297,V1,REST2,green,auto,, +NS,10297,V1,T1w,green,auto,2022-05-25, +NS,10297,V3,DWI,green,auto,, +NS,10297,V3,REST1,green,auto,, +NS,10297,V3,T1w,green,auto,2022-07-12, +NS,10298,V1,CUFF1,yellow,psadil,2022-03-14,"head-motion, wrap-around, uncategorized" +NS,10298,V1,CUFF2,yellow,psadil,2022-03-15,"head-motion, wrap-around, uncategorized" +NS,10298,V1,DWI,green,auto,, +NS,10298,V1,REST1,green,auto,, +NS,10298,V1,REST2,green,auto,, +NS,10298,V1,T1w,yellow,auto,2022-04-01, +NS,10298,V3,CUFF1,green,auto,, +NS,10298,V3,CUFF2,green,auto,, +NS,10298,V3,DWI,green,auto,, +NS,10298,V3,REST1,green,auto,, +NS,10298,V3,REST2,green,auto,, +NS,10298,V3,T1w,yellow,auto,2022-07-12, +NS,10303,V1,CUFF1,green,auto,, +NS,10303,V1,CUFF2,green,auto,, +NS,10303,V1,DWI,green,auto,, +NS,10303,V1,REST1,green,auto,, +NS,10303,V1,REST2,green,auto,, +NS,10303,V1,T1w,yellow,auto,2022-05-25, +NS,10305,V1,CUFF1,green,auto,, +NS,10305,V1,CUFF2,green,auto,, +NS,10305,V1,DWI,green,auto,, +NS,10305,V1,REST1,green,auto,, +NS,10305,V1,REST2,green,auto,, +NS,10305,V1,T1w,green,auto,2022-04-01, +NS,10305,V3,CUFF1,green,auto,, +NS,10305,V3,CUFF2,green,auto,, +NS,10305,V3,DWI,green,auto,, +NS,10305,V3,REST1,green,auto,, +NS,10305,V3,REST2,green,auto,, +NS,10305,V3,T1w,green,auto,2022-07-12, +NS,10312,V1,CUFF1,green,auto,, +NS,10312,V1,CUFF2,green,psadil,2022-03-22,"head-motion, uncategorized" +NS,10312,V1,DWI,green,auto,, +NS,10312,V1,REST1,green,auto,, +NS,10312,V1,REST2,green,auto,, +NS,10312,V1,T1w,green,auto,2022-04-01, +NS,10312,V3,CUFF1,green,auto,, +NS,10312,V3,CUFF2,green,auto,, +NS,10312,V3,DWI,green,auto,, +NS,10312,V3,REST1,green,auto,, +NS,10312,V3,REST2,green,auto,, +NS,10312,V3,T1w,green,auto,2022-07-12, +NS,10314,V1,CUFF1,green,auto,, +NS,10314,V1,CUFF2,green,auto,, +NS,10314,V1,DWI,green,auto,, +NS,10314,V1,REST1,green,auto,, +NS,10314,V1,REST2,green,auto,, +NS,10314,V1,T1w,yellow,auto,2022-04-01, +NS,10314,V3,CUFF1,green,auto,, +NS,10314,V3,CUFF2,green,auto,, +NS,10314,V3,DWI,green,auto,, +NS,10314,V3,REST1,green,auto,, +NS,10314,V3,REST2,green,auto,, +NS,10314,V3,T1w,yellow,auto,2022-07-19, +NS,10318,V1,CUFF1,green,auto,, +NS,10318,V1,CUFF2,green,auto,, +NS,10318,V1,DWI,green,auto,, +NS,10318,V1,REST1,green,auto,, +NS,10318,V1,REST2,green,auto,, +NS,10318,V1,T1w,yellow,auto,2022-04-01, +NS,10318,V3,CUFF1,green,auto,, +NS,10318,V3,CUFF2,green,auto,, +NS,10318,V3,DWI,green,auto,, +NS,10318,V3,REST1,green,auto,, +NS,10318,V3,REST2,green,auto,, +NS,10318,V3,T1w,yellow,auto,2022-07-19, +NS,10319,V1,CUFF1,green,auto,, +NS,10319,V1,CUFF2,green,auto,, +NS,10319,V1,DWI,green,auto,, +NS,10319,V1,REST1,green,auto,, +NS,10319,V1,REST2,green,auto,, +NS,10319,V1,T1w,yellow,auto,2022-04-01, +NS,10319,V3,CUFF1,green,auto,, +NS,10319,V3,CUFF2,green,auto,, +NS,10319,V3,DWI,green,auto,, +NS,10319,V3,REST1,green,auto,, +NS,10319,V3,REST2,green,auto,, +NS,10319,V3,T1w,yellow,auto,2022-07-19, +NS,10328,V1,CUFF1,green,auto,, +NS,10328,V1,CUFF2,green,auto,, +NS,10328,V1,DWI,green,auto,, +NS,10328,V1,REST1,green,auto,, +NS,10328,V1,REST2,yellow,psadil,2022-04-13,"head-motion, wrap-around, inu, uncategorized" +NS,10328,V1,T1w,green,auto,2022-05-25, +NS,10328,V3,DWI,green,auto,, +NS,10328,V3,REST1,green,auto,, +NS,10328,V3,T1w,green,auto,2022-08-23, +NS,10330,V1,CUFF1,green,auto,, +NS,10330,V1,CUFF2,green,psadil,2022-08-05,"wrap-around, uncategorized" +NS,10330,V1,DWI,green,auto,, +NS,10330,V1,REST1,green,psadil,2022-08-05,uncategorized +NS,10330,V1,REST2,green,psadil,2022-08-05,"wrap-around, uncategorized" +NS,10330,V1,T1w,green,psadil,2022-04-13,"inu, postprocessing" +NS,10330,V3,CUFF1,green,auto,, +NS,10330,V3,CUFF2,green,auto,, +NS,10330,V3,DWI,green,auto,, +NS,10330,V3,REST1,yellow,psadil,2022-08-05,"head-motion, uncategorized" +NS,10330,V3,REST2,yellow,psadil,2022-08-05,"head-motion, uncategorized" +NS,10330,V3,T1w,yellow,auto,2022-08-23, +NS,10333,V1,CUFF1,green,auto,, +NS,10333,V1,CUFF2,green,auto,, +NS,10333,V1,DWI,green,auto,, +NS,10333,V1,REST1,green,auto,, +NS,10333,V1,REST2,green,auto,, +NS,10333,V1,T1w,green,auto,2022-05-25, +NS,10333,V3,CUFF1,green,auto,, +NS,10333,V3,CUFF2,green,auto,, +NS,10333,V3,DWI,green,auto,, +NS,10333,V3,REST1,green,psadil,2022-08-15,"head-motion, uncategorized" +NS,10333,V3,REST2,green,auto,, +NS,10333,V3,T1w,green,auto,2022-08-23, +NS,10334,V1,CUFF1,green,auto,, +NS,10334,V1,CUFF2,green,auto,, +NS,10334,V1,DWI,green,auto,, +NS,10334,V1,REST1,green,auto,, +NS,10334,V1,REST2,green,auto,, +NS,10334,V1,T1w,green,auto,2022-07-12, +NS,10340,V1,CUFF1,green,auto,, +NS,10340,V1,CUFF2,yellow,psadil,2022-04-14,"head-motion, uncategorized" +NS,10340,V1,DWI,green,auto,, +NS,10340,V1,REST1,green,auto,, +NS,10340,V1,REST2,yellow,psadil,2022-04-14,"head-motion, uncategorized" +NS,10340,V1,T1w,green,auto,2022-05-25, +NS,10340,V3,CUFF1,green,auto,, +NS,10340,V3,CUFF2,green,auto,, +NS,10340,V3,DWI,green,auto,, +NS,10340,V3,REST1,green,auto,, +NS,10340,V3,REST2,green,auto,, +NS,10340,V3,T1w,green,auto,2022-08-23, +NS,10342,V1,CUFF1,green,auto,, +NS,10342,V1,CUFF2,green,auto,, +NS,10342,V1,DWI,green,auto,, +NS,10342,V1,REST1,green,auto,, +NS,10342,V1,REST2,green,auto,, +NS,10342,V1,T1w,yellow,auto,2022-05-25, +NS,10345,V1,CUFF1,green,auto,, +NS,10345,V1,CUFF2,green,auto,, +NS,10345,V1,DWI,green,auto,, +NS,10345,V1,REST1,green,auto,, +NS,10345,V1,REST2,green,auto,, +NS,10345,V1,T1w,green,auto,2022-05-25, +NS,10348,V1,DWI,green,auto,, +NS,10348,V1,REST1,green,auto,, +NS,10348,V1,T1w,yellow,auto,2022-05-24, +NS,10348,V3,DWI,green,auto,, +NS,10348,V3,REST1,green,auto,, +NS,10348,V3,T1w,green,auto,2022-08-23, +NS,10352,V1,CUFF1,green,auto,, +NS,10352,V1,CUFF2,green,auto,, +NS,10352,V1,DWI,green,auto,, +NS,10352,V1,REST1,green,auto,, +NS,10352,V1,REST2,green,auto,, +NS,10352,V1,T1w,yellow,technologist,, +NS,10352,V3,DWI,green,auto,, +NS,10352,V3,REST1,green,auto,, +NS,10352,V3,T1w,green,auto,2022-08-23, +NS,10353,V1,CUFF1,green,auto,, +NS,10353,V1,CUFF2,green,auto,, +NS,10353,V1,DWI,green,auto,, +NS,10353,V1,REST1,green,auto,, +NS,10353,V1,REST2,green,auto,, +NS,10353,V1,T1w,green,psadil,2022-04-29,"inu, postprocessing" +NS,10357,V1,DWI,green,auto,, +NS,10357,V1,REST1,green,auto,, +NS,10357,V1,T1w,green,auto,2022-05-24, +NS,10364,V1,CUFF1,green,auto,, +NS,10364,V1,CUFF2,green,auto,, +NS,10364,V1,DWI,green,auto,, +NS,10364,V1,REST1,green,auto,, +NS,10364,V1,REST2,green,auto,, +NS,10364,V1,T1w,yellow,auto,2022-05-24, +NS,10366,V1,CUFF1,green,psadil,2022-05-09,"wrap-around, inu, uncategorized" +NS,10366,V1,CUFF2,green,psadil,2022-05-09,"wrap-around, inu, uncategorized" +NS,10366,V1,DWI,green,auto,, +NS,10366,V1,REST1,green,psadil,2022-05-09,"head-motion, wrap-around, uncategorized" +NS,10366,V1,REST2,green,psadil,2022-05-09,"head-motion, wrap-around, inu, uncategorized" +NS,10366,V1,T1w,yellow,auto,2022-05-24, +NS,10375,V1,DWI,green,auto,, +NS,10375,V1,REST1,yellow,psadil,2022-05-26,"head-motion, inu, uncategorized" +NS,10375,V1,T1w,yellow,auto,2022-05-24, +NS,10379,V1,CUFF1,green,auto,, +NS,10379,V1,CUFF2,green,auto,, +NS,10379,V1,DWI,green,auto,, +NS,10379,V1,REST1,green,auto,, +NS,10379,V1,REST2,green,auto,, +NS,10379,V1,T1w,green,psadil,2022-05-24,inu +NS,10380,V1,DWI,green,auto,, +NS,10380,V1,REST1,green,auto,, +NS,10380,V1,T1w,green,auto,2022-07-12, +NS,10382,V1,CUFF1,green,auto,, +NS,10382,V1,CUFF2,green,auto,, +NS,10382,V1,DWI,green,auto,, +NS,10382,V1,REST1,green,psadil,2022-05-26,"head-motion, inu, uncategorized" +NS,10382,V1,REST2,green,auto,, +NS,10382,V1,T1w,yellow,auto,2022-05-24, +NS,10385,V1,CUFF1,green,auto,, +NS,10385,V1,CUFF2,green,auto,, +NS,10385,V1,DWI,green,auto,, +NS,10385,V1,REST1,green,auto,, +NS,10385,V1,REST2,green,auto,, +NS,10385,V1,T1w,green,auto,2022-07-12, +NS,10386,V1,DWI,green,auto,, +NS,10386,V1,REST1,green,auto,, +NS,10386,V1,T1w,green,auto,2022-07-12, +NS,10387,V1,DWI,green,auto,, +NS,10387,V1,REST1,green,auto,, +NS,10387,V1,T1w,yellow,auto,2022-07-12, +NS,10394,V1,CUFF1,green,auto,, +NS,10394,V1,CUFF2,green,auto,, +NS,10394,V1,DWI,green,auto,, +NS,10394,V1,REST1,green,auto,, +NS,10394,V1,REST2,green,auto,, +NS,10394,V1,T1w,green,auto,2022-07-12, +NS,10401,V1,DWI,green,auto,, +NS,10401,V1,REST1,green,auto,, +NS,10401,V1,T1w,yellow,auto,2022-07-12, +NS,10402,V1,CUFF1,green,auto,, +NS,10402,V1,CUFF2,green,auto,, +NS,10402,V1,DWI,green,auto,, +NS,10402,V1,REST1,green,auto,, +NS,10402,V1,REST2,green,auto,, +NS,10402,V1,T1w,green,psadil,2022-06-27,"inu, postprocessing" +NS,10406,V1,DWI,green,auto,, +NS,10406,V1,REST1,green,auto,, +NS,10406,V1,T1w,yellow,psadil,2022-07-19,"head-motion, postprocessing" +NS,10407,V1,DWI,green,auto,, +NS,10407,V1,REST1,yellow,psadil,2022-07-19,"head-motion, noise-local, wrap-around, uncategorized" +NS,10407,V1,T1w,yellow,auto,2022-07-12, +NS,10414,V1,CUFF1,green,auto,, +NS,10414,V1,CUFF2,green,auto,, +NS,10414,V1,DWI,green,auto,, +NS,10414,V1,REST1,green,auto,, +NS,10414,V1,REST2,green,auto,, +NS,10414,V1,T1w,yellow,auto,2022-07-19, +NS,10415,V1,DWI,green,auto,, +NS,10415,V1,REST1,green,auto,, +NS,10415,V1,T1w,yellow,auto,2022-07-12, +NS,10419,V1,DWI,green,auto,, +NS,10419,V1,REST1,green,auto,, +NS,10419,V1,T1w,green,psadil,2022-07-22,"inu, postprocessing" +NS,10428,V1,CUFF1,red,psadil,2022-07-19, +NS,10428,V1,CUFF2,red,psadil,2022-07-19, +NS,10428,V1,DWI,green,auto,, +NS,10428,V1,REST1,yellow,psadil,2022-07-19,"head-motion, wrap-around, uncategorized" +NS,10428,V1,REST2,yellow,psadil,2022-07-19,"head-motion, wrap-around, uncategorized" +NS,10428,V1,T1w,yellow,auto,2022-07-19, +NS,10429,V1,DWI,green,auto,, +NS,10429,V1,REST1,green,auto,, +NS,10429,V1,T1w,yellow,auto,2022-08-23, +NS,10430,V1,CUFF1,green,auto,, +NS,10430,V1,CUFF2,green,auto,, +NS,10430,V1,DWI,green,auto,, +NS,10430,V1,REST1,green,auto,, +NS,10430,V1,REST2,green,auto,, +NS,10430,V1,T1w,green,auto,2022-08-23, +NS,10431,V1,DWI,green,auto,, +NS,10431,V1,REST1,green,auto,, +NS,10431,V1,T1w,yellow,auto,2022-08-23, +NS,10432,V1,DWI,green,auto,, +NS,10432,V1,REST1,green,auto,, +NS,10432,V1,T1w,yellow,auto,2022-08-23, +NS,10434,V1,CUFF1,green,auto,, +NS,10434,V1,CUFF2,green,auto,, +NS,10434,V1,DWI,green,auto,, +NS,10434,V1,REST1,green,auto,, +NS,10434,V1,REST2,green,auto,, +NS,10434,V1,T1w,green,auto,2022-08-23, +NS,10437,V1,DWI,green,auto,, +NS,10437,V1,REST1,green,auto,, +NS,10437,V1,T1w,green,auto,2022-07-19, +SH,20108,V1,CUFF1,green,auto,, +SH,20108,V1,CUFF2,green,auto,, +SH,20108,V1,DWI,green,auto,, +SH,20108,V1,REST1,green,auto,, +SH,20108,V1,REST2,green,auto,, +SH,20108,V1,T1w,green,auto,2022-08-30, +SH,20124,V1,CUFF1,green,auto,, +SH,20124,V1,CUFF2,green,auto,, +SH,20124,V1,DWI,green,auto,, +SH,20124,V1,REST1,green,auto,, +SH,20124,V1,REST2,green,auto,, +SH,20124,V1,T1w,green,technologist,, +SH,20127,V1,CUFF1,green,auto,, +SH,20127,V1,CUFF2,green,auto,, +SH,20127,V1,DWI,green,auto,, +SH,20127,V1,REST1,green,auto,, +SH,20127,V1,REST2,green,auto,, +SH,20135,V1,CUFF1,green,auto,, +SH,20135,V1,CUFF2,green,auto,, +SH,20135,V1,DWI,green,auto,, +SH,20135,V1,REST1,green,auto,, +SH,20135,V1,REST2,green,auto,, +SH,20135,V1,T1w,green,technologist,, +SH,20138,V1,CUFF1,green,auto,, +SH,20138,V1,CUFF2,green,auto,, +SH,20138,V1,DWI,green,auto,, +SH,20138,V1,REST1,green,auto,, +SH,20138,V1,REST2,green,auto,, +SH,20138,V1,T1w,green,auto,2022-08-23, +SH,20146,V1,CUFF1,green,auto,, +SH,20146,V1,CUFF2,green,auto,, +SH,20146,V1,DWI,green,auto,, +SH,20146,V1,REST1,green,auto,, +SH,20146,V1,REST2,green,auto,, +SH,20146,V1,T1w,green,technologist,, +UC,10036,V1,CUFF1,green,auto,, +UC,10036,V1,CUFF2,green,auto,, +UC,10036,V1,DWI,green,auto,, +UC,10036,V1,REST1,yellow,psadil,2022-03-11,"head-motion, uncategorized" +UC,10036,V1,REST2,green,auto,, +UC,10036,V1,T1w,green,auto,2022-03-01, +UC,10036,V3,CUFF1,yellow,psadil,2022-03-02,head-motion +UC,10036,V3,CUFF2,yellow,psadil,2022-03-02,head-motion +UC,10036,V3,DWI,green,auto,, +UC,10036,V3,REST1,yellow,psadil,2022-03-02,head-motion +UC,10036,V3,REST2,yellow,psadil,2022-01-26,"head-motion, uncategorized" +UC,10036,V3,T1w,green,psadil,2022-03-15,postprocessing +UC,10040,V1,CUFF1,yellow,psadil,2022-03-15,"head-motion, uncategorized" +UC,10040,V1,CUFF2,green,auto,, +UC,10040,V1,DWI,green,auto,, +UC,10040,V1,REST1,green,auto,, +UC,10040,V1,REST2,green,auto,, +UC,10040,V1,T1w,green,auto,2022-03-01, +UC,10049,V1,CUFF1,green,auto,, +UC,10049,V1,CUFF2,green,auto,, +UC,10049,V1,DWI,green,auto,, +UC,10049,V1,REST1,green,auto,, +UC,10049,V1,REST2,green,auto,, +UC,10049,V1,T1w,yellow,psadil,2022-03-03, +UC,10049,V3,CUFF1,green,auto,, +UC,10049,V3,CUFF2,green,auto,, +UC,10049,V3,DWI,green,auto,, +UC,10049,V3,REST1,green,auto,, +UC,10049,V3,REST2,yellow,psadil,2022-03-02,head-motion +UC,10049,V3,T1w,green,psadil,2022-03-14,postprocessing +UC,10055,V1,CUFF1,green,auto,, +UC,10055,V1,CUFF2,green,auto,, +UC,10055,V1,DWI,green,auto,, +UC,10055,V1,REST1,green,auto,, +UC,10055,V1,REST2,green,auto,, +UC,10055,V1,T1w,green,psadil,2022-06-27, +UC,10058,V1,CUFF1,red,psadil,2022-03-02,head-motion +UC,10058,V1,CUFF2,red,psadil,2022-03-02,head-motion +UC,10058,V1,DWI,green,auto,, +UC,10058,V1,REST1,red,psadil,2022-03-02,head-motion +UC,10058,V1,REST2,red,psadil,2022-03-02,"head-motion, eye-spillover, noneye-spillover" +UC,10058,V1,T1w,green,auto,2022-03-01, +UC,10058,V3,CUFF1,red,psadil,2022-03-02,head-motion +UC,10058,V3,CUFF2,red,psadil,2022-03-02,head-motion +UC,10058,V3,DWI,green,auto,, +UC,10058,V3,REST1,red,psadil,2022-03-02,head-motion +UC,10058,V3,REST2,green,auto,, +UC,10058,V3,T1w,green,auto,2022-03-01, +UC,10064,V1,CUFF1,green,auto,, +UC,10064,V1,CUFF2,green,auto,, +UC,10064,V1,DWI,green,auto,, +UC,10064,V1,REST1,green,auto,, +UC,10064,V1,REST2,green,auto,, +UC,10064,V1,T1w,green,auto,2022-03-01, +UC,10064,V3,CUFF1,yellow,psadil,2022-03-02,head-motion +UC,10064,V3,CUFF2,yellow,psadil,2022-03-02,"head-motion, field-variation, uncategorized" +UC,10064,V3,DWI,green,auto,, +UC,10064,V3,REST1,green,auto,, +UC,10064,V3,REST2,green,auto,, +UC,10064,V3,T1w,green,psadil,2021-11-16, +UC,10066,V1,CUFF1,yellow,psadil,2022-03-02,head-motion +UC,10066,V1,CUFF2,red,psadil,2022-03-02,head-motion +UC,10066,V1,DWI,green,auto,, +UC,10066,V1,REST1,yellow,psadil,2022-03-02,head-motion +UC,10066,V1,T1w,green,psadil,2022-03-14, +UC,10067,V1,DWI,green,auto,, +UC,10067,V1,REST1,green,auto,, +UC,10067,V1,T1w,green,psadil,2022-06-27, +UC,10067,V3,CUFF1,red,psadil,2022-03-02,head-motion +UC,10067,V3,CUFF2,red,psadil,2022-03-02,head-motion +UC,10067,V3,DWI,green,auto,, +UC,10067,V3,REST1,red,psadil,2022-03-02,head-motion +UC,10067,V3,REST2,red,psadil,2022-03-02,"head-motion, uncategorized" +UC,10067,V3,T1w,green,auto,2022-03-01, +UC,10068,V3,CUFF1,red,psadil,2022-03-02, +UC,10068,V3,CUFF2,red,psadil,2022-03-02, +UC,10068,V3,DWI,green,auto,, +UC,10068,V3,REST1,red,psadil,2022-03-02,uncategorized +UC,10068,V3,REST2,red,psadil,2022-03-02, +UC,10068,V3,T1w,green,psadil,2021-11-16, +UC,10102,V1,CUFF1,green,auto,, +UC,10102,V1,CUFF2,green,auto,, +UC,10102,V1,DWI,green,auto,, +UC,10102,V1,REST1,green,auto,, +UC,10102,V1,REST2,green,auto,, +UC,10102,V1,T1w,green,auto,2022-03-01, +UC,10102,V3,CUFF1,green,auto,, +UC,10102,V3,CUFF2,green,auto,, +UC,10102,V3,DWI,green,auto,, +UC,10102,V3,REST1,yellow,psadil,2022-05-13,"head-motion, wrap-around, uncategorized" +UC,10102,V3,REST2,green,auto,, +UC,10102,V3,T1w,green,auto,2022-03-01, +UC,10103,V1,CUFF1,green,auto,, +UC,10103,V1,CUFF2,green,auto,, +UC,10103,V1,DWI,green,auto,, +UC,10103,V1,REST1,green,auto,, +UC,10103,V1,REST2,green,auto,, +UC,10103,V1,T1w,green,auto,2022-03-01, +UC,10103,V3,CUFF1,green,auto,, +UC,10103,V3,CUFF2,green,auto,, +UC,10103,V3,DWI,green,auto,, +UC,10103,V3,REST1,green,auto,, +UC,10103,V3,REST2,green,auto,, +UC,10103,V3,T1w,green,auto,2022-05-25, +UC,10119,V1,CUFF1,green,auto,, +UC,10119,V1,CUFF2,green,auto,, +UC,10119,V1,DWI,green,auto,, +UC,10119,V1,REST1,yellow,psadil,2022-03-02, +UC,10119,V1,REST2,green,auto,, +UC,10119,V1,T1w,green,auto,2022-03-01, +UC,10120,V1,CUFF1,green,auto,, +UC,10120,V1,CUFF2,green,auto,, +UC,10120,V1,DWI,green,auto,, +UC,10120,V1,REST1,green,auto,, +UC,10120,V1,REST2,green,auto,, +UC,10120,V1,T1w,green,auto,2022-03-01, +UC,10120,V3,CUFF1,green,auto,, +UC,10120,V3,CUFF2,green,auto,, +UC,10120,V3,DWI,green,auto,, +UC,10120,V3,REST1,green,auto,, +UC,10120,V3,REST2,green,auto,, +UC,10120,V3,T1w,green,psadil,2022-04-29, +UC,10132,V1,CUFF1,green,auto,, +UC,10132,V1,CUFF2,green,auto,, +UC,10132,V1,DWI,green,auto,, +UC,10132,V1,REST1,green,auto,, +UC,10132,V1,REST2,green,auto,, +UC,10132,V1,T1w,green,psadil,2022-08-30, +UC,10133,V1,CUFF1,yellow,psadil,2022-03-29,"head-motion, uncategorized" +UC,10133,V1,CUFF2,yellow,psadil,2022-03-02,head-motion +UC,10133,V1,DWI,green,auto,, +UC,10133,V1,REST1,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +UC,10133,V1,REST2,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +UC,10133,V1,T1w,yellow,psadil,2022-03-03,noise-local +UC,10135,V1,CUFF1,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +UC,10135,V1,DWI,green,auto,, +UC,10135,V1,REST1,green,auto,, +UC,10135,V1,REST2,green,auto,, +UC,10135,V1,T1w,green,psadil,2022-03-02, +UC,10147,V1,DWI,green,auto,, +UC,10147,V1,T1w,yellow,psadil,2022-03-03, +UC,10147,V3,DWI,green,auto,, +UC,10147,V3,T1w,green,auto,2022-07-12, +UC,10153,V1,CUFF1,green,auto,, +UC,10153,V1,CUFF2,green,auto,, +UC,10153,V1,DWI,green,auto,, +UC,10153,V1,REST1,green,auto,, +UC,10153,V1,REST2,green,auto,, +UC,10153,V1,T1w,green,auto,2022-03-01, +UC,10201,V1,CUFF1,green,auto,, +UC,10201,V1,CUFF2,green,auto,, +UC,10201,V1,DWI,green,auto,, +UC,10201,V1,REST1,red,psadil,2022-03-02,head-motion +UC,10201,V1,REST2,green,auto,, +UC,10201,V1,T1w,green,psadil,2022-03-02, +UC,10235,V1,CUFF1,green,auto,, +UC,10235,V1,CUFF2,green,auto,, +UC,10235,V1,DWI,green,auto,, +UC,10235,V1,REST1,green,auto,, +UC,10235,V1,T1w,green,auto,2022-03-01, +UC,10237,V1,CUFF1,yellow,psadil,2022-03-02,head-motion +UC,10237,V1,CUFF2,red,psadil,2022-03-02, +UC,10237,V1,DWI,green,auto,, +UC,10237,V1,REST1,green,auto,, +UC,10237,V1,REST2,green,auto,, +UC,10237,V1,T1w,green,auto,2022-03-01, +UC,10237,V3,CUFF1,green,auto,, +UC,10237,V3,CUFF2,green,auto,, +UC,10237,V3,DWI,green,auto,, +UC,10237,V3,REST1,green,auto,, +UC,10237,V3,REST2,green,auto,, +UC,10237,V3,T1w,green,auto,2022-07-19, +UC,10243,V1,CUFF1,green,psadil,2022-01-31, +UC,10243,V1,CUFF2,green,psadil,2022-01-31, +UC,10243,V1,DWI,green,auto,, +UC,10243,V1,REST1,green,psadil,2022-03-02,"head-motion, uncategorized" +UC,10243,V1,REST2,green,psadil,2022-03-02, +UC,10243,V1,T1w,green,auto,2022-03-01, +UC,10244,V1,CUFF1,red,psadil,2022-03-02,"head-motion, wrap-around" +UC,10244,V1,CUFF2,red,psadil,2022-03-02,head-motion +UC,10244,V1,DWI,green,auto,, +UC,10244,V1,REST1,red,psadil,2022-03-02,"head-motion, wrap-around" +UC,10244,V1,REST2,red,psadil,2022-03-02,head-motion +UC,10244,V1,T1w,green,auto,2022-03-02, +UC,10244,V3,CUFF1,green,auto,, +UC,10244,V3,CUFF2,green,auto,, +UC,10244,V3,DWI,green,auto,, +UC,10244,V3,REST1,green,auto,, +UC,10244,V3,REST2,green,auto,, +UC,10244,V3,T1w,yellow,technologist,, +UC,10245,V1,T1w,yellow,auto,2022-07-12, +UC,10286,V1,DWI,red,auto,, +UC,10286,V1,T1w,green,psadil,2022-06-27, +UC,10307,V1,CUFF1,green,auto,, +UC,10307,V1,CUFF2,green,auto,, +UC,10307,V1,DWI,green,auto,, +UC,10307,V1,REST1,green,auto,, +UC,10307,V1,REST2,green,auto,, +UC,10307,V1,T1w,yellow,auto,2022-04-01, +UC,10307,V3,CUFF1,green,auto,, +UC,10307,V3,CUFF2,green,auto,, +UC,10307,V3,DWI,green,auto,, +UC,10307,V3,REST1,green,auto,, +UC,10307,V3,REST2,green,auto,, +UC,10307,V3,T1w,green,auto,2022-07-19, +UC,10308,V1,CUFF1,green,auto,, +UC,10308,V1,CUFF2,green,auto,, +UC,10308,V1,DWI,green,auto,, +UC,10308,V1,REST1,green,auto,, +UC,10308,V1,REST2,green,auto,, +UC,10308,V1,T1w,green,psadil,2022-05-06, +UC,10308,V3,CUFF1,green,auto,, +UC,10308,V3,CUFF2,green,auto,, +UC,10308,V3,DWI,green,auto,, +UC,10308,V3,REST1,green,auto,, +UC,10308,V3,REST2,green,auto,, +UC,10308,V3,T1w,green,auto,2022-08-23, +UC,10315,V3,DWI,green,auto,, +UC,10315,V3,REST1,green,auto,, +UC,10315,V3,T1w,green,auto,2022-07-12, +UC,10321,V1,CUFF1,red,psadil,2022-03-29,"head-motion, uncategorized" +UC,10321,V1,CUFF2,red,psadil,2022-03-29,"head-motion, uncategorized" +UC,10321,V1,DWI,green,auto,, +UC,10321,V1,REST1,red,psadil,2022-03-29,"head-motion, uncategorized" +UC,10321,V1,REST2,yellow,psadil,2022-03-29,"head-motion, uncategorized" +UC,10321,V1,T1w,yellow,auto,2022-04-01, +UC,10325,V1,CUFF1,green,auto,, +UC,10325,V1,CUFF2,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UC,10325,V1,DWI,green,auto,, +UC,10325,V1,REST1,green,auto,, +UC,10325,V1,REST2,green,auto,, +UC,10325,V1,T1w,green,auto,2022-05-25, +UC,10327,V1,CUFF1,red,psadil,2022-07-19,"head-motion, uncategorized" +UC,10327,V1,CUFF2,red,psadil,2022-07-19,"head-motion, uncategorized" +UC,10327,V1,REST1,red,psadil,2022-07-19,"head-motion, uncategorized" +UC,10327,V1,REST2,red,psadil,2022-07-19,"head-motion, uncategorized" +UC,10327,V1,T1w,green,psadil,2022-06-27,uncategorized +UC,10329,V1,DWI,red,auto,, +UC,10329,V1,T1w,green,psadil,2022-06-27,head-motion +UC,10331,V1,CUFF1,green,auto,, +UC,10331,V1,CUFF2,green,auto,, +UC,10331,V1,DWI,green,auto,, +UC,10331,V1,REST1,green,auto,, +UC,10331,V1,REST2,green,auto,, +UC,10331,V1,T1w,yellow,psadil,2022-04-29,head-motion +UC,10331,V3,CUFF1,green,auto,, +UC,10331,V3,CUFF2,green,auto,, +UC,10331,V3,DWI,green,auto,, +UC,10331,V3,REST1,green,auto,, +UC,10331,V3,REST2,green,auto,, +UC,10331,V3,T1w,green,psadil,2022-08-30,noise-global +UC,10332,V1,CUFF1,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UC,10332,V1,CUFF2,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UC,10332,V1,DWI,green,auto,, +UC,10332,V1,REST1,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UC,10332,V1,REST2,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UC,10332,V1,T1w,green,psadil,2022-05-06,postprocessing +UC,10335,V1,CUFF1,green,auto,, +UC,10335,V1,CUFF2,green,auto,, +UC,10335,V1,DWI,green,auto,, +UC,10335,V1,REST1,green,auto,, +UC,10335,V1,REST2,green,auto,, +UC,10335,V1,T1w,green,auto,2022-05-25, +UC,10335,V3,CUFF1,green,auto,, +UC,10335,V3,DWI,green,auto,, +UC,10335,V3,REST1,green,auto,, +UC,10335,V3,REST2,green,auto,, +UC,10335,V3,T1w,yellow,technologist,, +UC,10341,V1,CUFF1,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UC,10341,V1,CUFF2,green,auto,, +UC,10341,V1,DWI,green,auto,, +UC,10341,V1,REST1,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UC,10341,V1,REST2,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UC,10341,V1,T1w,green,psadil,2022-05-26, +UC,10341,V3,CUFF1,green,auto,, +UC,10341,V3,CUFF2,green,auto,, +UC,10341,V3,DWI,green,auto,, +UC,10341,V3,REST1,green,auto,, +UC,10341,V3,REST2,green,auto,, +UC,10341,V3,T1w,green,psadil,2022-08-22, +UC,10350,V1,CUFF1,green,auto,, +UC,10350,V1,CUFF2,green,auto,, +UC,10350,V1,DWI,green,auto,, +UC,10350,V1,REST1,green,auto,, +UC,10350,V1,REST2,green,auto,, +UC,10350,V1,T1w,green,psadil,2022-04-29,noise-global +UC,10350,V3,CUFF1,green,auto,, +UC,10350,V3,CUFF2,green,auto,, +UC,10350,V3,DWI,green,auto,, +UC,10350,V3,REST1,green,auto,, +UC,10350,V3,T1w,green,technologist,, +UC,10354,V1,CUFF1,green,auto,, +UC,10354,V1,CUFF2,green,auto,, +UC,10354,V1,DWI,green,auto,, +UC,10354,V1,REST1,green,auto,, +UC,10354,V1,REST2,green,auto,, +UC,10354,V1,T1w,green,auto,2022-05-24, +UC,10356,V1,CUFF1,green,auto,, +UC,10356,V1,CUFF2,green,auto,, +UC,10356,V1,DWI,green,auto,, +UC,10356,V1,REST1,green,auto,, +UC,10356,V1,REST2,green,auto,, +UC,10356,V1,T1w,green,technologist,, +UC,10360,V1,CUFF1,green,auto,, +UC,10360,V1,CUFF2,green,auto,, +UC,10360,V1,DWI,green,auto,, +UC,10360,V1,REST1,green,auto,, +UC,10360,V1,T1w,green,auto,2022-05-24, +UC,10363,V1,CUFF1,red,psadil,2022-05-09,"head-motion, wrap-around, uncategorized" +UC,10363,V1,CUFF2,red,psadil,2022-05-09,"head-motion, wrap-around, uncategorized" +UC,10363,V1,DWI,green,auto,, +UC,10363,V1,REST1,red,psadil,2022-05-09,"head-motion, wrap-around, uncategorized" +UC,10363,V1,T1w,yellow,psadil,2022-05-06,"head-motion, noise-global, postprocessing" +UC,10372,V1,CUFF1,green,auto,, +UC,10372,V1,CUFF2,green,auto,, +UC,10372,V1,DWI,green,auto,, +UC,10372,V1,REST1,green,auto,, +UC,10372,V1,REST2,green,auto,, +UC,10372,V1,T1w,yellow,auto,2022-07-12, +UC,10392,V1,CUFF1,green,auto,, +UC,10392,V1,CUFF2,green,auto,, +UC,10392,V1,DWI,green,auto,, +UC,10392,V1,REST1,green,auto,, +UC,10392,V1,REST2,green,auto,, +UC,10392,V1,T1w,green,auto,2022-08-23, +UC,10393,V1,CUFF1,green,auto,, +UC,10393,V1,CUFF2,green,auto,, +UC,10393,V1,DWI,green,auto,, +UC,10393,V1,REST1,green,auto,, +UC,10393,V1,REST2,green,auto,, +UC,10393,V1,T1w,green,auto,2022-08-23, +UC,10411,V1,CUFF1,green,auto,, +UC,10411,V1,CUFF2,green,auto,, +UC,10411,V1,DWI,green,auto,, +UC,10411,V1,REST1,green,auto,, +UC,10411,V1,REST2,green,auto,, +UC,10411,V1,T1w,green,psadil,2022-08-05, +UC,10413,V1,CUFF1,green,auto,, +UC,10413,V1,CUFF2,green,psadil,2022-08-05,"head-motion, wrap-around, uncategorized" +UC,10413,V1,DWI,green,auto,, +UC,10413,V1,REST1,green,auto,, +UC,10413,V1,REST2,green,psadil,2022-08-05,"wrap-around, uncategorized" +UC,10413,V1,T1w,green,psadil,2022-08-05, +UC,10416,V1,CUFF1,green,auto,, +UC,10416,V1,DWI,green,auto,, +UC,10416,V1,REST1,green,auto,, +UC,10416,V1,T1w,green,auto,2022-07-12, +UC,10424,V1,CUFF1,green,auto,, +UC,10424,V1,CUFF2,green,auto,, +UC,10424,V1,DWI,green,auto,, +UC,10424,V1,REST1,green,auto,, +UC,10424,V1,REST2,green,auto,, +UC,10424,V1,T1w,green,psadil,2022-08-05, +UC,10425,V1,CUFF1,green,auto,, +UC,10425,V1,CUFF2,green,auto,, +UC,10425,V1,DWI,green,auto,, +UC,10425,V1,REST1,green,auto,, +UC,10425,V1,REST2,green,auto,, +UC,10425,V1,T1w,green,psadil,2022-08-22, +UC,10443,V1,CUFF1,green,auto,, +UC,10443,V1,CUFF2,green,auto,, +UC,10443,V1,DWI,green,auto,, +UC,10443,V1,REST1,green,auto,, +UC,10443,V1,REST2,green,auto,, +UC,10443,V1,T1w,green,technologist,, +UI,10003,V1,CUFF1,green,auto,, +UI,10003,V1,DWI,green,auto,, +UI,10003,V1,REST1,green,auto,, +UI,10003,V1,REST2,green,auto,, +UI,10003,V1,T1w,green,psadil,2022-05-06, +UI,10003,V3,CUFF1,green,auto,, +UI,10003,V3,DWI,green,auto,, +UI,10003,V3,REST1,green,auto,, +UI,10003,V3,REST2,green,auto,, +UI,10003,V3,T1w,green,psadil,2022-04-04,eye-spillover +UI,10005,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10008,V1,CUFF1,green,auto,, +UI,10008,V1,DWI,green,auto,, +UI,10008,V1,REST1,green,auto,, +UI,10008,V1,REST2,yellow,psadil,2022-03-02,head-motion +UI,10008,V1,T1w,green,auto,2022-03-01, +UI,10008,V3,CUFF1,yellow,psadil,2022-03-02,"head-motion, field-variation" +UI,10008,V3,DWI,green,auto,, +UI,10008,V3,REST1,green,auto,, +UI,10008,V3,REST2,yellow,psadil,2022-03-02,head-motion +UI,10008,V3,T1w,green,psadil,2022-03-02,postprocessing +UI,10009,V1,T1w,green,auto,2022-03-01, +UI,10010,V1,CUFF1,green,auto,, +UI,10010,V1,CUFF2,green,auto,, +UI,10010,V1,DWI,green,auto,, +UI,10010,V1,REST1,red,psadil,2022-03-02,"head-motion, wrap-around, uncategorized" +UI,10010,V1,REST2,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UI,10010,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10010,V3,CUFF1,red,psadil,2022-03-02,head-motion +UI,10010,V3,DWI,green,auto,, +UI,10010,V3,REST1,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10010,V3,REST2,red,psadil,2022-03-02,head-motion +UI,10010,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10011,V1,CUFF1,green,auto,, +UI,10011,V1,CUFF2,green,auto,, +UI,10011,V1,DWI,green,auto,, +UI,10011,V1,REST1,green,auto,, +UI,10011,V1,REST2,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10011,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10011,V3,CUFF1,green,auto,, +UI,10011,V3,CUFF2,green,auto,, +UI,10011,V3,DWI,green,auto,, +UI,10011,V3,REST1,green,auto,, +UI,10011,V3,REST2,yellow,psadil,2022-04-04,"head-motion, wrap-around, uncategorized" +UI,10011,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10013,V1,CUFF1,green,auto,, +UI,10013,V1,DWI,green,auto,, +UI,10013,V1,REST1,green,auto,, +UI,10013,V1,REST2,green,auto,, +UI,10013,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10013,V3,CUFF1,green,auto,, +UI,10013,V3,DWI,green,auto,, +UI,10013,V3,REST1,green,auto,, +UI,10013,V3,REST2,green,auto,, +UI,10013,V3,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10014,V1,CUFF1,green,auto,, +UI,10014,V1,DWI,green,auto,, +UI,10014,V1,REST1,green,auto,, +UI,10014,V1,REST2,green,auto,, +UI,10014,V1,T1w,green,auto,2022-03-01, +UI,10014,V3,DWI,green,auto,, +UI,10014,V3,T1w,green,psadil,2022-04-04,eye-spillover +UI,10015,V1,CUFF1,green,auto,, +UI,10015,V1,DWI,green,auto,, +UI,10015,V1,REST1,green,auto,, +UI,10015,V1,REST2,green,auto,, +UI,10015,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10015,V3,CUFF1,green,auto,, +UI,10015,V3,DWI,green,auto,, +UI,10015,V3,REST1,green,auto,, +UI,10015,V3,REST2,red,psadil,2022-03-02,head-motion +UI,10015,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10017,V1,CUFF1,green,auto,, +UI,10017,V1,DWI,green,auto,, +UI,10017,V1,REST1,green,auto,, +UI,10017,V1,REST2,yellow,psadil,2022-03-02,head-motion +UI,10017,V1,T1w,green,auto,2022-03-01, +UI,10020,V1,CUFF1,green,auto,, +UI,10020,V1,DWI,green,auto,, +UI,10020,V1,REST1,green,auto,, +UI,10020,V1,REST2,green,auto,, +UI,10020,V1,T1w,green,auto,2022-03-01, +UI,10023,V1,CUFF1,green,auto,, +UI,10023,V1,CUFF2,green,auto,, +UI,10023,V1,DWI,green,auto,, +UI,10023,V1,REST1,green,auto,, +UI,10023,V1,REST2,green,auto,, +UI,10023,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10023,V3,CUFF1,green,auto,, +UI,10023,V3,DWI,green,auto,, +UI,10023,V3,REST1,green,auto,, +UI,10023,V3,REST2,green,auto,, +UI,10023,V3,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10024,V1,CUFF1,green,auto,, +UI,10024,V1,DWI,green,auto,, +UI,10024,V1,REST1,green,auto,, +UI,10024,V1,REST2,green,auto,, +UI,10024,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10024,V3,DWI,green,auto,, +UI,10024,V3,REST1,green,auto,, +UI,10024,V3,REST2,green,auto,, +UI,10024,V3,T1w,green,auto,2022-03-01, +UI,10026,V1,CUFF1,green,auto,, +UI,10026,V1,DWI,green,auto,, +UI,10026,V1,REST1,green,auto,, +UI,10026,V1,REST2,green,auto,, +UI,10026,V1,T1w,green,psadil,2022-03-02, +UI,10028,V1,CUFF1,green,auto,, +UI,10028,V1,DWI,green,auto,, +UI,10028,V1,REST1,green,auto,, +UI,10028,V1,REST2,green,auto,, +UI,10028,V1,T1w,green,auto,2022-03-01, +UI,10028,V3,CUFF1,green,auto,, +UI,10028,V3,DWI,green,auto,, +UI,10028,V3,REST1,green,auto,, +UI,10028,V3,REST2,green,auto,, +UI,10028,V3,T1w,green,auto,2022-03-01, +UI,10029,V1,CUFF1,yellow,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10029,V1,DWI,green,auto,, +UI,10029,V1,REST1,yellow,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10029,V1,REST2,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10029,V1,T1w,green,psadil,2022-03-02,postprocessing +UI,10030,V1,CUFF1,green,auto,, +UI,10030,V1,CUFF2,green,auto,, +UI,10030,V1,DWI,green,auto,, +UI,10030,V1,REST1,green,auto,, +UI,10030,V1,REST2,green,auto,, +UI,10030,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10030,V3,CUFF1,green,auto,, +UI,10030,V3,DWI,green,auto,, +UI,10030,V3,REST1,green,auto,, +UI,10030,V3,REST2,green,auto,, +UI,10030,V3,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10031,V1,CUFF1,green,auto,, +UI,10031,V1,DWI,green,auto,, +UI,10031,V1,REST1,green,auto,, +UI,10031,V1,REST2,green,auto,, +UI,10031,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10031,V3,CUFF1,green,auto,, +UI,10031,V3,CUFF2,green,auto,, +UI,10031,V3,DWI,green,auto,, +UI,10031,V3,REST1,green,auto,, +UI,10031,V3,REST2,green,auto,, +UI,10031,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10032,V1,CUFF1,green,auto,, +UI,10032,V1,DWI,green,auto,, +UI,10032,V1,REST1,green,auto,, +UI,10032,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10032,V3,CUFF1,green,auto,, +UI,10032,V3,CUFF2,green,auto,, +UI,10032,V3,DWI,green,auto,, +UI,10032,V3,DWI,green,auto,, +UI,10032,V3,REST1,green,auto,, +UI,10032,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10033,V1,CUFF1,green,auto,, +UI,10033,V1,DWI,green,auto,, +UI,10033,V1,REST1,green,auto,, +UI,10033,V1,REST2,green,auto,, +UI,10033,V1,T1w,green,psadil,2022-03-02, +UI,10033,V3,CUFF1,green,auto,, +UI,10033,V3,DWI,green,auto,, +UI,10033,V3,REST1,green,auto,, +UI,10033,V3,REST2,green,auto,, +UI,10033,V3,T1w,green,psadil,2022-03-02, +UI,10034,V1,CUFF1,red,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10034,V1,DWI,green,auto,, +UI,10034,V1,REST1,red,psadil,2022-03-02,head-motion +UI,10034,V1,REST2,red,psadil,2022-03-02,"head-motion, noise-local, uncategorized" +UI,10034,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10034,V3,CUFF1,green,auto,, +UI,10034,V3,DWI,green,auto,, +UI,10034,V3,REST1,green,auto,, +UI,10034,V3,REST2,green,auto,, +UI,10034,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10035,V1,CUFF1,green,auto,, +UI,10035,V1,DWI,green,auto,, +UI,10035,V1,REST1,green,auto,, +UI,10035,V1,REST2,green,auto,, +UI,10035,V1,T1w,green,auto,2022-03-01, +UI,10035,V3,CUFF1,green,auto,, +UI,10035,V3,CUFF2,green,auto,, +UI,10035,V3,DWI,green,auto,, +UI,10035,V3,REST1,green,auto,, +UI,10035,V3,REST2,yellow,psadil,2022-03-02,head-motion +UI,10035,V3,T1w,green,psadil,2022-04-04,postprocessing +UI,10037,V1,CUFF1,green,auto,, +UI,10037,V1,DWI,green,auto,, +UI,10037,V1,REST1,green,auto,, +UI,10037,V1,REST2,green,auto,, +UI,10037,V1,T1w,green,auto,2022-03-01, +UI,10037,V3,CUFF1,green,psadil,2022-03-02,em-perturbation +UI,10037,V3,CUFF2,green,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10037,V3,DWI,green,auto,, +UI,10037,V3,REST1,green,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10037,V3,REST2,green,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10037,V3,T1w,yellow,psadil,2022-03-02,head-motion +UI,10038,V1,CUFF1,yellow,psadil,2022-01-31,"head-motion, wrap-around" +UI,10038,V1,DWI,green,auto,, +UI,10038,V1,REST1,green,auto,, +UI,10038,V1,REST2,green,auto,, +UI,10038,V1,T1w,green,auto,2022-03-01, +UI,10038,V3,CUFF1,green,auto,, +UI,10038,V3,DWI,green,auto,, +UI,10038,V3,REST1,green,auto,, +UI,10038,V3,REST2,green,auto,, +UI,10038,V3,T1w,green,auto,2022-03-01, +UI,10041,V1,CUFF1,green,auto,, +UI,10041,V1,CUFF2,green,auto,, +UI,10041,V1,DWI,green,auto,, +UI,10041,V1,REST1,green,auto,, +UI,10041,V1,REST2,green,auto,, +UI,10041,V1,T1w,green,auto,2022-03-01, +UI,10041,V3,CUFF1,green,auto,, +UI,10041,V3,CUFF2,green,auto,, +UI,10041,V3,DWI,green,auto,, +UI,10041,V3,REST1,green,auto,, +UI,10041,V3,REST2,green,auto,, +UI,10041,V3,T1w,green,auto,2022-03-01, +UI,10044,V1,CUFF1,green,auto,, +UI,10044,V1,CUFF2,green,auto,, +UI,10044,V1,DWI,green,auto,, +UI,10044,V1,REST1,green,auto,, +UI,10044,V1,REST2,green,auto,, +UI,10044,V1,T1w,green,auto,2022-03-01, +UI,10044,V3,CUFF1,green,auto,, +UI,10044,V3,DWI,green,auto,, +UI,10044,V3,REST1,green,auto,, +UI,10044,V3,REST2,green,auto,, +UI,10044,V3,T1w,green,psadil,2022-03-02,head-motion +UI,10045,V1,CUFF1,green,auto,, +UI,10045,V1,CUFF2,green,auto,, +UI,10045,V1,DWI,green,auto,, +UI,10045,V1,REST1,green,auto,, +UI,10045,V1,REST2,green,auto,, +UI,10045,V1,T1w,green,psadil,2022-03-02, +UI,10045,V3,CUFF1,green,auto,, +UI,10045,V3,CUFF2,green,auto,, +UI,10045,V3,DWI,green,auto,, +UI,10045,V3,REST1,green,auto,, +UI,10045,V3,REST2,green,auto,, +UI,10045,V3,T1w,green,psadil,2022-03-02, +UI,10052,V1,CUFF1,green,auto,, +UI,10052,V1,CUFF2,green,auto,, +UI,10052,V1,DWI,green,auto,, +UI,10052,V1,REST1,green,auto,, +UI,10052,V1,REST2,green,auto,, +UI,10052,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10052,V3,CUFF1,green,auto,, +UI,10052,V3,CUFF2,green,auto,, +UI,10052,V3,DWI,green,auto,, +UI,10052,V3,REST1,green,auto,, +UI,10052,V3,REST2,green,auto,, +UI,10052,V3,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10056,V1,CUFF1,green,auto,, +UI,10056,V1,CUFF2,green,psadil,2022-03-02,head-motion +UI,10056,V1,DWI,green,auto,, +UI,10056,V1,REST1,green,auto,, +UI,10056,V1,REST2,green,auto,, +UI,10056,V1,T1w,green,auto,2022-03-01, +UI,10056,V3,CUFF1,green,auto,, +UI,10056,V3,DWI,green,auto,, +UI,10056,V3,REST1,green,auto,, +UI,10056,V3,REST2,green,auto,, +UI,10056,V3,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10057,V1,CUFF1,green,auto,, +UI,10057,V1,CUFF2,green,auto,, +UI,10057,V1,DWI,green,auto,, +UI,10057,V1,REST1,green,auto,, +UI,10057,V1,REST2,green,auto,, +UI,10057,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10057,V3,CUFF1,green,auto,, +UI,10057,V3,DWI,green,auto,, +UI,10057,V3,REST1,green,auto,, +UI,10057,V3,REST2,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UI,10057,V3,T1w,green,auto,2022-08-23, +UI,10062,V1,CUFF1,green,auto,, +UI,10062,V1,CUFF2,green,auto,, +UI,10062,V1,DWI,green,auto,, +UI,10062,V1,REST1,green,auto,, +UI,10062,V1,REST2,green,auto,, +UI,10062,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10062,V3,CUFF1,green,auto,, +UI,10062,V3,CUFF2,green,auto,, +UI,10062,V3,DWI,green,auto,, +UI,10062,V3,REST1,green,auto,, +UI,10062,V3,REST2,green,auto,, +UI,10062,V3,T1w,yellow,psadil,2022-03-02,head-motion +UI,10063,V1,CUFF1,green,auto,, +UI,10063,V1,DWI,green,auto,, +UI,10063,V1,REST1,green,auto,, +UI,10063,V1,REST2,yellow,psadil,2022-03-02,head-motion +UI,10063,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10063,V3,CUFF1,green,auto,, +UI,10063,V3,DWI,green,auto,, +UI,10063,V3,REST1,green,auto,, +UI,10063,V3,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10072,V1,CUFF1,green,psadil,2022-01-31,head-motion +UI,10072,V1,CUFF2,green,psadil,2022-01-05,head-motion +UI,10072,V1,DWI,green,auto,, +UI,10072,V1,REST1,green,psadil,2022-03-02,head-motion +UI,10072,V1,REST2,green,psadil,2022-03-02,"head-motion, eye-spillover" +UI,10072,V1,T1w,green,auto,2022-03-01, +UI,10072,V3,CUFF1,yellow,psadil,2022-03-02,"noise-global, uncategorized" +UI,10072,V3,CUFF2,yellow,psadil,2022-03-02,"head-motion, noise-global, uncategorized" +UI,10072,V3,DWI,green,auto,, +UI,10072,V3,REST1,yellow,psadil,2022-03-02,head-motion +UI,10072,V3,REST2,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +UI,10072,V3,T1w,green,psadil,2021-11-16,"ghosts-other, inu" +UI,10082,V1,CUFF1,green,psadil,2022-03-02,"head-motion, em-perturbation, uncategorized" +UI,10082,V1,CUFF2,yellow,psadil,2022-01-05,"head-motion, em-perturbation, uncategorized" +UI,10082,V1,DWI,green,auto,, +UI,10082,V1,REST1,yellow,psadil,2022-03-02,"head-motion, em-perturbation, uncategorized" +UI,10082,V1,REST2,yellow,psadil,2022-01-05,"head-motion, eye-spillover, em-perturbation, uncategorized" +UI,10082,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10082,V3,DWI,green,auto,, +UI,10082,V3,REST1,green,auto,, +UI,10082,V3,REST2,green,psadil,2022-03-02,"head-motion, em-perturbation, uncategorized" +UI,10082,V3,T1w,yellow,psadil,2022-03-02,head-motion +UI,10087,V1,CUFF1,green,auto,, +UI,10087,V1,DWI,green,auto,, +UI,10087,V1,REST1,yellow,psadil,2022-03-02,head-motion +UI,10087,V1,REST2,yellow,psadil,2022-03-02,head-motion +UI,10087,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10087,V3,CUFF1,red,psadil,2022-03-02,"head-motion, eye-spillover" +UI,10087,V3,CUFF2,red,psadil,2022-03-02,"head-motion, eye-spillover" +UI,10087,V3,DWI,green,auto,, +UI,10087,V3,REST1,red,psadil,2022-03-02,"head-motion, eye-spillover, wrap-around" +UI,10087,V3,REST2,red,psadil,2022-03-02,"head-motion, eye-spillover, wrap-around" +UI,10087,V3,T1w,yellow,psadil,2022-03-02,head-motion +UI,10088,V1,CUFF1,green,auto,, +UI,10088,V1,DWI,green,auto,, +UI,10088,V1,REST1,green,auto,, +UI,10088,V1,REST2,green,auto,, +UI,10088,V1,T1w,green,psadil,2022-03-02, +UI,10088,V3,DWI,green,auto,, +UI,10088,V3,REST1,green,auto,, +UI,10088,V3,REST2,green,auto,, +UI,10088,V3,T1w,yellow,psadil,2022-03-02,"inu, postprocessing" +UI,10089,V1,DWI,green,auto,, +UI,10089,V1,REST1,green,auto,, +UI,10089,V1,T1w,green,auto,2022-03-01, +UI,10089,V3,DWI,green,auto,, +UI,10089,V3,REST1,green,auto,, +UI,10089,V3,REST2,green,auto,, +UI,10089,V3,T1w,yellow,psadil,2022-03-02,"head-motion, inu" +UI,10090,V1,CUFF1,green,auto,, +UI,10090,V1,DWI,green,auto,, +UI,10090,V1,REST1,green,auto,, +UI,10090,V1,REST2,green,auto,, +UI,10090,V1,T1w,green,auto,2022-03-01, +UI,10090,V3,CUFF1,green,auto,, +UI,10090,V3,CUFF2,green,auto,, +UI,10090,V3,DWI,green,auto,, +UI,10090,V3,REST1,green,auto,, +UI,10090,V3,REST2,green,auto,, +UI,10090,V3,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10097,V1,CUFF1,red,psadil,2022-01-05,eye-spillover +UI,10097,V1,DWI,green,auto,, +UI,10097,V1,REST1,green,auto,, +UI,10097,V1,REST2,green,auto,, +UI,10097,V1,T1w,green,auto,2022-03-01, +UI,10106,V1,CUFF1,green,auto,, +UI,10106,V1,CUFF2,green,auto,, +UI,10106,V1,DWI,green,auto,, +UI,10106,V1,REST1,green,psadil,2022-03-02,"head-motion, eye-spillover, uncategorized" +UI,10106,V1,T1w,green,auto,2022-03-01, +UI,10106,V3,CUFF1,green,auto,, +UI,10106,V3,CUFF2,green,auto,, +UI,10106,V3,DWI,green,auto,, +UI,10106,V3,REST1,green,auto,, +UI,10106,V3,REST2,green,auto,, +UI,10106,V3,T1w,yellow,psadil,2022-03-02,"head-motion, inu" +UI,10107,V1,CUFF1,green,auto,, +UI,10107,V1,DWI,green,auto,, +UI,10107,V1,REST1,green,auto,, +UI,10107,V1,REST2,green,auto,, +UI,10107,V1,T1w,green,auto,2022-03-01, +UI,10107,V3,CUFF1,green,auto,, +UI,10107,V3,DWI,green,auto,, +UI,10107,V3,REST1,green,auto,, +UI,10107,V3,REST2,green,auto,, +UI,10107,V3,T1w,green,psadil,2022-03-02,postprocessing +UI,10108,V1,CUFF1,green,auto,, +UI,10108,V1,DWI,green,auto,, +UI,10108,V1,REST1,green,auto,, +UI,10108,V1,REST2,green,auto,, +UI,10108,V1,T1w,green,auto,2022-03-01, +UI,10108,V3,CUFF1,green,auto,, +UI,10108,V3,CUFF2,green,auto,, +UI,10108,V3,DWI,green,auto,, +UI,10108,V3,REST1,green,auto,, +UI,10108,V3,REST2,green,auto,, +UI,10108,V3,T1w,green,auto,2022-04-01, +UI,10109,V1,CUFF1,green,auto,, +UI,10109,V1,DWI,green,auto,, +UI,10109,V1,REST1,green,auto,, +UI,10109,V1,REST2,green,auto,, +UI,10109,V1,T1w,green,auto,2022-03-01, +UI,10109,V3,CUFF1,green,auto,, +UI,10109,V3,DWI,green,auto,, +UI,10109,V3,REST1,green,auto,, +UI,10109,V3,REST2,green,auto,, +UI,10109,V3,T1w,green,auto,2022-03-01, +UI,10110,V1,CUFF1,green,auto,, +UI,10110,V1,CUFF2,green,auto,, +UI,10110,V1,DWI,green,auto,, +UI,10110,V1,REST1,green,auto,, +UI,10110,V1,REST2,green,auto,, +UI,10110,V1,T1w,green,auto,2022-03-01, +UI,10110,V3,CUFF1,green,auto,, +UI,10110,V3,CUFF2,green,auto,, +UI,10110,V3,DWI,green,auto,, +UI,10110,V3,REST1,green,auto,, +UI,10110,V3,REST2,green,auto,, +UI,10110,V3,T1w,green,auto,2022-05-24, +UI,10121,V1,CUFF1,green,auto,, +UI,10121,V1,DWI,green,auto,, +UI,10121,V1,REST1,green,auto,, +UI,10121,V1,REST2,green,auto,, +UI,10121,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10123,V1,CUFF1,green,auto,, +UI,10123,V1,DWI,green,auto,, +UI,10123,V1,REST1,green,auto,, +UI,10123,V1,REST2,green,auto,, +UI,10123,V1,T1w,green,psadil,2022-06-27,noise-global +UI,10123,V3,CUFF1,green,auto,, +UI,10123,V3,CUFF2,green,auto,, +UI,10123,V3,DWI,green,auto,, +UI,10123,V3,REST1,green,auto,, +UI,10123,V3,REST2,green,auto,, +UI,10123,V3,T1w,green,psadil,2022-04-29,inu +UI,10125,V1,CUFF1,green,auto,, +UI,10125,V1,DWI,green,auto,, +UI,10125,V1,REST1,green,auto,, +UI,10125,V1,REST2,green,auto,, +UI,10125,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10125,V3,CUFF1,green,auto,, +UI,10125,V3,CUFF2,green,auto,, +UI,10125,V3,DWI,green,auto,, +UI,10125,V3,REST1,green,auto,, +UI,10125,V3,REST2,green,auto,, +UI,10125,V3,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10126,V1,CUFF1,green,auto,, +UI,10126,V1,DWI,green,auto,, +UI,10126,V1,REST1,green,auto,, +UI,10126,V1,REST2,green,auto,, +UI,10126,V1,T1w,green,auto,2022-03-01, +UI,10127,V1,CUFF1,green,auto,, +UI,10127,V1,DWI,green,auto,, +UI,10127,V1,REST1,green,auto,, +UI,10127,V1,REST2,green,auto,, +UI,10127,V1,T1w,green,psadil,2022-08-05,postprocessing +UI,10129,V1,CUFF1,green,auto,, +UI,10129,V1,CUFF2,green,auto,, +UI,10129,V1,DWI,green,auto,, +UI,10129,V1,REST1,green,auto,, +UI,10129,V1,T1w,green,psadil,2022-03-02,"noise-global, postprocessing" +UI,10129,V3,CUFF1,green,auto,, +UI,10129,V3,CUFF2,green,auto,, +UI,10129,V3,DWI,green,auto,, +UI,10129,V3,REST1,green,auto,, +UI,10129,V3,REST2,green,auto,, +UI,10129,V3,T1w,green,psadil,2022-03-02, +UI,10130,V1,CUFF1,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10130,V1,DWI,green,auto,, +UI,10130,V1,REST1,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10130,V1,REST2,red,psadil,2022-03-02,"head-motion, wrap-around, uncategorized" +UI,10130,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10130,V3,CUFF1,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10130,V3,DWI,green,auto,, +UI,10130,V3,REST1,green,auto,, +UI,10130,V3,REST2,red,psadil,2022-03-02,head-motion +UI,10130,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10134,V1,DWI,green,auto,, +UI,10134,V1,REST1,yellow,psadil,2022-03-02,"head-motion, eye-spillover, em-perturbation" +UI,10134,V1,REST2,green,auto,, +UI,10134,V1,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10134,V3,DWI,green,auto,, +UI,10134,V3,REST1,green,auto,, +UI,10134,V3,REST2,green,auto,, +UI,10134,V3,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10144,V1,CUFF1,green,auto,, +UI,10144,V1,CUFF2,green,auto,, +UI,10144,V1,DWI,green,auto,, +UI,10144,V1,REST1,green,auto,, +UI,10144,V1,REST2,green,auto,, +UI,10144,V1,T1w,red,psadil,2022-03-02,"head-motion, postprocessing" +UI,10144,V3,CUFF1,yellow,psadil,2022-07-19,"wrap-around, uncategorized" +UI,10144,V3,CUFF2,yellow,psadil,2022-07-19,"wrap-around, uncategorized" +UI,10144,V3,DWI,green,auto,, +UI,10144,V3,REST1,yellow,psadil,2022-07-19,"wrap-around, uncategorized" +UI,10144,V3,REST2,yellow,psadil,2022-07-19,"wrap-around, uncategorized" +UI,10144,V3,T1w,yellow,psadil,2022-07-19,"wrap-around, postprocessing" +UI,10149,V1,CUFF1,green,auto,, +UI,10149,V1,CUFF2,green,psadil,2022-03-02,uncategorized +UI,10149,V1,DWI,green,auto,, +UI,10149,V1,REST1,green,auto,, +UI,10149,V1,REST2,green,auto,, +UI,10149,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10150,V1,CUFF1,green,auto,, +UI,10150,V1,DWI,green,auto,, +UI,10150,V1,REST1,green,auto,, +UI,10150,V1,REST2,green,auto,, +UI,10150,V1,T1w,green,auto,2022-03-01, +UI,10150,V3,CUFF1,green,psadil,2022-04-04,"head-motion, uncategorized" +UI,10150,V3,DWI,green,auto,, +UI,10150,V3,REST1,green,psadil,2022-04-04,uncategorized +UI,10150,V3,REST2,green,psadil,2022-04-04,"head-motion, uncategorized" +UI,10150,V3,T1w,green,auto,2022-05-25, +UI,10154,V1,CUFF1,green,auto,, +UI,10154,V1,CUFF2,green,auto,, +UI,10154,V1,DWI,green,auto,, +UI,10154,V1,REST1,green,auto,, +UI,10154,V1,REST2,green,auto,, +UI,10154,V1,T1w,green,auto,2022-03-01, +UI,10155,V1,CUFF1,green,auto,, +UI,10155,V1,DWI,green,auto,, +UI,10155,V1,REST1,green,auto,, +UI,10155,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10156,V1,CUFF1,yellow,psadil,2022-03-02,ghosts-other +UI,10156,V1,DWI,green,auto,, +UI,10156,V1,REST1,yellow,psadil,2022-03-02,ghosts-other +UI,10156,V1,REST2,yellow,psadil,2022-03-02,ghosts-other +UI,10156,V1,T1w,green,auto,2022-03-01, +UI,10156,V3,CUFF1,green,auto,, +UI,10156,V3,DWI,green,auto,, +UI,10156,V3,REST1,green,auto,, +UI,10156,V3,REST2,green,auto,, +UI,10156,V3,T1w,green,auto,2022-03-02, +UI,10159,V1,CUFF1,green,psadil,2022-01-31,head-motion +UI,10159,V1,CUFF2,green,psadil,2022-01-05,"head-motion, eye-spillover, noneye-spillover, noise-global" +UI,10159,V1,DWI,green,auto,, +UI,10159,V1,REST1,green,psadil,2022-03-02,"head-motion, eye-spillover, noneye-spillover" +UI,10159,V1,REST2,green,psadil,2022-03-02,"head-motion, eye-spillover, noneye-spillover, em-perturbation" +UI,10159,V1,T1w,green,auto,2022-03-01, +UI,10159,V3,CUFF1,green,psadil,2022-04-04,"head-motion, uncategorized" +UI,10159,V3,CUFF2,green,auto,, +UI,10159,V3,DWI,green,auto,, +UI,10159,V3,REST1,green,psadil,2022-05-09,"head-motion, uncategorized" +UI,10159,V3,REST2,green,psadil,2022-05-09,"head-motion, wrap-around, uncategorized" +UI,10159,V3,T1w,yellow,psadil,2022-03-02,head-motion +UI,10169,V3,DWI,green,auto,, +UI,10169,V3,REST1,green,psadil,2022-03-15,"eye-spillover, uncategorized" +UI,10169,V3,REST2,green,auto,, +UI,10169,V3,T1w,green,auto,2022-04-01, +UI,10173,V1,CUFF1,green,auto,, +UI,10173,V1,DWI,green,auto,, +UI,10173,V1,REST1,yellow,psadil,2022-03-02,eye-spillover +UI,10173,V1,REST2,green,auto,, +UI,10173,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10173,V3,CUFF1,green,auto,, +UI,10173,V3,DWI,green,auto,, +UI,10173,V3,REST1,green,auto,, +UI,10173,V3,REST2,green,auto,, +UI,10173,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-local, postprocessing" +UI,10174,V1,CUFF1,green,auto,, +UI,10174,V1,CUFF2,green,auto,, +UI,10174,V1,DWI,green,auto,, +UI,10174,V1,REST1,green,auto,, +UI,10174,V1,REST2,green,auto,, +UI,10174,V1,T1w,green,auto,2022-03-01, +UI,10174,V3,CUFF1,green,auto,, +UI,10174,V3,CUFF2,green,auto,, +UI,10174,V3,DWI,green,auto,, +UI,10174,V3,REST1,green,auto,, +UI,10174,V3,REST2,green,auto,, +UI,10174,V3,T1w,yellow,psadil,2022-03-02,"head-motion, inu" +UI,10188,V1,CUFF1,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +UI,10188,V1,DWI,green,auto,, +UI,10188,V1,REST1,yellow,psadil,2022-03-02,head-motion +UI,10188,V1,T1w,green,psadil,2022-03-02, +UI,10188,V3,DWI,green,auto,, +UI,10188,V3,REST1,green,auto,, +UI,10188,V3,T1w,yellow,technologist,, +UI,10189,V1,DWI,green,auto,, +UI,10189,V1,REST1,green,auto,, +UI,10189,V1,REST2,green,auto,, +UI,10189,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10195,V1,DWI,green,auto,, +UI,10195,V1,REST1,green,auto,, +UI,10195,V1,T1w,red,psadil,2022-03-02,"head-motion, noise-global" +UI,10196,V1,DWI,green,auto,, +UI,10196,V1,REST1,green,auto,, +UI,10196,V1,REST2,green,auto,, +UI,10196,V1,T1w,green,auto,2022-03-01, +UI,10196,V3,DWI,green,auto,, +UI,10196,V3,REST1,green,auto,, +UI,10196,V3,REST2,green,auto,, +UI,10196,V3,T1w,yellow,psadil,2022-03-16,"head-motion, inu" +UI,10200,V1,CUFF1,green,auto,, +UI,10200,V1,CUFF2,green,auto,, +UI,10200,V1,DWI,green,auto,, +UI,10200,V1,REST1,green,auto,, +UI,10200,V1,REST2,green,auto,, +UI,10200,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10200,V3,CUFF1,green,auto,, +UI,10200,V3,CUFF2,green,auto,, +UI,10200,V3,DWI,green,auto,, +UI,10200,V3,REST1,green,auto,, +UI,10200,V3,T1w,yellow,technologist,, +UI,10209,V1,CUFF1,green,auto,, +UI,10209,V1,DWI,green,auto,, +UI,10209,V1,REST1,green,auto,, +UI,10209,V1,REST2,green,auto,, +UI,10209,V1,T1w,green,psadil,2022-03-02, +UI,10213,V1,CUFF1,green,auto,, +UI,10213,V1,CUFF2,green,auto,, +UI,10213,V1,DWI,green,auto,, +UI,10213,V1,REST1,green,auto,, +UI,10213,V1,REST2,green,auto,, +UI,10213,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10213,V3,CUFF1,green,auto,, +UI,10213,V3,CUFF2,green,auto,, +UI,10213,V3,DWI,green,auto,, +UI,10213,V3,REST1,green,auto,, +UI,10213,V3,T1w,green,auto,2022-05-24, +UI,10214,V1,CUFF1,green,auto,, +UI,10214,V1,DWI,green,auto,, +UI,10214,V1,REST1,yellow,psadil,2022-03-02,head-motion +UI,10214,V1,REST2,yellow,psadil,2022-03-02,head-motion +UI,10214,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10216,V1,DWI,green,auto,, +UI,10216,V1,REST1,red,psadil,2022-03-02,head-motion +UI,10216,V1,T1w,red,psadil,2022-03-02,"head-motion, noise-global" +UI,10217,V3,CUFF1,green,auto,, +UI,10217,V3,CUFF2,green,auto,, +UI,10217,V3,DWI,green,auto,, +UI,10217,V3,REST1,green,auto,, +UI,10217,V3,REST2,green,auto,, +UI,10217,V3,T1w,yellow,technologist,, +UI,10218,V1,CUFF1,red,psadil,2022-03-02,head-motion +UI,10218,V1,DWI,green,auto,, +UI,10218,V1,REST1,red,psadil,2022-03-02,head-motion +UI,10218,V1,REST2,red,psadil,2022-03-02,head-motion +UI,10218,V1,T1w,yellow,psadil,2022-03-02,head-motion +UI,10218,V3,DWI,green,auto,, +UI,10218,V3,REST1,green,auto,, +UI,10218,V3,REST2,green,auto,, +UI,10218,V3,T1w,green,psadil,2022-05-13,"head-motion, inu" +UI,10219,V1,CUFF1,green,auto,, +UI,10219,V1,CUFF2,green,auto,, +UI,10219,V1,DWI,green,auto,, +UI,10219,V1,REST1,green,auto,, +UI,10219,V1,REST2,green,auto,, +UI,10219,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-local" +UI,10219,V3,CUFF1,green,auto,, +UI,10219,V3,CUFF2,green,auto,, +UI,10219,V3,DWI,green,auto,, +UI,10219,V3,REST1,green,auto,, +UI,10219,V3,REST2,green,auto,, +UI,10219,V3,T1w,green,auto,2022-04-01, +UI,10222,V1,DWI,green,auto,, +UI,10222,V1,REST1,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +UI,10222,V1,REST2,yellow,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10222,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10222,V3,T1w,green,auto,2022-07-19, +UI,10224,V1,CUFF1,green,auto,, +UI,10224,V1,CUFF2,green,auto,, +UI,10224,V1,DWI,green,auto,, +UI,10224,V1,REST1,green,auto,, +UI,10224,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, inu, postprocessing" +UI,10224,V3,CUFF1,green,auto,, +UI,10224,V3,DWI,green,auto,, +UI,10224,V3,REST1,green,auto,, +UI,10224,V3,REST2,green,auto,, +UI,10224,V3,T1w,yellow,psadil,2022-04-14,"head-motion, postprocessing" +UI,10232,V1,CUFF1,green,auto,, +UI,10232,V1,DWI,green,auto,, +UI,10232,V1,REST1,green,psadil,2022-03-02,"head-motion, em-perturbation" +UI,10232,V1,REST2,green,auto,, +UI,10232,V1,T1w,green,auto,2022-03-01, +UI,10233,V1,CUFF1,green,auto,, +UI,10233,V1,DWI,green,auto,, +UI,10233,V1,REST1,green,auto,, +UI,10233,V1,REST2,green,auto,, +UI,10233,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UI,10233,V3,CUFF1,green,auto,, +UI,10233,V3,DWI,green,auto,, +UI,10233,V3,REST1,green,auto,, +UI,10233,V3,REST2,green,auto,, +UI,10233,V3,T1w,yellow,psadil,2022-03-22,"head-motion, noise-global, postprocessing" +UI,10236,V1,CUFF1,green,auto,, +UI,10236,V1,CUFF2,green,auto,, +UI,10236,V1,DWI,green,auto,, +UI,10236,V1,REST1,green,auto,, +UI,10236,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UI,10247,V1,CUFF1,green,auto,, +UI,10247,V1,DWI,green,auto,, +UI,10247,V1,REST1,green,auto,, +UI,10247,V1,REST2,green,auto,, +UI,10247,V1,T1w,green,auto,2022-03-01, +UI,10255,V1,CUFF1,green,auto,, +UI,10255,V1,CUFF2,green,auto,, +UI,10255,V1,DWI,green,auto,, +UI,10255,V1,REST1,green,auto,, +UI,10255,V1,REST2,green,auto,, +UI,10255,V1,T1w,green,auto,2022-03-01, +UI,10255,V3,CUFF1,green,auto,, +UI,10255,V3,CUFF2,green,auto,, +UI,10255,V3,DWI,green,auto,, +UI,10255,V3,REST1,green,psadil,2022-04-14,"head-motion, noise-global, field-variation, uncategorized" +UI,10255,V3,REST2,green,auto,, +UI,10255,V3,T1w,green,auto,2022-05-25, +UI,10261,V1,CUFF1,green,psadil,2022-01-31,head-motion +UI,10261,V1,CUFF2,green,auto,, +UI,10261,V1,DWI,green,auto,, +UI,10261,V1,REST1,green,auto,, +UI,10261,V1,REST2,green,auto,, +UI,10261,V1,T1w,green,auto,2022-03-01, +UI,10262,V1,DWI,green,auto,, +UI,10262,V1,REST1,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10262,V1,REST2,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10262,V1,T1w,red,psadil,2022-03-02,"head-motion, postprocessing" +UI,10265,V3,DWI,green,auto,, +UI,10265,V3,REST1,green,auto,, +UI,10265,V3,REST2,green,psadil,2022-05-03,"inu, uncategorized" +UI,10265,V3,T1w,yellow,technologist,, +UI,10266,V1,CUFF1,green,auto,, +UI,10266,V1,CUFF2,green,auto,, +UI,10266,V1,DWI,green,auto,, +UI,10266,V1,REST1,green,auto,, +UI,10266,V1,REST2,green,auto,, +UI,10266,V1,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10266,V3,CUFF1,green,auto,, +UI,10266,V3,CUFF2,green,auto,, +UI,10266,V3,DWI,green,auto,, +UI,10266,V3,REST1,green,auto,, +UI,10266,V3,REST2,green,auto,, +UI,10266,V3,T1w,green,auto,2022-05-25, +UI,10267,V1,CUFF1,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10267,V1,CUFF2,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10267,V1,DWI,green,auto,, +UI,10267,V1,REST1,red,psadil,2022-03-02,"head-motion, uncategorized" +UI,10267,V1,T1w,red,psadil,2022-03-02,head-motion +UI,10267,V3,CUFF1,green,auto,, +UI,10267,V3,DWI,green,auto,, +UI,10267,V3,REST1,green,auto,, +UI,10267,V3,REST2,green,auto,, +UI,10267,V3,T1w,yellow,technologist,, +UI,10269,V1,CUFF1,green,auto,, +UI,10269,V1,CUFF2,green,auto,, +UI,10269,V1,DWI,green,auto,, +UI,10269,V1,REST1,green,auto,, +UI,10269,V1,REST2,green,auto,, +UI,10269,V1,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10270,V1,DWI,green,auto,, +UI,10270,V1,REST1,green,auto,, +UI,10270,V1,REST2,green,auto,, +UI,10270,V1,T1w,green,auto,2022-03-01, +UI,10270,V3,CUFF1,green,auto,, +UI,10270,V3,CUFF2,green,auto,, +UI,10270,V3,DWI,green,auto,, +UI,10270,V3,REST1,green,auto,, +UI,10270,V3,T1w,yellow,technologist,, +UI,10272,V1,CUFF1,green,auto,, +UI,10272,V1,DWI,green,auto,, +UI,10272,V1,REST1,green,auto,, +UI,10272,V1,REST2,green,auto,, +UI,10272,V1,T1w,green,psadil,2022-03-02,postprocessing +UI,10272,V3,CUFF1,green,auto,, +UI,10272,V3,DWI,green,auto,, +UI,10272,V3,REST1,green,auto,, +UI,10272,V3,T1w,green,psadil,2022-05-16,"inu, postprocessing" +UI,10275,V1,CUFF1,green,auto,, +UI,10275,V1,CUFF2,yellow,psadil,2022-03-02,"head-motion, uncategorized" +UI,10275,V1,DWI,green,auto,, +UI,10275,V1,REST1,green,auto,, +UI,10275,V1,REST2,red,psadil,2022-03-02,"head-motion, inu, uncategorized" +UI,10275,V1,T1w,green,auto,2022-03-02, +UI,10275,V3,CUFF1,green,auto,, +UI,10275,V3,CUFF2,green,auto,, +UI,10275,V3,DWI,green,auto,, +UI,10275,V3,REST1,green,auto,, +UI,10275,V3,T1w,green,auto,2022-05-24, +UI,10277,V1,CUFF1,yellow,psadil,2022-03-03,"head-motion, inu, uncategorized" +UI,10277,V1,CUFF2,green,psadil,2022-03-02,"head-motion, inu" +UI,10277,V1,DWI,green,auto,, +UI,10277,V1,REST1,yellow,psadil,2022-03-02,"head-motion, uncategorized" +UI,10277,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10280,V1,DWI,green,auto,, +UI,10280,V1,REST1,green,auto,, +UI,10280,V1,REST2,green,auto,, +UI,10280,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, inu, postprocessing" +UI,10280,V3,DWI,green,auto,, +UI,10280,V3,REST1,green,auto,, +UI,10280,V3,REST2,green,auto,, +UI,10280,V3,T1w,yellow,technologist,, +UI,10281,V1,CUFF1,green,auto,, +UI,10281,V1,DWI,green,auto,, +UI,10281,V1,REST1,green,auto,, +UI,10281,V1,REST2,green,auto,, +UI,10281,V1,T1w,green,auto,2022-03-02, +UI,10282,V1,CUFF1,green,auto,, +UI,10282,V1,DWI,green,auto,, +UI,10282,V1,REST1,green,auto,, +UI,10282,V1,REST2,yellow,psadil,2022-03-02,"head-motion, uncategorized" +UI,10282,V1,T1w,green,auto,2022-03-02, +UI,10284,V1,CUFF1,green,auto,, +UI,10284,V1,DWI,green,auto,, +UI,10284,V1,REST1,green,auto,, +UI,10284,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10287,V1,CUFF1,green,auto,, +UI,10287,V1,CUFF2,green,auto,, +UI,10287,V1,DWI,green,auto,, +UI,10287,V1,REST1,green,auto,, +UI,10287,V1,REST2,green,auto,, +UI,10287,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UI,10287,V3,T1w,green,auto,2022-07-19, +UI,10292,V1,DWI,green,auto,, +UI,10292,V1,REST1,green,auto,, +UI,10292,V1,REST2,green,auto,, +UI,10292,V1,T1w,yellow,technologist,, +UI,10295,V1,CUFF1,green,psadil,2022-03-02,"head-motion, uncategorized" +UI,10295,V1,CUFF2,green,psadil,2022-03-02,"inu, uncategorized" +UI,10295,V1,DWI,green,auto,, +UI,10295,V1,REST1,green,psadil,2022-03-02,"head-motion, field-variation, uncategorized" +UI,10295,V1,REST2,green,psadil,2022-03-02,"field-variation, uncategorized" +UI,10295,V1,T1w,yellow,psadil,2022-03-02,"head-motion, inu, postprocessing" +UI,10295,V3,CUFF1,green,auto,, +UI,10295,V3,CUFF2,green,auto,, +UI,10295,V3,DWI,green,auto,, +UI,10295,V3,REST1,green,auto,, +UI,10295,V3,REST2,green,auto,, +UI,10295,V3,T1w,yellow,technologist,, +UI,10299,V1,CUFF1,green,psadil,2022-05-03,"head-motion, uncategorized" +UI,10299,V1,CUFF2,green,auto,, +UI,10299,V1,DWI,green,auto,, +UI,10299,V1,REST1,green,psadil,2022-04-04,"head-motion, em-perturbation, uncategorized" +UI,10299,V1,REST2,green,psadil,2022-04-04,"head-motion, em-perturbation, uncategorized" +UI,10299,V1,T1w,green,psadil,2022-04-29,inu +UI,10301,V1,CUFF1,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UI,10301,V1,CUFF2,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UI,10301,V1,DWI,green,auto,, +UI,10301,V1,REST1,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UI,10301,V1,REST2,yellow,psadil,2022-03-31,"head-motion, uncategorized" +UI,10301,V1,T1w,yellow,psadil,2022-04-29,"head-motion, postprocessing" +UI,10302,V1,DWI,green,auto,, +UI,10302,V1,REST1,green,auto,, +UI,10302,V1,REST2,green,auto,, +UI,10302,V1,T1w,yellow,psadil,2022-04-29,"head-motion, postprocessing" +UI,10302,V3,DWI,green,auto,, +UI,10302,V3,REST1,green,auto,, +UI,10302,V3,REST2,green,auto,, +UI,10302,V3,T1w,yellow,psadil,2022-07-19,"head-motion, postprocessing" +UI,10311,V1,CUFF1,green,auto,, +UI,10311,V1,DWI,green,auto,, +UI,10311,V1,REST1,green,auto,, +UI,10311,V1,REST2,green,auto,, +UI,10311,V1,T1w,green,auto,2022-04-01, +UI,10311,V3,CUFF1,green,auto,, +UI,10311,V3,CUFF2,green,auto,, +UI,10311,V3,DWI,green,auto,, +UI,10311,V3,REST1,green,auto,, +UI,10311,V3,REST2,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UI,10311,V3,T1w,yellow,technologist,, +UI,10313,V1,CUFF1,green,auto,, +UI,10313,V1,CUFF2,green,auto,, +UI,10313,V1,DWI,green,auto,, +UI,10313,V1,REST1,green,auto,, +UI,10313,V1,REST2,green,auto,, +UI,10313,V1,T1w,yellow,psadil,2022-03-22,"head-motion, inu, postprocessing" +UI,10313,V3,CUFF1,green,psadil,2022-07-19,"field-variation, uncategorized" +UI,10313,V3,CUFF2,green,auto,, +UI,10313,V3,DWI,green,auto,, +UI,10313,V3,REST1,green,auto,, +UI,10313,V3,REST2,green,auto,, +UI,10313,V3,T1w,green,auto,2022-07-12, +UI,10320,V1,DWI,green,auto,, +UI,10320,V1,REST1,green,auto,, +UI,10320,V1,REST2,green,auto,, +UI,10320,V1,T1w,green,auto,2022-05-24, +UI,10320,V3,DWI,green,auto,, +UI,10320,V3,REST1,green,auto,, +UI,10320,V3,REST2,green,auto,, +UI,10320,V3,T1w,green,auto,2022-08-23, +UI,10324,V1,CUFF1,green,auto,, +UI,10324,V1,CUFF2,green,auto,, +UI,10324,V1,DWI,green,auto,, +UI,10324,V1,REST1,green,auto,, +UI,10324,V1,REST2,green,auto,, +UI,10324,V1,T1w,yellow,psadil,2022-04-29,"head-motion, inu" +UI,10326,V1,CUFF1,green,auto,, +UI,10326,V1,CUFF2,green,auto,, +UI,10326,V1,DWI,green,auto,, +UI,10326,V1,REST1,green,auto,, +UI,10326,V1,REST2,green,auto,, +UI,10326,V1,T1w,green,auto,2022-05-25, +UI,10337,V1,CUFF1,green,auto,, +UI,10337,V1,CUFF2,green,auto,, +UI,10337,V1,DWI,green,auto,, +UI,10337,V1,REST1,green,auto,, +UI,10337,V1,REST2,green,auto,, +UI,10337,V1,T1w,green,auto,2022-07-12, +UI,10337,V3,CUFF1,green,auto,, +UI,10337,V3,CUFF2,green,auto,, +UI,10337,V3,DWI,green,auto,, +UI,10337,V3,REST1,green,auto,, +UI,10337,V3,REST2,green,auto,, +UI,10337,V3,T1w,green,auto,2022-08-23, +UI,10343,V1,DWI,green,auto,, +UI,10343,V1,REST1,green,auto,, +UI,10343,V1,REST2,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UI,10343,V1,T1w,yellow,technologist,, +UI,10343,V3,DWI,green,auto,, +UI,10343,V3,REST1,green,auto,, +UI,10343,V3,REST2,green,auto,, +UI,10343,V3,T1w,yellow,technologist,, +UI,10344,V1,CUFF1,green,auto,, +UI,10344,V1,CUFF2,yellow,psadil,2022-05-03,"head-motion, uncategorized" +UI,10344,V1,DWI,green,auto,, +UI,10344,V1,REST1,green,auto,, +UI,10344,V1,REST2,yellow,psadil,2022-05-09,"head-motion, uncategorized" +UI,10344,V1,T1w,yellow,technologist,, +UI,10346,V1,CUFF1,red,psadil,2022-05-09,"head-motion, uncategorized" +UI,10346,V1,CUFF2,red,psadil,2022-05-09,"head-motion, uncategorized" +UI,10346,V1,DWI,green,auto,, +UI,10346,V1,REST1,green,auto,, +UI,10346,V1,REST2,green,auto,, +UI,10346,V1,T1w,green,auto,2022-05-24, +UI,10346,V3,DWI,green,auto,, +UI,10346,V3,REST1,green,auto,, +UI,10346,V3,T1w,yellow,technologist,, +UI,10347,V1,CUFF1,green,auto,, +UI,10347,V1,DWI,green,auto,, +UI,10347,V1,REST1,green,auto,, +UI,10347,V1,REST2,green,auto,, +UI,10347,V1,T1w,yellow,auto,2022-05-24, +UI,10347,V3,CUFF1,green,auto,, +UI,10347,V3,DWI,green,auto,, +UI,10347,V3,REST1,green,auto,, +UI,10347,V3,REST2,green,auto,, +UI,10347,V3,T1w,green,auto,2022-08-23, +UI,10349,V1,DWI,green,auto,, +UI,10349,V1,REST1,green,auto,, +UI,10349,V1,REST2,green,auto,, +UI,10349,V1,T1w,yellow,auto,2022-05-25, +UI,10349,V3,CUFF1,green,auto,, +UI,10349,V3,DWI,green,auto,, +UI,10349,V3,REST1,green,auto,, +UI,10349,V3,REST2,green,auto,, +UI,10349,V3,T1w,green,auto,2022-08-23, +UI,10355,V1,CUFF1,red,psadil,2022-07-19,"head-motion, uncategorized" +UI,10355,V1,CUFF2,red,psadil,2022-07-19,"head-motion, uncategorized" +UI,10355,V1,DWI,green,auto,, +UI,10355,V1,REST1,red,psadil,2022-07-19,"head-motion, uncategorized" +UI,10355,V1,REST2,red,psadil,2022-07-19,"head-motion, field-variation, uncategorized" +UI,10355,V1,T1w,yellow,psadil,2022-05-26,"head-motion, inu" +UI,10355,V3,CUFF1,green,auto,, +UI,10355,V3,CUFF2,green,auto,, +UI,10355,V3,DWI,green,auto,, +UI,10355,V3,REST1,green,auto,, +UI,10355,V3,T1w,yellow,psadil,2022-08-30,head-motion +UI,10361,V3,CUFF1,green,auto,, +UI,10361,V3,CUFF2,green,auto,, +UI,10361,V3,DWI,green,auto,, +UI,10361,V3,REST1,green,auto,, +UI,10361,V3,REST2,green,auto,, +UI,10361,V3,T1w,yellow,technologist,, +UI,10362,V1,DWI,green,auto,, +UI,10362,V1,REST1,green,auto,, +UI,10362,V1,REST2,green,auto,, +UI,10362,V1,T1w,yellow,technologist,, +UI,10362,V3,CUFF1,green,auto,, +UI,10362,V3,DWI,green,auto,, +UI,10362,V3,REST1,green,auto,, +UI,10362,V3,REST2,green,auto,, +UI,10362,V3,T1w,yellow,technologist,, +UI,10367,V1,CUFF1,green,auto,, +UI,10367,V1,CUFF2,green,auto,, +UI,10367,V1,DWI,green,auto,, +UI,10367,V1,REST1,green,auto,, +UI,10367,V1,T1w,yellow,psadil,2022-06-27,"noise-global, postprocessing" +UI,10367,V3,CUFF1,green,auto,, +UI,10367,V3,CUFF2,green,auto,, +UI,10367,V3,DWI,green,auto,, +UI,10367,V3,REST1,green,auto,, +UI,10367,V3,REST2,green,auto,, +UI,10367,V3,T1w,green,psadil,2022-08-22,"head-motion, noise-global, postprocessing" +UI,10368,V1,CUFF1,green,auto,, +UI,10368,V1,CUFF2,green,auto,, +UI,10368,V1,DWI,green,auto,, +UI,10368,V1,REST1,green,auto,, +UI,10368,V1,T1w,yellow,technologist,, +UI,10384,V1,DWI,green,auto,, +UI,10384,V1,REST1,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UI,10384,V1,REST2,yellow,psadil,2022-07-19,"head-motion, uncategorized" +UI,10384,V1,T1w,green,auto,2022-05-24, +UI,10384,V3,DWI,green,auto,, +UI,10384,V3,REST1,green,auto,, +UI,10384,V3,REST2,green,auto,, +UI,10384,V3,T1w,green,psadil,2022-08-30,"inu, postprocessing" +UI,10390,V1,CUFF1,green,auto,, +UI,10390,V1,CUFF2,green,psadil,2022-07-19,uncategorized +UI,10390,V1,DWI,green,auto,, +UI,10390,V1,REST1,green,psadil,2022-07-19,"head-motion, uncategorized" +UI,10390,V1,REST2,green,psadil,2022-08-05,uncategorized +UI,10390,V1,T1w,yellow,psadil,2022-06-27,"head-motion, noise-global" +UI,10391,V1,CUFF1,green,auto,, +UI,10391,V1,CUFF2,green,auto,, +UI,10391,V1,DWI,green,auto,, +UI,10391,V1,REST1,green,auto,, +UI,10391,V1,REST2,green,auto,, +UI,10391,V1,T1w,yellow,technologist,, +UI,10395,V1,CUFF1,green,psadil,2022-07-19,"head-motion, uncategorized" +UI,10395,V1,DWI,green,auto,, +UI,10395,V1,REST1,green,psadil,2022-07-22,uncategorized +UI,10395,V1,REST2,green,psadil,2022-07-22,"head-motion, uncategorized" +UI,10395,V1,T1w,yellow,psadil,2022-06-27,"head-motion, noise-global, inu" +UI,10396,V1,CUFF1,green,auto,, +UI,10396,V1,CUFF2,green,auto,, +UI,10396,V1,DWI,green,auto,, +UI,10396,V1,REST1,green,auto,, +UI,10396,V1,REST2,green,auto,, +UI,10396,V1,T1w,green,psadil,2022-08-22,postprocessing +UI,10397,V1,DWI,green,auto,, +UI,10397,V1,REST1,green,auto,, +UI,10397,V1,REST2,green,auto,, +UI,10397,V1,T1w,yellow,technologist,, +UI,10398,V1,DWI,green,auto,, +UI,10398,V1,REST1,green,auto,, +UI,10398,V1,REST2,green,auto,, +UI,10398,V1,T1w,yellow,psadil,2022-07-19,"head-motion, noise-global, inu" +UI,10405,V1,DWI,green,auto,, +UI,10405,V1,REST1,green,auto,, +UI,10405,V1,REST2,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UI,10405,V1,T1w,yellow,psadil,2022-06-27,"head-motion, noise-global, postprocessing" +UI,10408,V1,DWI,green,auto,, +UI,10408,V1,REST1,green,auto,, +UI,10408,V1,REST2,green,auto,, +UI,10408,V1,T1w,yellow,technologist,, +UI,10417,V1,CUFF1,yellow,psadil,2022-07-22,"head-motion, wrap-around, uncategorized" +UI,10417,V1,CUFF2,yellow,psadil,2022-07-22,"head-motion, wrap-around, uncategorized" +UI,10417,V1,DWI,green,auto,, +UI,10417,V1,REST1,yellow,psadil,2022-07-22,"head-motion, wrap-around, uncategorized" +UI,10417,V1,T1w,green,auto,2022-07-12, +UI,10420,V1,CUFF1,green,auto,, +UI,10420,V1,DWI,green,auto,, +UI,10420,V1,REST1,green,auto,, +UI,10420,V1,REST2,green,auto,, +UI,10420,V1,T1w,yellow,technologist,, +UI,10421,V1,CUFF1,green,auto,, +UI,10421,V1,CUFF2,green,auto,, +UI,10421,V1,DWI,green,auto,, +UI,10421,V1,REST1,green,auto,, +UI,10421,V1,REST2,green,auto,, +UI,10421,V1,T1w,yellow,technologist,, +UI,10447,V1,CUFF1,green,auto,, +UI,10447,V1,CUFF2,green,auto,, +UI,10447,V1,DWI,green,auto,, +UI,10447,V1,REST1,green,auto,, +UI,10447,V1,REST2,green,auto,, +UI,10447,V1,T1w,green,auto,2022-08-23, +UI,10449,V1,CUFF1,green,auto,, +UI,10449,V1,DWI,green,auto,, +UI,10449,V1,REST1,green,auto,, +UI,10449,V1,REST2,green,auto,, +UI,10449,V1,T1w,green,technologist,, +UI,10452,V1,CUFF1,green,auto,, +UI,10452,V1,CUFF2,green,auto,, +UI,10452,V1,DWI,green,auto,, +UI,10452,V1,REST1,green,auto,, +UI,10452,V1,T1w,green,technologist,, +UI,10453,V1,CUFF1,green,auto,, +UI,10453,V1,DWI,green,auto,, +UI,10453,V1,REST1,green,auto,, +UI,10453,V1,REST2,green,auto,, +UI,10453,V1,T1w,green,auto,2022-09-06, +UM,20004,V1,CUFF1,red,psadil,2022-03-02,"head-motion, eye-spillover" +UM,20004,V1,CUFF2,red,psadil,2022-03-02,"head-motion, eye-spillover" +UM,20004,V1,DWI,green,auto,, +UM,20004,V1,REST1,yellow,psadil,2022-03-02,head-motion +UM,20004,V1,REST2,red,psadil,2022-03-02,"head-motion, eye-spillover" +UM,20004,V1,T1w,yellow,psadil,2022-05-26,"head-motion, noise-global, postprocessing" +UM,20004,V3,CUFF1,yellow,psadil,2022-03-02,"head-motion, eye-spillover" +UM,20004,V3,CUFF2,red,psadil,2022-03-02,"head-motion, eye-spillover" +UM,20004,V3,DWI,green,auto,, +UM,20004,V3,REST1,yellow,psadil,2022-03-02,"head-motion, field-variation, uncategorized" +UM,20004,V3,REST2,yellow,psadil,2022-03-02,"head-motion, inu, uncategorized" +UM,20004,V3,T1w,green,psadil,2022-05-26,"noise-global, inu, postprocessing" +UM,20007,V1,CUFF1,yellow,psadil,2022-02-02,head-motion +UM,20007,V1,CUFF2,green,auto,, +UM,20007,V1,DWI,green,auto,, +UM,20007,V1,REST1,green,auto,, +UM,20007,V1,REST2,green,auto,, +UM,20007,V1,T1w,green,auto,2022-03-01, +UM,20007,V3,CUFF1,green,auto,, +UM,20007,V3,CUFF2,green,auto,, +UM,20007,V3,DWI,green,auto,, +UM,20007,V3,REST1,green,auto,, +UM,20007,V3,REST2,green,auto,, +UM,20007,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UM,20009,V1,CUFF1,green,auto,, +UM,20009,V1,CUFF2,green,auto,, +UM,20009,V1,DWI,green,auto,, +UM,20009,V1,REST1,green,auto,, +UM,20009,V1,REST2,green,auto,, +UM,20009,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UM,20012,V1,CUFF1,red,psadil,2022-03-02,"head-motion, wrap-around, uncategorized" +UM,20012,V1,DWI,green,auto,, +UM,20012,V1,REST1,green,auto,, +UM,20012,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20013,V1,DWI,green,auto,, +UM,20013,V1,REST1,green,auto,, +UM,20013,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20013,V3,DWI,green,auto,, +UM,20013,V3,REST1,green,auto,, +UM,20013,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20016,V1,CUFF1,green,auto,, +UM,20016,V1,CUFF2,green,auto,, +UM,20016,V1,DWI,green,auto,, +UM,20016,V1,REST1,green,auto,, +UM,20016,V1,REST2,green,psadil,2022-03-02,"head-motion, eye-spillover" +UM,20016,V1,T1w,green,auto,2022-03-01, +UM,20016,V3,CUFF1,green,auto,, +UM,20016,V3,DWI,green,auto,, +UM,20016,V3,REST1,green,auto,, +UM,20016,V3,REST2,green,auto,, +UM,20016,V3,T1w,green,auto,2022-05-25, +UM,20017,V1,CUFF1,green,auto,, +UM,20017,V1,CUFF2,green,auto,, +UM,20017,V1,DWI,green,auto,, +UM,20017,V1,REST1,green,auto,, +UM,20017,V1,REST2,green,auto,, +UM,20017,V1,T1w,green,auto,2022-03-01, +UM,20017,V3,CUFF1,green,auto,, +UM,20017,V3,CUFF2,green,auto,, +UM,20017,V3,DWI,green,auto,, +UM,20017,V3,REST1,green,auto,, +UM,20017,V3,REST2,green,auto,, +UM,20017,V3,T1w,green,auto,2022-03-02, +UM,20018,V1,CUFF1,red,psadil,2022-01-05, +UM,20018,V1,DWI,green,auto,, +UM,20018,V1,REST1,green,auto,, +UM,20018,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UM,20018,V3,CUFF1,green,auto,, +UM,20018,V3,CUFF2,green,auto,, +UM,20018,V3,DWI,green,auto,, +UM,20018,V3,REST1,green,auto,, +UM,20018,V3,REST2,green,auto,, +UM,20018,V3,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UM,20019,V1,CUFF1,green,psadil,2022-07-22,"head-motion, em-perturbation, uncategorized" +UM,20019,V1,CUFF2,green,auto,, +UM,20019,V1,DWI,green,auto,, +UM,20019,V1,REST1,green,psadil,2022-08-15,"head-motion, noise-local, em-perturbation, uncategorized" +UM,20019,V1,REST2,green,auto,, +UM,20019,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UM,20019,V3,CUFF1,green,auto,, +UM,20019,V3,CUFF2,green,auto,, +UM,20019,V3,DWI,green,auto,, +UM,20019,V3,REST1,green,auto,, +UM,20019,V3,REST2,green,auto,, +UM,20019,V3,T1w,green,psadil,2022-04-29,head-motion +UM,20020,V1,CUFF1,green,auto,, +UM,20020,V1,CUFF2,green,auto,, +UM,20020,V1,DWI,green,auto,, +UM,20020,V1,REST1,green,auto,, +UM,20020,V1,REST2,green,auto,, +UM,20020,V1,T1w,green,auto,2022-03-01, +UM,20021,V1,CUFF1,green,auto,, +UM,20021,V1,CUFF2,green,auto,, +UM,20021,V1,DWI,green,auto,, +UM,20021,V1,REST1,green,auto,, +UM,20021,V1,REST2,green,auto,, +UM,20021,V1,T1w,yellow,psadil,2022-03-02,head-motion +UM,20021,V3,CUFF1,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UM,20021,V3,CUFF2,yellow,psadil,2022-07-22,"head-motion, wrap-around, uncategorized" +UM,20021,V3,DWI,green,auto,, +UM,20021,V3,REST1,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UM,20021,V3,REST2,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UM,20021,V3,T1w,green,auto,2022-07-12, +UM,20022,V1,DWI,green,auto,, +UM,20022,V1,REST1,red,psadil,2022-03-02,head-motion +UM,20022,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20023,V1,DWI,green,auto,, +UM,20023,V1,REST1,green,auto,, +UM,20023,V1,REST2,green,auto,, +UM,20023,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UM,20023,V3,DWI,green,auto,, +UM,20023,V3,REST1,green,auto,, +UM,20023,V3,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UM,20024,V1,DWI,green,auto,, +UM,20024,V1,REST1,green,auto,, +UM,20024,V1,REST2,green,auto,, +UM,20024,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20025,V1,CUFF1,yellow,psadil,2022-03-02,head-motion +UM,20025,V1,CUFF2,green,psadil,2022-01-05,head-motion +UM,20025,V1,DWI,green,auto,, +UM,20025,V1,REST1,green,psadil,2022-03-02,head-motion +UM,20025,V1,REST2,green,psadil,2022-03-02,"head-motion, em-perturbation" +UM,20025,V1,T1w,yellow,psadil,2022-03-02,head-motion +UM,20025,V3,CUFF1,green,psadil,2022-05-13,"inu, uncategorized" +UM,20025,V3,CUFF2,green,psadil,2022-05-13,"head-motion, wrap-around, inu, uncategorized" +UM,20025,V3,DWI,green,auto,, +UM,20025,V3,REST1,green,psadil,2022-05-13,"inu, field-variation, uncategorized" +UM,20025,V3,REST2,green,psadil,2022-05-13,"inu, uncategorized" +UM,20025,V3,T1w,green,auto,2022-05-24, +UM,20026,V1,CUFF1,green,auto,, +UM,20026,V1,CUFF2,green,auto,, +UM,20026,V1,DWI,green,auto,, +UM,20026,V1,REST1,green,auto,, +UM,20026,V1,REST2,green,auto,, +UM,20026,V1,T1w,green,auto,2022-03-01, +UM,20026,V3,CUFF1,green,auto,, +UM,20026,V3,CUFF2,green,auto,, +UM,20026,V3,DWI,green,auto,, +UM,20026,V3,REST1,green,auto,, +UM,20026,V3,REST2,green,auto,, +UM,20026,V3,T1w,green,auto,2022-05-24, +UM,20027,V1,CUFF1,green,auto,, +UM,20027,V1,CUFF2,green,auto,, +UM,20027,V1,DWI,green,auto,, +UM,20027,V1,REST1,green,auto,, +UM,20027,V1,REST2,green,auto,, +UM,20027,V1,T1w,green,auto,2022-03-01, +UM,20027,V3,CUFF1,green,psadil,2022-03-02,"head-motion, uncategorized" +UM,20027,V3,CUFF2,green,auto,, +UM,20027,V3,DWI,green,auto,, +UM,20027,V3,REST1,green,auto,, +UM,20027,V3,REST2,green,auto,, +UM,20027,V3,T1w,green,auto,2022-03-02, +UM,20028,V1,DWI,green,auto,, +UM,20028,V1,REST1,yellow,psadil,2022-03-02,"inu, uncategorized" +UM,20028,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UM,20029,V1,CUFF1,green,auto,, +UM,20029,V1,CUFF2,green,auto,, +UM,20029,V1,DWI,green,auto,, +UM,20029,V1,REST1,green,auto,, +UM,20029,V1,REST2,green,auto,, +UM,20029,V1,T1w,yellow,psadil,2022-03-02,head-motion +UM,20029,V3,CUFF1,green,auto,, +UM,20029,V3,CUFF2,green,auto,, +UM,20029,V3,DWI,green,auto,, +UM,20029,V3,REST1,green,auto,, +UM,20029,V3,REST2,green,auto,, +UM,20029,V3,T1w,yellow,psadil,2022-03-02,"head-motion, field-variation" +UM,20030,V1,CUFF1,red,psadil,2022-03-02,"head-motion, uncategorized" +UM,20030,V1,CUFF2,red,psadil,2022-03-02,"head-motion, uncategorized" +UM,20030,V1,DWI,green,auto,, +UM,20030,V1,REST1,yellow,psadil,2022-01-05,"head-motion, inu" +UM,20030,V1,REST2,yellow,psadil,2022-01-05,"head-motion, eye-spillover" +UM,20030,V1,T1w,green,auto,2022-03-01, +UM,20030,V3,CUFF1,green,auto,, +UM,20030,V3,CUFF2,green,auto,, +UM,20030,V3,DWI,green,auto,, +UM,20030,V3,REST1,green,auto,, +UM,20030,V3,T1w,yellow,psadil,2022-04-29,"head-motion, postprocessing" +UM,20031,V1,CUFF1,green,auto,, +UM,20031,V1,CUFF2,green,auto,, +UM,20031,V1,DWI,green,auto,, +UM,20031,V1,REST1,green,auto,, +UM,20031,V1,REST2,green,auto,, +UM,20031,V1,T1w,green,auto,2022-03-01, +UM,20031,V3,CUFF1,green,auto,, +UM,20031,V3,CUFF2,green,auto,, +UM,20031,V3,DWI,green,auto,, +UM,20031,V3,REST1,green,auto,, +UM,20031,V3,REST2,green,auto,, +UM,20031,V3,T1w,green,auto,2022-05-25, +UM,20033,V1,CUFF1,green,auto,, +UM,20033,V1,CUFF2,red,psadil,2022-03-02,"head-motion, uncategorized" +UM,20033,V1,DWI,green,auto,, +UM,20033,V1,REST1,green,auto,, +UM,20033,V1,REST2,green,auto,, +UM,20033,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, inu" +UM,20033,V3,DWI,green,auto,, +UM,20033,V3,REST1,green,auto,, +UM,20033,V3,T1w,yellow,psadil,2022-04-13,"head-motion, postprocessing" +UM,20034,V1,CUFF1,green,auto,, +UM,20034,V1,CUFF2,green,auto,, +UM,20034,V1,DWI,green,auto,, +UM,20034,V1,REST1,green,auto,, +UM,20034,V1,REST2,green,auto,, +UM,20034,V1,T1w,green,auto,2022-03-01, +UM,20035,V1,CUFF1,green,auto,, +UM,20035,V1,DWI,green,auto,, +UM,20035,V1,REST1,green,auto,, +UM,20035,V1,REST2,yellow,psadil,2022-03-02,"head-motion, eye-spillover, em-perturbation" +UM,20035,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20036,V1,CUFF1,green,auto,, +UM,20036,V1,CUFF2,green,auto,, +UM,20036,V1,DWI,green,auto,, +UM,20036,V1,REST1,green,auto,, +UM,20036,V1,REST2,green,auto,, +UM,20036,V1,T1w,green,auto,2022-03-01, +UM,20036,V3,CUFF1,green,auto,, +UM,20036,V3,CUFF2,green,auto,, +UM,20036,V3,DWI,green,auto,, +UM,20036,V3,REST1,green,auto,, +UM,20036,V3,REST2,green,auto,, +UM,20036,V3,T1w,green,auto,2022-04-01, +UM,20037,V1,DWI,green,auto,, +UM,20037,V1,REST1,green,auto,, +UM,20037,V1,T1w,green,auto,2022-03-01, +UM,20037,V3,DWI,green,auto,, +UM,20037,V3,REST1,green,auto,, +UM,20037,V3,T1w,yellow,auto,2022-05-24, +UM,20038,V1,CUFF1,green,auto,, +UM,20038,V1,CUFF2,green,auto,, +UM,20038,V1,DWI,green,auto,, +UM,20038,V1,REST1,green,auto,, +UM,20038,V1,REST2,green,auto,, +UM,20038,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UM,20038,V3,CUFF1,green,auto,, +UM,20038,V3,CUFF2,green,auto,, +UM,20038,V3,DWI,green,auto,, +UM,20038,V3,REST1,green,auto,, +UM,20038,V3,REST2,green,auto,, +UM,20038,V3,T1w,yellow,psadil,2022-03-16,head-motion +UM,20040,V1,DWI,green,auto,, +UM,20040,V1,REST1,red,psadil,2022-03-02,head-motion +UM,20040,V1,T1w,red,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20041,V1,CUFF1,green,auto,, +UM,20041,V1,CUFF2,green,auto,, +UM,20041,V1,DWI,green,auto,, +UM,20041,V1,REST1,green,auto,, +UM,20041,V1,REST2,green,auto,, +UM,20041,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global, postprocessing" +UM,20041,V3,CUFF1,green,auto,, +UM,20041,V3,CUFF2,green,auto,, +UM,20041,V3,DWI,green,auto,, +UM,20041,V3,REST1,green,auto,, +UM,20041,V3,REST2,green,auto,, +UM,20041,V3,T1w,green,psadil,2022-04-29,"noise-global, postprocessing" +UM,20042,V1,CUFF1,green,auto,, +UM,20042,V1,CUFF2,green,auto,, +UM,20042,V1,DWI,green,auto,, +UM,20042,V1,REST1,green,auto,, +UM,20042,V1,REST2,green,auto,, +UM,20042,V1,T1w,yellow,psadil,2022-03-02,"head-motion, postprocessing" +UM,20042,V3,DWI,green,auto,, +UM,20042,V3,REST1,green,auto,, +UM,20042,V3,T1w,green,auto,2022-05-24, +UM,20043,V1,CUFF1,green,psadil,2022-01-31,head-motion +UM,20043,V1,CUFF2,green,auto,, +UM,20043,V1,DWI,green,auto,, +UM,20043,V1,REST1,green,auto,, +UM,20043,V1,REST2,green,auto,, +UM,20043,V1,T1w,green,auto,2022-03-01, +UM,20045,V1,CUFF1,green,auto,, +UM,20045,V1,CUFF2,green,auto,, +UM,20045,V1,DWI,green,auto,, +UM,20045,V1,REST1,yellow,psadil,2022-03-15,"head-motion, uncategorized" +UM,20045,V1,REST2,green,auto,, +UM,20045,V1,T1w,yellow,psadil,2022-02-07,head-motion +UM,20046,V1,CUFF1,green,psadil,2022-03-02,"head-motion, uncategorized" +UM,20046,V1,CUFF2,red,psadil,2022-03-02, +UM,20046,V1,DWI,green,auto,, +UM,20046,V1,REST1,green,auto,, +UM,20046,V1,REST2,green,auto,, +UM,20046,V1,T1w,green,auto,2022-03-02, +UM,20046,V3,CUFF1,green,auto,, +UM,20046,V3,DWI,green,auto,, +UM,20046,V3,REST1,green,auto,, +UM,20046,V3,REST2,green,auto,, +UM,20046,V3,T1w,green,auto,2022-05-25, +UM,20047,V1,CUFF1,green,auto,, +UM,20047,V1,CUFF2,green,auto,, +UM,20047,V1,DWI,green,auto,, +UM,20047,V1,REST1,green,psadil,2022-03-02,"head-motion, uncategorized" +UM,20047,V1,REST2,green,psadil,2022-03-15,"wrap-around, uncategorized" +UM,20047,V1,T1w,yellow,psadil,2022-03-16,"head-motion, postprocessing" +UM,20047,V3,CUFF1,green,auto,, +UM,20047,V3,CUFF2,green,auto,, +UM,20047,V3,DWI,green,auto,, +UM,20047,V3,REST1,green,auto,, +UM,20047,V3,REST2,green,auto,, +UM,20047,V3,T1w,green,auto,2022-05-24, +UM,20049,V1,CUFF1,green,auto,, +UM,20049,V1,CUFF2,green,auto,, +UM,20049,V1,DWI,green,auto,, +UM,20049,V1,REST1,green,auto,, +UM,20049,V1,REST2,green,auto,, +UM,20049,V1,T1w,yellow,psadil,2022-03-02,"head-motion, noise-global" +UM,20049,V3,CUFF1,green,auto,, +UM,20049,V3,CUFF2,green,auto,, +UM,20049,V3,DWI,green,auto,, +UM,20049,V3,REST1,green,auto,, +UM,20049,V3,REST2,green,auto,, +UM,20049,V3,T1w,yellow,auto,2022-05-25, +UM,20050,V1,DWI,green,auto,, +UM,20050,V1,REST1,yellow,psadil,2022-03-02,"head-motion, uncategorized" +UM,20050,V1,T1w,yellow,psadil,2022-06-27,"head-motion, noise-global" +UM,20050,V3,CUFF1,green,auto,, +UM,20050,V3,CUFF2,green,auto,, +UM,20050,V3,DWI,green,auto,, +UM,20050,V3,REST1,green,auto,, +UM,20050,V3,REST2,green,auto,, +UM,20050,V3,T1w,green,auto,2022-05-24, +UM,20051,V1,CUFF1,green,auto,, +UM,20051,V1,CUFF2,green,auto,, +UM,20051,V1,DWI,green,auto,, +UM,20051,V1,REST1,green,auto,, +UM,20051,V1,REST2,green,auto,, +UM,20051,V1,T1w,green,auto,2022-03-02, +UM,20051,V3,DWI,green,auto,, +UM,20051,V3,REST1,green,auto,, +UM,20051,V3,T1w,yellow,auto,2022-05-24, +UM,20052,V1,CUFF1,green,psadil,2022-03-02,"head-motion, wrap-around" +UM,20052,V1,CUFF2,green,auto,, +UM,20052,V1,DWI,green,auto,, +UM,20052,V1,REST1,green,auto,, +UM,20052,V1,REST2,green,auto,, +UM,20052,V1,T1w,yellow,psadil,2022-03-02,"noise-global, inu, postprocessing" +UM,20056,V1,CUFF1,green,auto,, +UM,20056,V1,CUFF2,green,auto,, +UM,20056,V1,DWI,green,auto,, +UM,20056,V1,REST1,green,auto,, +UM,20056,V1,REST2,green,auto,, +UM,20056,V1,T1w,green,auto,2022-03-02, +UM,20056,V3,CUFF1,green,auto,, +UM,20056,V3,DWI,green,auto,, +UM,20056,V3,REST1,green,auto,, +UM,20056,V3,REST2,green,auto,, +UM,20056,V3,T1w,green,auto,2022-05-24, +UM,20057,V1,CUFF1,red,psadil,2022-03-02,"head-motion, uncategorized" +UM,20057,V1,CUFF2,red,psadil,2022-03-02,"head-motion, uncategorized" +UM,20057,V1,DWI,green,auto,, +UM,20057,V1,REST1,yellow,psadil,2022-01-31,"head-motion, uncategorized" +UM,20057,V1,REST2,yellow,psadil,2022-01-31,"head-motion, uncategorized" +UM,20057,V1,T1w,yellow,psadil,2022-02-07,head-motion +UM,20057,V3,CUFF1,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UM,20057,V3,DWI,green,auto,, +UM,20057,V3,REST1,green,auto,, +UM,20057,V3,REST2,green,auto,, +UM,20057,V3,T1w,yellow,psadil,2022-06-27,"head-motion, noise-global, postprocessing" +UM,20058,V1,CUFF1,green,auto,, +UM,20058,V1,CUFF2,green,auto,, +UM,20058,V1,DWI,green,auto,, +UM,20058,V1,REST1,green,auto,, +UM,20058,V1,REST2,green,auto,, +UM,20058,V1,T1w,green,auto,2022-03-02, +UM,20059,V1,CUFF1,green,auto,, +UM,20059,V1,CUFF2,green,psadil,2022-04-04,"head-motion, uncategorized" +UM,20059,V1,DWI,green,auto,, +UM,20059,V1,REST1,green,auto,, +UM,20059,V1,REST2,green,auto,, +UM,20059,V1,T1w,yellow,auto,2022-03-02, +UM,20059,V3,CUFF1,green,auto,, +UM,20059,V3,DWI,green,auto,, +UM,20059,V3,REST1,green,auto,, +UM,20059,V3,REST2,green,auto,, +UM,20059,V3,T1w,green,auto,2022-07-12, +UM,20061,V1,CUFF1,green,auto,, +UM,20061,V1,DWI,green,auto,, +UM,20061,V1,REST1,green,auto,, +UM,20061,V1,REST2,green,auto,, +UM,20061,V1,T1w,green,auto,2022-04-01, +UM,20061,V3,DWI,green,auto,, +UM,20061,V3,REST1,yellow,psadil,2022-08-15,"head-motion, noise-local, uncategorized" +UM,20061,V3,T1w,yellow,technologist,, +UM,20062,V1,CUFF1,green,auto,, +UM,20062,V1,CUFF2,green,auto,, +UM,20062,V1,DWI,green,auto,, +UM,20062,V1,REST1,green,auto,, +UM,20062,V1,REST2,green,auto,, +UM,20062,V1,T1w,yellow,psadil,2022-03-02,head-motion +UM,20062,V3,CUFF1,green,auto,, +UM,20062,V3,CUFF2,green,auto,, +UM,20062,V3,DWI,green,auto,, +UM,20062,V3,REST1,green,auto,, +UM,20062,V3,REST2,green,auto,, +UM,20062,V3,T1w,yellow,auto,2022-05-24, +UM,20066,V1,CUFF1,green,auto,, +UM,20066,V1,DWI,green,auto,, +UM,20066,V1,REST1,green,auto,, +UM,20066,V1,T1w,green,auto,2022-03-02, +UM,20067,V1,CUFF1,green,psadil,2022-03-02,"head-motion, field-variation" +UM,20067,V1,CUFF2,green,psadil,2022-03-02,"head-motion, uncategorized" +UM,20067,V1,DWI,green,auto,, +UM,20067,V1,REST1,green,psadil,2022-03-02,"head-motion, field-variation, uncategorized" +UM,20067,V1,REST2,green,psadil,2022-03-02,"head-motion, uncategorized" +UM,20067,V1,T1w,green,auto,2022-03-02, +UM,20067,V3,T1w,green,auto,2022-07-19, +UM,20068,V1,CUFF1,green,auto,, +UM,20068,V1,CUFF2,green,auto,, +UM,20068,V1,DWI,green,auto,, +UM,20068,V1,REST1,green,auto,, +UM,20068,V1,REST2,green,auto,, +UM,20068,V1,T1w,green,auto,2022-07-12, +UM,20068,V3,CUFF1,green,auto,, +UM,20068,V3,CUFF2,green,auto,, +UM,20068,V3,DWI,green,auto,, +UM,20068,V3,REST1,green,auto,, +UM,20068,V3,REST2,green,auto,, +UM,20068,V3,T1w,green,auto,2022-07-12, +UM,20071,V1,DWI,green,auto,, +UM,20071,V1,REST1,green,auto,, +UM,20071,V1,T1w,yellow,auto,2022-04-01, +UM,20071,V3,DWI,green,auto,, +UM,20071,V3,REST1,green,auto,, +UM,20071,V3,T1w,yellow,auto,2022-07-12, +UM,20072,V1,CUFF1,green,auto,, +UM,20072,V1,CUFF2,green,auto,, +UM,20072,V1,DWI,green,auto,, +UM,20072,V1,REST1,green,auto,, +UM,20072,V1,REST2,green,auto,, +UM,20072,V1,T1w,yellow,psadil,2022-04-29,head-motion +UM,20075,V1,CUFF1,green,auto,, +UM,20075,V1,CUFF2,green,auto,, +UM,20075,V1,DWI,green,auto,, +UM,20075,V1,REST1,green,psadil,2022-04-04,"head-motion, wrap-around, uncategorized" +UM,20075,V1,REST2,green,auto,, +UM,20075,V1,T1w,green,auto,2022-04-01, +UM,20076,V1,CUFF1,green,auto,, +UM,20076,V1,CUFF2,green,auto,, +UM,20076,V1,DWI,green,auto,, +UM,20076,V1,REST1,green,auto,, +UM,20076,V1,REST2,green,auto,, +UM,20076,V1,T1w,yellow,psadil,2022-03-16,"head-motion, postprocessing" +UM,20076,V3,DWI,green,auto,, +UM,20076,V3,REST1,green,auto,, +UM,20076,V3,T1w,green,psadil,2022-07-19,"head-motion, noise-global, postprocessing" +UM,20077,V1,CUFF1,green,auto,, +UM,20077,V1,CUFF2,green,auto,, +UM,20077,V1,DWI,green,auto,, +UM,20077,V1,REST1,green,auto,, +UM,20077,V1,REST2,green,auto,, +UM,20077,V1,T1w,green,auto,2022-05-25, +UM,20077,V3,CUFF1,green,auto,, +UM,20077,V3,CUFF2,green,auto,, +UM,20077,V3,DWI,green,auto,, +UM,20077,V3,REST1,green,auto,, +UM,20077,V3,REST2,green,auto,, +UM,20077,V3,T1w,green,auto,2022-08-23, +UM,20078,V1,CUFF1,green,auto,, +UM,20078,V1,CUFF2,green,auto,, +UM,20078,V1,DWI,green,auto,, +UM,20078,V1,REST1,green,auto,, +UM,20078,V1,REST2,green,auto,, +UM,20078,V1,T1w,yellow,auto,2022-05-25, +UM,20078,V3,CUFF1,green,auto,, +UM,20078,V3,CUFF2,green,auto,, +UM,20078,V3,DWI,green,auto,, +UM,20078,V3,REST1,green,auto,, +UM,20078,V3,REST2,green,auto,, +UM,20078,V3,T1w,yellow,auto,2022-07-19, +UM,20081,V1,DWI,green,auto,, +UM,20081,V1,REST1,green,auto,, +UM,20081,V1,T1w,green,psadil,2022-04-29,"noise-global, inu" +UM,20081,V3,DWI,green,auto,, +UM,20081,V3,REST1,green,auto,, +UM,20081,V3,T1w,yellow,auto,2022-08-23, +UM,20084,V1,CUFF1,green,auto,, +UM,20084,V1,CUFF2,green,auto,, +UM,20084,V1,DWI,green,auto,, +UM,20084,V1,REST1,green,auto,, +UM,20084,V1,REST2,green,auto,, +UM,20084,V1,T1w,green,auto,2022-05-24, +UM,20084,V3,CUFF1,green,auto,, +UM,20084,V3,CUFF2,green,auto,, +UM,20084,V3,DWI,green,auto,, +UM,20084,V3,REST1,green,auto,, +UM,20084,V3,REST2,green,auto,, +UM,20084,V3,T1w,green,auto,2022-08-23, +UM,20088,V1,CUFF1,green,auto,, +UM,20088,V1,CUFF2,green,auto,, +UM,20088,V1,DWI,green,auto,, +UM,20088,V1,REST1,green,auto,, +UM,20088,V1,REST2,green,auto,, +UM,20088,V1,T1w,green,auto,2022-05-25, +UM,20088,V3,CUFF1,green,auto,, +UM,20088,V3,CUFF2,green,auto,, +UM,20088,V3,DWI,green,auto,, +UM,20088,V3,REST1,green,auto,, +UM,20088,V3,REST2,green,auto,, +UM,20088,V3,T1w,green,auto,2022-08-23, +UM,20090,V1,CUFF1,green,auto,, +UM,20090,V1,CUFF2,green,auto,, +UM,20090,V1,DWI,green,auto,, +UM,20090,V1,REST1,green,auto,, +UM,20090,V1,REST2,green,auto,, +UM,20090,V1,T1w,green,psadil,2022-05-13,inu +UM,20090,V3,CUFF1,green,auto,, +UM,20090,V3,CUFF2,green,auto,, +UM,20090,V3,DWI,green,auto,, +UM,20090,V3,REST1,green,auto,, +UM,20090,V3,REST2,green,auto,, +UM,20090,V3,T1w,green,auto,2022-07-19, +UM,20092,V1,CUFF1,green,auto,, +UM,20092,V1,CUFF2,green,auto,, +UM,20092,V1,DWI,green,auto,, +UM,20092,V1,REST1,green,auto,, +UM,20092,V1,REST2,green,auto,, +UM,20092,V1,T1w,green,auto,2022-05-24, +UM,20094,V1,CUFF1,green,auto,, +UM,20094,V1,CUFF2,green,auto,, +UM,20094,V1,DWI,green,auto,, +UM,20094,V1,REST1,green,auto,, +UM,20094,V1,REST2,green,auto,, +UM,20094,V1,T1w,yellow,psadil,2022-05-13,"head-motion, noise-global, postprocessing" +UM,20094,V3,CUFF1,green,auto,, +UM,20094,V3,CUFF2,green,auto,, +UM,20094,V3,DWI,green,auto,, +UM,20094,V3,REST1,green,auto,, +UM,20094,V3,REST2,green,auto,, +UM,20094,V3,T1w,yellow,technologist,, +UM,20097,V1,DWI,green,auto,, +UM,20097,V1,REST1,green,auto,, +UM,20097,V1,T1w,green,auto,2022-07-12, +UM,20098,V1,CUFF1,green,auto,, +UM,20098,V1,CUFF2,yellow,psadil,2022-05-03,"head-motion, inu, uncategorized" +UM,20098,V1,DWI,green,auto,, +UM,20098,V1,REST1,green,auto,, +UM,20098,V1,REST2,green,auto,, +UM,20098,V1,T1w,green,auto,2022-05-25, +UM,20098,V3,CUFF1,green,auto,, +UM,20098,V3,CUFF2,green,psadil,2022-08-15,"head-motion, uncategorized" +UM,20098,V3,DWI,green,auto,, +UM,20098,V3,REST1,green,auto,, +UM,20098,V3,REST2,green,auto,, +UM,20098,V3,T1w,green,auto,2022-08-23, +UM,20099,V1,CUFF1,green,auto,, +UM,20099,V1,CUFF2,green,auto,, +UM,20099,V1,DWI,green,auto,, +UM,20099,V1,REST1,green,auto,, +UM,20099,V1,REST2,green,auto,, +UM,20099,V1,T1w,yellow,technologist,, +UM,20101,V1,CUFF1,yellow,psadil,2022-05-09,"head-motion, uncategorized" +UM,20101,V1,CUFF2,yellow,psadil,2022-05-09,"head-motion, uncategorized" +UM,20101,V1,DWI,green,auto,, +UM,20101,V1,REST1,yellow,psadil,2022-05-09,"head-motion, uncategorized" +UM,20101,V1,REST2,yellow,psadil,2022-05-09,"head-motion, uncategorized" +UM,20101,V1,T1w,green,psadil,2022-08-05,"head-motion, noise-global, postprocessing" +UM,20101,V3,CUFF1,green,auto,, +UM,20101,V3,CUFF2,green,auto,, +UM,20101,V3,DWI,green,auto,, +UM,20101,V3,REST1,green,auto,, +UM,20101,V3,REST2,green,auto,, +UM,20101,V3,T1w,green,auto,2022-08-23, +UM,20102,V1,CUFF1,green,auto,, +UM,20102,V1,CUFF2,green,auto,, +UM,20102,V1,DWI,green,auto,, +UM,20102,V1,REST1,green,auto,, +UM,20102,V1,REST2,green,auto,, +UM,20102,V1,T1w,green,auto,2022-05-24, +UM,20104,V1,CUFF1,green,auto,, +UM,20104,V1,CUFF2,green,auto,, +UM,20104,V1,DWI,green,auto,, +UM,20104,V1,REST1,green,auto,, +UM,20104,V1,REST2,green,auto,, +UM,20104,V1,T1w,green,auto,2022-07-12, +UM,20105,V1,DWI,green,auto,, +UM,20105,V1,REST1,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UM,20105,V1,T1w,green,psadil,2022-06-27,uncategorized +UM,20116,V1,DWI,green,auto,, +UM,20116,V1,REST1,green,auto,, +UM,20116,V1,T1w,green,auto,2022-07-12, +UM,20121,V1,CUFF1,green,auto,, +UM,20121,V1,CUFF2,green,auto,, +UM,20121,V1,DWI,green,auto,, +UM,20121,V1,REST1,green,auto,, +UM,20121,V1,REST2,green,auto,, +UM,20121,V1,T1w,green,psadil,2022-07-19,postprocessing +UM,20128,V1,CUFF1,green,auto,, +UM,20128,V1,CUFF2,green,auto,, +UM,20128,V1,DWI,green,auto,, +UM,20128,V1,REST1,green,auto,, +UM,20128,V1,REST2,green,auto,, +UM,20128,V1,T1w,yellow,technologist,, +UM,20130,V1,DWI,green,auto,, +UM,20130,V1,REST1,green,auto,, +UM,20130,V1,T1w,green,auto,2022-07-12, +UM,20133,V1,CUFF1,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UM,20133,V1,CUFF2,green,auto,, +UM,20133,V1,DWI,green,auto,, +UM,20133,V1,REST1,yellow,psadil,2022-07-22,"head-motion, uncategorized" +UM,20133,V1,REST2,green,auto,, +UM,20133,V1,T1w,yellow,auto,2022-07-19, +UM,20134,V1,CUFF1,green,auto,, +UM,20134,V1,CUFF2,green,auto,, +UM,20134,V1,DWI,green,auto,, +UM,20134,V1,REST1,red,psadil,2022-08-15,"head-motion, uncategorized" +UM,20134,V1,REST2,green,auto,, +UM,20134,V1,T1w,yellow,psadil,2022-07-19,"head-motion, noise-global, postprocessing" +UM,20136,V1,CUFF1,green,auto,, +UM,20136,V1,CUFF2,green,auto,, +UM,20136,V1,DWI,green,auto,, +UM,20136,V1,REST1,green,auto,, +UM,20136,V1,REST2,green,auto,, +UM,20136,V1,T1w,green,auto,2022-08-23, +UM,20139,V1,CUFF1,green,auto,, +UM,20139,V1,CUFF2,green,auto,, +UM,20139,V1,DWI,green,auto,, +UM,20139,V1,REST1,green,auto,, +UM,20139,V1,REST2,green,auto,, +UM,20139,V1,T1w,green,psadil,2022-08-22,postprocessing +UM,20142,V1,CUFF1,green,auto,, +UM,20142,V1,CUFF2,green,auto,, +UM,20142,V1,DWI,green,auto,, +UM,20142,V1,REST1,green,auto,, +UM,20142,V1,REST2,green,auto,, +UM,20142,V1,T1w,yellow,psadil,2022-08-22,"head-motion, noise-global, postprocessing" +UM,20143,V1,CUFF1,green,auto,, +UM,20143,V1,CUFF2,green,auto,, +UM,20143,V1,DWI,green,auto,, +UM,20143,V1,REST1,green,auto,, +UM,20143,V1,REST2,green,auto,, +UM,20143,V1,T1w,green,auto,2022-08-23, +WS,20064,V1,CUFF1,green,auto,, +WS,20064,V1,CUFF2,green,auto,, +WS,20064,V1,DWI,green,auto,, +WS,20064,V1,REST1,green,auto,, +WS,20064,V1,REST2,green,auto,, +WS,20064,V1,T1w,green,auto,2022-05-25, +WS,20064,V3,CUFF1,green,auto,, +WS,20064,V3,CUFF2,green,auto,, +WS,20064,V3,DWI,green,auto,, +WS,20064,V3,REST1,green,auto,, +WS,20064,V3,REST2,green,auto,, +WS,20064,V3,T1w,green,auto,2022-07-12, +WS,20100,V1,CUFF1,green,auto,, +WS,20100,V1,DWI,green,auto,, +WS,20100,V1,REST1,green,auto,, +WS,20100,V1,REST2,green,auto,, +WS,20100,V1,T1w,green,auto,2022-07-12, +WS,20112,V1,CUFF1,green,auto,, +WS,20112,V1,CUFF2,green,auto,, +WS,20112,V1,DWI,green,auto,, +WS,20112,V1,REST1,green,auto,, +WS,20112,V1,REST2,green,auto,, +WS,20112,V1,T1w,green,auto,2022-07-12, diff --git a/datastore/src/data/lsj.json b/datastore/src/data/lsj.json new file mode 100644 index 0000000..8dd8161 --- /dev/null +++ b/datastore/src/data/lsj.json @@ -0,0 +1 @@ +{"1": {"140000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/20/2022-LVM\r\n06/22/2022-LVM\r\n\r\nCould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "MRI-INELIGIBLE ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/22/2022 -Participant stated they are too old to come in. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/23/22-Participant stated she would look over the brochure's and let us know if she wants to participate. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/27/22-participant stated she lives too far to come in. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140006": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-06-28 08:13", "date_of_contact": "2022-06-27", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "15001", "obtain_date": "2022-06-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "36", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-29", "sp_v1_preop_date": "2022-06-28", "sp_v2_6wk_date": "2022-08-10", "sp_v3_3mo_date": "2022-09-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "140007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/29-Participant stated she does not have the time-commitment available.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/29/22-participant said to call her back due to her going to doctors appointment \r\n06/29/22-lvm ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "39", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/29/22-LVM\r\n07/06/22-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/29-sent econsent document, participant stated to call her back 07/06.\r\n07/06/22-particpant said she would call back if interested", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/29-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/29/22-Participant does not want to be in any pain tests. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/06/22- Participant stated they do not have the time to be in the study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/11/22-participant stated she has enough problems already and does not want to drive up to the city. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/11/22-SURGERY will be rescheduled \r\n07/20/22-lvm\r\n07/25/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/11/22-Participant said they have too much going on.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/14/22-LVM\r\n07/20/22-PT needs Vietnamese Interpreter ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/11/22-participant stated that their surgery will be rescheduled\r\n07/20/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/21/22-LVM\r\n07/22/22-partcipant stated that she does not have the time for the study with her surgery", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/22/22 participant does not want to make extra trips to the hospital ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/25/22-needs Spanish interpreter ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/25/22-lvm\r\n07/27/22-lvm\r\n08/12/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/22/22-Participant declined with no specific reason. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/25/22-lvm\r\nUnable to contact participant ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/25/22-LVM\r\n07/27/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/25/22-lvm\r\n07/27/22-Participant stated she is not interested in research. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/25/22-lvm\r\n07/27/22-pt declined ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/29/22-pt declined, too far to drive. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/03/22-pt declined with no specific reason ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/03/22-lvm\r\n08/05/22-lvm\r\nNot able to reach pt ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/03/22-partcipant stated it is too far of a drive ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/05/22-MB is full, could not leave a voice message. \r\n08/08/22-MB is full, could not leave a voice message. \r\n\r\n--->Could not reach patient.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "37", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/05/22-pt stated to give her a call back\r\n08/08/22-pt stated they are not interested ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140034": {"age": "50", "consent_process_form_complete": "2", "date_and_time": "2022-08-10 10:57", "date_of_contact": "2022-08-09", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "15002", "obtain_date": "2022-08-10", "participation_interest": "2", "ptinterest_comment": "08/09/22-sent a copy of the consent form. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-28", "sp_v1_preop_date": "2022-08-11", "sp_v2_6wk_date": "2022-11-08", "sp_v3_3mo_date": "2022-12-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "140035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/09/22-Participant stated that they canno't go to the city for the study visits.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "08/09/22-sent a copy of the consent form call tomorrow \r\n08/10/22-pt stated call back at a later date \r\n\r\nCould not reach patient before surgery date after sending consent form out. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "08/09/22-sent a copy of the consent form.\r\n08/12/22-lvm \r\n08/29/22-stated would give a call back\r\n\r\nCould not reach before surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/09/22-participant stated they are not interested in research. ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/9/22-participant stated they do not want to participate, \"no more doctors\".", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/10/22-patient declined, too much going on before surgery date. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/11/22-sent a copy of the consent form \r\n08/16/22-lvm\r\n08/23/22-pt declined, not willing to try MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "37", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140042": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/12/22-lvm\r\n05/15/22-pt declined, stated that she just wants the surgery to be over with. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/17/22-pt stated they cannot participate in the study due to work.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "21", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/19/22-pt declined, too far to drive.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/23/22-pt stated they are not interested ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/23/22-pt stated they will look over the brochures.\r\n08/24/22-lvm\r\n\r\nCould not reach pt before surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/23/22-stated they will give a call back.\r\n08/24/22-participant stated they need time to think about it. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/23/22-pt stated they will look over brochures.\r\n08/29/22-pt stated they still need more time to look over brochures, call back at a later date. \r\n9/2/22-pt stated she does not want to go back and forth from chicago", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/24/22-patient hung up the phone. \r\n08/29/22-sent a copy of the consent form \r\n09/01/22-participant stated they are no longer interested. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/24/22-pt is Spanish speaking, difficult to understand her and her children live in California.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/24/22-not interested in participating", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/31/22-pt stated she is not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/6/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/6/22-pt declined, not interested in research ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/6/22-declined, too far ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/8/22-pt stated to give a call back in 20mins \r\n9/8/22-lvm\r\n9/9/22-sent a copy of the consent form \r\n9/9/22-Pt declined, stated that its a lot going on with her mom also getting surgery in the following months. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/8/22-pt stated to give a back tomorrow since he is currently at another doctor's office. \r\n9/9/22-sent a copy of the consent form \r\n9/12/22-lvm\r\n\r\nCould not reach before surgery.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140058": {"age": "73", "consent_process_form_complete": "2", "date_and_time": "2022-09-12 13:29", "date_of_contact": "2022-09-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "15003", "obtain_date": "2022-09-12", "participation_interest": "2", "ptinterest_comment": "9/8/22-Called mobile phone (it did not ring). \r\nI called Home phone than and the Husband picked up and stated he will tell his wife to give a call back when she gets home. \r\n9/9/22-pt stated she will call back in the afternoon\r\n9/12/22-", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-26", "sp_v1_preop_date": "2022-09-22", "sp_v2_6wk_date": "2022-11-06", "sp_v3_3mo_date": "2022-12-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "140059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/9/22-Pt needs a Cantonese interpreter, does not speak English. Not eligible to be in the study. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/12/22-pt hung up the phone \r\n9/14/22-no MB\r\n\r\nCould not reach before sx.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/14/22-pt declined, too far ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/15/22-lvm\r\n9/21/22-pt declined, not interested in research.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140063": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-09-16 12:14", "date_of_contact": "2022-09-15", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "15004", "obtain_date": "2022-09-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-20", "sp_v1_preop_date": "2022-09-16", "sp_v2_6wk_date": "2022-11-01", "sp_v3_3mo_date": "2022-12-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "140064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/15/22-call will not go through \r\n\r\nCould not reach before sx.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/15/22-lvm\r\n9/20/22-pt declined, states that its too far and she works full time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/20/22-lvm\r\n9/21/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "44", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/20/22-pt declined, stated its too far and she is too old. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/20/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/20/22-pt declined, not interested in research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140070": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/21/22- pt declined, not interested ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/21/22-Pt hung up the phone ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "140072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/21/22-phone number on file has been disconnected ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "160000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she doesn't have time and she believes that this study is too big of a commitment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30001": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-04 10:42:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Participants cuff pressure is lower than the standard pressure. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-12 08:31:58", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Baseline visit occurred 2 days prior to surgery date (outside protocol timeline)", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "45", "consent_process_form_complete": "2", "date_and_time": "2021-04-13 13:51", "date_of_contact": "2021-04-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10014", "obtain_date": "2021-04-13", "participation_interest": "2", "ptinterest_comment": "Patient contacted us and was consented in person. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-06", "sp_v1_preop_date": "2021-05-04", "sp_v2_6wk_date": "2021-06-17", "sp_v3_3mo_date": "2021-08-06", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't want to come back downtown if he didn't have to.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to drive to city more than needed", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30005": {"age": "72", "consent_process_form_complete": "2", "date_and_time": "2021-06-21 13:00", "date_of_contact": "2021-06-21", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10056", "obtain_date": "2021-06-21", "participation_interest": "2", "ptinterest_comment": "Patient is on their way to Midwest Ortho for their pre op visit. I will meet them to go over and sign consent. \r\nUnable to get consent in person. Will reach out to them on 06/21/2021.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-16", "sp_v1_preop_date": "2021-07-06", "sp_v2_6wk_date": "2021-08-27", "sp_v3_3mo_date": "2021-10-16", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "MRI and she does not want to experience any more pain than what she is already in.", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30008": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-27 15:26:13", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "MRI not done. ", "erep_protdev_desc": "Participant did not complete MRI.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-27 15:27:13", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Will collect blood Day of surgery.", "erep_protdev_desc": "Unable to collect blood at baseline. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-27 16:06:08", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Participant did not come in at baseline visit window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-20 10:26:23", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Participant's blood was not collected within time frame window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "68", "consent_process_form_complete": "2", "date_and_time": "2021-03-23 11:36", "date_of_contact": "2021-03-19", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10001", "obtain_date": "2021-03-23", "participation_interest": "2", "ptinterest_comment": "Will call patient on Monday to consent\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-30", "sp_v1_preop_date": "2021-03-26", "sp_v2_6wk_date": "2021-06-11", "sp_v3_3mo_date": "2021-07-30", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "MRI claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left message for patient", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2nd knee- called 8/25 for second knee and emailed consent. Pt declined to participate 8/30 for no specific reason", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance to rush and time it would take to get there", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30013": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-15 08:59:43", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "re-consented to study the day of surgery, unable to complete functional testing.", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-15 09:01:04", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "unable to complete QST, re-consented to study day of surgery", "erep_protdev_type": "4", "erep_rel_covid19": "", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-15 09:02:55", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "imaging not complete, re-consented to study day of surgery", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-15 09:05:43", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "collected blood day of surgery", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "5": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-04 10:49:35", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt was here for their 3 week follow up visit so we obtained blood at this time for her so she did not have to make additional trips.", "erep_protdev_type": "6", "erep_rel_covid19": "1", "erep_resolution_date": "", "erep_visit_inv": "3"}, "6": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-04 10:51:57", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Unable to obtain lavender top due to patients clotting factor. We did the the Paxgene.", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "7": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-09-08 08:48:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient came in for 3 month visit outside of protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "63", "consent_process_form_complete": "2", "date_and_time": "2021-03-26 08:11", "date_of_contact": "2021-03-19", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10007", "obtain_date": "2021-03-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-15", "sp_v1_preop_date": "2021-04-05", "sp_v2_6wk_date": "2021-05-27", "sp_v3_3mo_date": "2021-07-15", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Extremely claustrophobic in MRI, states that the daily surveys about her pain will cause her to dwell more on the pain", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She was initially interested but when I contacted her again she said no because her husband is handicapped and she needs to take care of him, she believes that this study will be too time consuming. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30016": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-04-06 16:05:06", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She said that the MRI was uncomfortable and too loud. She could not stay in it for too long and therefore she was unable to complete the scan. She was only able to complete the T1 scan. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-04-06 16:22:15", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She could not do the 10 meter walk test. She said that her knee locked up and that she could not walk. ", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-04-06 16:33:26", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She could not complete the 5 times sit-to-stand test because she said that her knee will lock up if she does. ", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "58", "consent_process_form_complete": "2", "date_and_time": "2021-04-02 08:12", "date_of_contact": "2021-04-01", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "2021-05-21", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "2", "main_record_id": "10009", "obtain_date": "2021-04-01", "participation_interest": "2", "ptinterest_comment": "She is coming in for her baseline visit on 4/05/2021 at 11:30 AM.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30017": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-04-19 11:25:42", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She could not use the MRI scan because she had biopsy markers.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-28 10:31:36", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt day outside of protocol window for 3 mos. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-24 12:21:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A, participant continues participation", "erep_protdev_desc": "Pt did not complete survey set after multiple calls. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "64", "consent_process_form_complete": "2", "date_and_time": "2021-03-24 14:36", "date_of_contact": "2021-03-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10004", "obtain_date": "2021-03-24", "participation_interest": "2", "ptinterest_comment": "I consented her on 3/24/2021. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-13", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2021-11-23", "sp_v3_3mo_date": "2022-01-12", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"too extensive\"", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she works for the Chicago Public Schools District (CPS) and she is very busy with work, and will not have time to be a part of the study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30020": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-02 07:40:27", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "", "erep_resolution_date": "", "erep_visit_inv": ""}}, "age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-03-23 12:07", "date_of_contact": "2021-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "After additional consideration participant was overwhelmed by the time required by the study visits as well as the distance from Rush. ", "ewdateterm": "2021-03-24", "ewdisreasons": "1|5", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10002", "obtain_date": "2021-03-23", "participation_interest": "1", "ptinterest_comment": "Recontact 3/22- determine if would like to econsent or meet in person 3/23. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30021": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-20 16:05:02", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt will not complete MRI visit. ", "erep_protdev_desc": "Pt unable to tolerate MRI. Stated felt like a \"sausage\" and was very uncomfortable. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-27 12:43:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "get blood back to research lab faster after draw is completed", "erep_protdev_desc": "blood sample not placed in freezer within 30 minutes of collection", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-27 12:49:13", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "6 week blood draw outside of protocol window", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-17 08:18:48", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt surveys completed outside of timeline by a few days.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "55", "consent_process_form_complete": "2", "date_and_time": "2021-03-25 15:21", "date_of_contact": "2021-03-18", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10006", "obtain_date": "2021-03-25", "participation_interest": "2", "ptinterest_comment": "Wants to double check with wife about study. Plan to call back Monday 3/22. Also, verify demographic info during call back. Met in person to consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-06", "sp_v1_preop_date": "2021-04-20", "sp_v2_6wk_date": "2021-06-17", "sp_v3_3mo_date": "2021-08-06", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30022": {"adverse_effects": {"1": {"erep_action_taken": "Participant will continue participation. Participant spoke with clinical nurse in order to establish safety of using cuff. Staff decided to utilize cuff at lower than standard pressure according to protocol.", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-03-30 07:45:17", "erep_onset_date": "", "erep_outcome": "Participant tolerated MRI well. ", "erep_prot_dev": "1", "erep_protdev_caplan": "Skip standard 120 mmHg cuff pressure scan. ", "erep_protdev_desc": "Participant rated pain moderate at cuff pressure 80mmHg. Staff decided not to do standard pressure of 120mmHg and therefore did not complete standard scan. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-27 12:49:41", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "6 wk blood draw occurred outside of protocol window", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "73", "consent_process_form_complete": "2", "date_and_time": "2021-03-23 13:16", "date_of_contact": "2021-03-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10003", "obtain_date": "2021-03-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-21", "sp_v1_preop_date": "2021-03-29", "sp_v2_6wk_date": "2021-06-02", "sp_v3_3mo_date": "2021-07-21", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30023": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-06 15:43:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Participant should not complete 3 mos. MRI. ", "erep_protdev_desc": "Participant was unable to complete MRI scan due to symptoms of PTSD. Participant stated he was brought back to a time when he was in the military in a short space getting shot at. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-15 15:10:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Completed baseline study visit as planned. ", "erep_protdev_desc": "Participant unable to come in 2 weeks prior to procedure. Participant came in 10 days prior to procedure opposed to 14 days. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-11 09:15:13", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Took blood prior to 6 wk visit timeline in protocol. Around 3 weeks. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-19 08:03:15", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt unable to tolerate MRI", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "58", "consent_process_form_complete": "2", "date_and_time": "2021-03-25 13:56", "date_of_contact": "2021-03-23", "dem_race": "3", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10005", "obtain_date": "2021-03-25", "participation_interest": "1", "ptinterest_comment": "Call back for possible consent. Email consent to participant. Called back for consent 3/25.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-16", "sp_v1_preop_date": "2021-04-06", "sp_v2_6wk_date": "2021-05-28", "sp_v3_3mo_date": "2021-07-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she has a lot of stuff going on like work and she is not going to have time to participate in a research study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"would be a huge time drain for me\"", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Runs a business and the compensation offered does not make sense for him to miss work for the research study. ", "reason_not_interested": "2", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "When I spoked to her over the phone she just interrupted me and said that she does not have the time and that she is not interested and that we should not call her back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She has an issue with being in the MRI scanner. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Stated the time in rush hour, being poked and prodded does not sound appealing. Offered her transportation and declined. Very pleasant to speak with. ", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30031": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-06 15:59:47", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Patient could only tolerate 90 mmHg cuff. ", "erep_protdev_desc": "Subject was unable to perform 120 mmHg cuff scan because her moderate pain threshold capped out at 90 mmHg", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-27 12:50:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "6 wk blood draw occurred outside of protocol window", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "73", "consent_process_form_complete": "2", "date_and_time": "2021-03-29 11:37", "date_of_contact": "2021-03-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10008", "obtain_date": "2021-03-29", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-12", "sp_v1_preop_date": "2021-04-02", "sp_v2_6wk_date": "2021-05-24", "sp_v3_3mo_date": "2021-07-12", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/1 with call back info. Will call back 4/2 if do not hear from him 4/1. Spoke to woman on home phone and left call back information. Informed would also call again on Monday 4/5. Spoke with pt 4/5. Does not want to participate due to location and fear of being shot at. Would participate if study visits were at Oak Brook location. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30034": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-23 07:20:43", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Participant completed what they were able for this visit. ", "erep_protdev_desc": "Baseline visit took place 1 day prior to surgery due to difficulties scheduling and participants busy work schedule. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-23 07:21:55", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Participant did not complete MRI. ", "erep_protdev_desc": "Participant unable to have MRI due to scheduling visit day of coming in. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-23 13:41:56", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt did not have MRI", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "53", "consent_process_form_complete": "2", "date_and_time": "2021-04-09 15:14", "date_of_contact": "2021-04-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10012", "obtain_date": "2021-04-09", "participation_interest": "2", "ptinterest_comment": "Spoke with pt. Is interested in learning more. Emailed consent form. Verified DOB: (05/05/67). Must go over eligibility screening during prior to consent. 4/5-did not have a chance to look over consent form. Asked to give call back and see if he had a chance by then, had \"to run\" because he was at work. Will call back 4/6/2021. On 4/7 Pt stated he is interested in study. Could not sign consent/ speak about study more in depth due to work which he states is \"hectic\". RA will call on his day off 4/9 at 1:30pm. Also gave 4/16 as a possible date for research visit. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-23", "sp_v1_preop_date": "2021-04-16", "sp_v2_6wk_date": "2021-06-04", "sp_v3_3mo_date": "2021-07-23", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that Rush is very far away from his house. He lives in Indiana. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not do well in MRIs", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she has a lot going on and she does not have the time for research. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/1. Pt called back. Pt sounded very hesitant on the phone. Requested a call back 4/6 or 4/7. Offered to email consent, subject sounded hesitant. Will call back 4/7 to go over more details. Called pt back on 4/7 and lvm. Informed to call back if interested in learning more about study or if would like more information sent. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said I will pass.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30042": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Her mother recently passed away. She notes there are many arrangements she needs to make prior and following the funeral and she is trying to fit everything in before her knee surgery. She states she would want to participate otherwise. Gave A2CPS.org if she wants to learn more and informed she has my phone number should she change her mind. Very pleasant to speak with. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "I left him a voicemail. \r\nPt does not speak english. Removed from call list.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "left vm x3", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke with pt. He was not interested in participating. Stated he was asked about research with his shoulder replacements, but prefers not to be involved. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She lives very far away and does not want to travel back and forth, it will take too much time out of her day. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He does not want to be in a closed MRI scan. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt plans on second TKA within 3 months of first", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact for follow up on consent form. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30051": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-07 15:56:55", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "blood draw unsuccessful after 2 sticks", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "Pt will continue in study as approved by patient physician and patient.", "erep_ae_date": "2021-05-06", "erep_ae_desc": "Subject fell May 6 that resulted in a full-thickness tear of the quadriceps tendon confirmed by MRI on 5/10/2021. To undergo procedure for repair on 5/14/2021.", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2021-05-11 09:03:06", "erep_onset_date": "2021-05-06 12:00", "erep_outcome": "Patient had surgical repair to quadricep tendon on 5/14/2021 and is healing well patient stated he is feeling much better and will continue on the plan as his leg heals.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-11 09:07:30", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Blood draw outside of window", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-30 10:04:36", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "subject unable to complete 5 times sit-to-stand and 10-meter walking test due to injury", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "5": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-30 10:06:10", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Unable to complete temporal summation and PPT due to injury ", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "54", "consent_process_form_complete": "2", "date_and_time": "2021-04-06 13:06", "date_of_contact": "2021-04-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10011", "obtain_date": "2021-04-06", "participation_interest": "2", "ptinterest_comment": "Pt had questions regarding HIPPA and who his information would be shared with. Emailed consent form so he has more details about his privacy and the study and informed to email back if not interested, otherwise will call to determine interest prior to teaching visit (4/7). May meet with pt at teaching visit to consent if still interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-19", "sp_v1_preop_date": "2021-04-07", "sp_v2_6wk_date": "2021-05-31", "sp_v3_3mo_date": "2021-07-19", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30052": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-17 15:06:04", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Participant's baseline visit was not within the protocol window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "64", "consent_process_form_complete": "2", "date_and_time": "2021-04-02 10:41", "date_of_contact": "2021-04-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10010", "obtain_date": "2021-04-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-23", "sp_v1_preop_date": "2021-04-15", "sp_v2_6wk_date": "2021-06-04", "sp_v3_3mo_date": "2021-07-23", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30053": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-22 07:35:30", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Standard cuff pressure scan not completed. ", "erep_protdev_desc": "Participant unable to complete standard cuff scan due to moderate pain reported at 115mmHg.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-22 07:45:12", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "In the future review what was saved after saving. ", "erep_protdev_desc": "Neuropen remote site testing not saved.", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-10 14:44:25", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Blood draw outside of visit timeline~ 3wks", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-12 14:55:23", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Visit outside of 3 mos timeline due to pt moving out of country. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "65", "consent_process_form_complete": "2", "date_and_time": "2021-04-13 14:08", "date_of_contact": "2021-04-02", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10015", "obtain_date": "2021-04-13", "participation_interest": "2", "ptinterest_comment": "Spoke with daughter on 4/2. She gave alternate number of 312 593 8938 to reach participant. February 19th was first replacement knee and second is scheduled on May 19th. Daughter was also on the phone. Pt answered questions, but daughter also assisted with dates of procedures. Informed that questionnaires are all in English and asked if this were an issue. Spoke with pt 4/6 to answer her questions. Informed her there is no direct benefit for her. Her images/blood/data would not be provided to her for any treatment purpose and the doctors reviewing the information are not the same as physicians she would see for treatment. Pt states she is still interested and will finish reading the consent. RA will call 4/8 around 2-3 to consent if interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-19", "sp_v1_preop_date": "2021-04-21", "sp_v2_6wk_date": "2021-06-30", "sp_v3_3mo_date": "2021-08-19", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated did not want to participate due to the MRI, time to complete research.", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she does not want to come in downtown. She would consider it if the study took place at Rush Oakbrook.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to commit to in-person study visits at Midwest Ortho", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that it is too much for her, just underwent 12 rounds of radiation. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30058": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-20 12:50:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Subject could not tolerate neuropen at medial knee site. Only the first poke was scored.", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-20 12:52:58", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient could not tolerate cuff pressure greater than 60 mmHg. The standard pressure or 120 mmHg MRI scan was not performed.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "71", "consent_process_form_complete": "2", "date_and_time": "2021-04-12 10:22", "date_of_contact": "2021-04-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10013", "obtain_date": "2021-04-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-13", "sp_v1_preop_date": "2021-04-20", "sp_v2_6wk_date": "2021-06-24", "sp_v3_3mo_date": "2021-08-13", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that there is too much required of her but was grateful that she was considered. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient asked me to send him a copy of the consent and states he will call me when he has time and if he is interested. He asked that I not contact him. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she will call me back if she is interested. She asked me not to call her back. That was 9 days ago. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt uninterested in participating in this study", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not interested in participating in this research study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she previously got hurt in a research study so she is afraid that she will get hurt again. I explained the risks to her but she was still very worried and said no. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/15. RA emailed consent form and will follow up on Monday 4/19. Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "42", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He did not pick up so I left him a voicemail. I already contacted him three times. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt daughter answered. Stated she handled father's medical needs. She stated her father speaks broken English and may need assistance reading English. Gave call back number for father to call and determine if able to participate or not. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She can't speak English. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/14/2021. LVM 4/15/2021. Spoke to pt on 4/16. She asked if visits were downtown, RA informed they were. She declined participation. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30070": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "39", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Wife declined participation", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of consent to look over. Requested that we contact her on 04/19/2021 to see if she is interested in participating. 4/19 call pt states she is unable to do the MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30073": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-19 09:22:37", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Will get blood day of surgery. ", "erep_protdev_desc": "Unable to get blood. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-19 09:25:35", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Continue with planned visit.", "erep_protdev_desc": "Date of visit less than 2 weeks from surgery.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-19 09:27:48", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Participant completed one rep, and stated she was unable to continue. ", "erep_protdev_desc": "Unable to complete sit to stand.", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-19 11:02:59", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Participant did not complete MRI. ", "erep_protdev_desc": "Participant unable to tolerate MRI.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "5": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-24 15:49:18", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Visit timeline more than a week away from protocol 6 wk visit. Surveys completed outside of window by 3 days. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "6": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-24 15:51:17", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Unable to obtain blood after >2 sticks. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "7": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-21 13:22:46", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Completed other testing", "erep_protdev_desc": "Pt unable to tolerate MRI", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "59", "consent_process_form_complete": "2", "date_and_time": "2021-04-16 11:24", "date_of_contact": "2021-04-16", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10016", "obtain_date": "2021-04-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-04-23", "sp_v1_preop_date": "2021-04-19", "sp_v2_6wk_date": "2021-06-04", "sp_v3_3mo_date": "2021-07-23", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She is not sure if she is going to have her surgery. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Wanted to learn more about the study. Emailed consent form. 4/19 she stated difficult to find time in schedule. 4/20 stated not interested in study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "45", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30076": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-04 14:01:02", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "MRI not completed. ", "erep_protdev_desc": "RA informed pt he was cleared for MRI on 4/30. Day of visit pt states VA told him he was unable to have MRI due to steel in leg and he will not have MRI. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-21 14:22:09", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Blood collected at 3 weeks 4 days. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "69", "consent_process_form_complete": "2", "date_and_time": "2021-04-22 12:40", "date_of_contact": "2021-04-16", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10018", "obtain_date": "2021-04-22", "participation_interest": "2", "ptinterest_comment": "Spoke w/ pt, emailed consent form for more info. Confirm eligibility info during callback 4/19. Is interested in participating. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-27", "sp_v1_preop_date": "2021-05-04", "sp_v2_6wk_date": "2021-07-08", "sp_v3_3mo_date": "2021-08-27", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She did not pick up after trying to call several times.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke with daughter 4/16 stated there would be a language barrier and she would likely be uncomfortable. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "I send him an email on 4/28/2021. I have called him multiple times but he has not returned any calls. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She can't participate because she is working and doesn't have time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30081": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt states she had a bad experience with her first knee replaced and is unsure if she will have her second with the same physician. She states she is interested in the study and should she choose to delay her procedure she would be interested. RA mailed consent form as requested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30082": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "She did not pick up, I left her a voicemail. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke with pt. Not interested in learning more about research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not wish to learn more about any study. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30085": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he lives too far and also does not have the time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30086": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/16/2021. LVM 4/19/2021. Had a kidney transplant and is involved in another study at Northwestern.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30087": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is Spanish speaking and states that she does not speak English. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30088": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "I send her the consent form but I was never able to get a hold of her after that, I called her a couple of times and left her a voicemail. Her surgery is tomorrow. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/16/2021. Spoke on 4/19. Pt cares for grandson and does not have the time to come in for study visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is not interested in the study because she does not feel comfortable with some of the statements that were in the consent form. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30091": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she is just not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30092": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-04-26 11:49", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Pt cancelled sx and did not reschedule. ", "ewdateterm": "2021-11-03", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10021", "obtain_date": "2021-04-26", "participation_interest": "2", "ptinterest_comment": "LVM 4/16/2021. Emailed consent 4/19. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30093": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-04-23 10:41", "date_of_contact": "2021-04-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient states that her circumstances have changed and she is feeling very overwhelmed and asked to withdraw her consent. ", "ewdateterm": "2021-05-26", "ewdisreasons": "5|1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10019", "obtain_date": "2021-04-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30094": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Emailed consent. Will call back 4/19 afternoon. Pt LVM stating is not interested in participating 4/20/2021.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30095": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient really doesn't want to have to come in and does not like needles or MRIs. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30096": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/16/2021. LVM 4/20/2021. LVM 6/15/2021.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30097": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-27 15:43:34", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Collected blood, pt will complete survey set closer to 6 wks. ", "erep_protdev_desc": "Pt came in for blood draw at 3 weeks post surgery.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "56", "consent_process_form_complete": "2", "date_and_time": "2021-04-16 15:38", "date_of_contact": "2021-04-16", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10017", "obtain_date": "2021-04-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-03", "sp_v1_preop_date": "2021-04-20", "sp_v2_6wk_date": "2021-06-14", "sp_v3_3mo_date": "2021-08-03", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30098": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She can't speak English.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30100": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is not interested in any research study. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30101": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Reached out to patient multiple times and never received a call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30102": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent an email stating that she's not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30103": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is 80 years old and doesn't want to participate in such a thing. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30104": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he is just not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30105": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of consent. She states she might be postponing her surgery. \r\nLeft multiple messages for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30106": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She is moving to Arizona and will not have time to participate in our study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30107": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is not interested in research, ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30108": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Out of town a lot and does not have time to complete study visit.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "84", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30109": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact regarding study. (spoke briefly and stated to call back, left 3 VM's.)", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30110": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/21/2021. Spoke with 4/21/2021. Too much due to watching grandchildren, is already in pain and overall would be too much for her to do in a day. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30111": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He can't participate because he is opening a restaurant soon and is not going to have time to do anything else. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30112": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-27 13:48:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt taken out of scanner prior to completion of scans. ", "erep_protdev_desc": "Pt unable to complete MRI past custom pressure scan. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-27 13:49:58", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Visit completed outside of window. ", "erep_protdev_desc": "Baseline visit outside of visit window (13 days prior to sx)", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-05-13 12:37", "date_of_contact": "2021-04-21", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10032", "obtain_date": "2021-05-13", "participation_interest": "2", "ptinterest_comment": "Spoke on 4/21. Expressed interest, but wants to read more about study. RA will call back 4/26. Spoke 5/11 and still interested. Gave detailed consent information 5/12. Pt unable to sign at this time, will call back tomorrow for MRI info, and study visit dates. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-09", "sp_v1_preop_date": "2021-05-27", "sp_v2_6wk_date": "2021-07-21", "sp_v3_3mo_date": "2021-09-09", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30113": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke w/ 4/21. Stated was \"not interested in research at all\".", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30114": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she does not want to participate in this study because she does not believe that she can commit to be in the study for a whole year. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30115": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she has an issue with walking and she does not want to come down to Rush.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30116": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated it was \"too much\"-4/26/2021. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30117": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-30 14:41:18", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Participants customized pressure was under the standard pressure. Did not complete standard pressure. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-30 14:43:35", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Study visit happened outside of protocol guideline. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-04-30 14:53:34", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Unable to get blood on day of study visit. Will get on day of surgery. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-24 15:52:08", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "6 wk blood draw out of protocol window.", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "53", "consent_process_form_complete": "2", "date_and_time": "2021-04-26 09:40", "date_of_contact": "2021-04-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10020", "obtain_date": "2021-04-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-05", "sp_v1_preop_date": "2021-04-30", "sp_v2_6wk_date": "2021-06-16", "sp_v3_3mo_date": "2021-08-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30118": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30119": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/22/2021. LVM 4/26. LVM 4/29. Unable to contact pt. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30120": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She never got back to me and her surgery date passed. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30121": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The time commitment due to work and having to come downtown would be a lot for pt. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30122": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30123": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is very busy right now with doctor appointments and that she is also going on a vacation and would not have time to participate in the study. ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30124": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm 4/22 and 4/26. Spoke on 5/11. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30125": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she lives too far and because of work does not have the time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30126": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30127": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is not interested without giving a specific reason. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30128": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is not interested in research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30129": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-05-03 14:47:55", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "He was unable to do the MRI scan because he has PTSD.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-05-28 13:17:40", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "We drew his blood before the 6 weeks post op mark. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-06-10 11:33:44", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "51", "consent_process_form_complete": "2", "date_and_time": "2021-04-27 10:50", "date_of_contact": "2021-04-27", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10022", "obtain_date": "2021-04-27", "participation_interest": "2", "ptinterest_comment": "I consented him on 4/27/2021.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-07", "sp_v1_preop_date": "2021-04-14", "sp_v2_6wk_date": "2021-06-18", "sp_v3_3mo_date": "2021-08-07", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30130": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30131": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/26/2021. Spoke 4/27 and emailed consent. LVM 4/28. Unable to contact to contact after emailing consent. LVM 8/18 for 2nd knee replacement. LVM 8/27.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30132": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she has other pain, sciatica, and lung issues. If she did not have these other medical problems she may participate. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30133": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of consent and asked that I not call again. He will contact me if he is interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30134": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After multiple phone calls, patient never returned our call. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30135": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not want to have to come in to the city because it is too long of a drive for her. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30136": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent an email stating that she is not interested in participating in the study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30137": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-30 09:10:27", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's blood draw was taken outside of protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-04-29 10:44", "date_of_contact": "2021-04-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10023", "obtain_date": "2021-04-29", "participation_interest": "2", "ptinterest_comment": "Left message for patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-16", "sp_v1_preop_date": "2021-05-18", "sp_v2_6wk_date": "2021-07-28", "sp_v3_3mo_date": "2021-09-16", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30138": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/26/2021. LVM 4/30/2021. Spoke 5/10. Is interested in research unsure if she can come in for study visit prior to sx. Emailed decline 5/10.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30139": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-25 15:30:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Did not complete standard pressure scan.", "erep_protdev_desc": "Pt moderate pressure below standard cuff pressure. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "Pt continues participation. ", "erep_ae_date": "2021-07-27", "erep_ae_desc": "Pt states that she had a spasm in her thigh which resulted in her losing functioning in her surgery leg 7/8/2021. She states she is back to about 1 week after surgery in function. Pt also had an ulcer the following day. She went to the hospital 7/9 due to the bleeding ulcer. She states she has low hemoglobin. Pt states her survey responses will be affected. ", "erep_ae_relation": "3", "erep_ae_serious": "0", "erep_ae_severity": "2", "erep_ae_yn": "1", "erep_local_dtime": "2021-07-27 14:37:03", "erep_onset_date": "2021-07-08 13:31", "erep_outcome": "Pt followed up on 8/17 states progress is slow. Dr. thinks muscle in quad is torn. No PT for 2 weeks. 10/26 pt states she is doing much better. Extended PT. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-26 10:44:18", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "1", "erep_resolution_date": "", "erep_visit_inv": "4"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-17 09:04:26", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues study", "erep_protdev_desc": "Pt 6 wk surveys completed a few days outside of protocol window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "5": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-17 09:06:27", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues study", "erep_protdev_desc": "Pt completed 3 months surveys outside of window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "6": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-23 08:25:28", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt completed 6 mos surveys about 1 week out of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "5"}}, "age": "74", "consent_process_form_complete": "2", "date_and_time": "2021-05-06 10:41", "date_of_contact": "2021-04-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10026", "obtain_date": "2021-05-06", "participation_interest": "2", "ptinterest_comment": "Spoke w/ pt on 5/6. Is interested in study. Emailed consent form. LVM 5/6. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-09", "sp_v1_preop_date": "2021-05-21", "sp_v2_6wk_date": "2021-07-21", "sp_v3_3mo_date": "2021-09-09", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30140": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30141": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is not interested. He did not give a reason and hung up the phone. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30142": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30143": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is not interested in the research study, and that he will never do an MRI scan. He had an MRI scan before and he had a very bad experience. ", "reason_not_interested": "3|0", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30144": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/28. Spoke on 4/28. Expressed interest, but would like to see the consent form. Left knee done around 3/24. Multiple attempts to contact (LVM) after expressed interest. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "44", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30145": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Multiple attempts to contact. Emailed consent after pt left voice mail, unable to contact. LVM 4/28. lvm 5/7. Emailed 5/12. LVM 5/12.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30146": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-14 09:56:53", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt did not complete functional testing. Sx moved up and inadequate time to complete.", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-14 09:57:59", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt did not complete QST's. Sx moved up and inadequate time to complete. ", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-18 07:42:29", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Unable to complete all components of study visit due to time constraint (Sx date moved up)", "erep_protdev_desc": "Pt did not complete MRI.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-18 07:43:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Visit date on DOS. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "5": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-02 11:57:05", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Blood draw done outside of six week window (19 days post sx).", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-05-07 13:52", "date_of_contact": "2021-04-28", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10027", "obtain_date": "2021-05-07", "participation_interest": "2", "ptinterest_comment": "Spoke 5/5. Expressed interest. RA emailed consent and will call back. Unable to speak 5/6. Will call back 5/7. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-14", "sp_v1_preop_date": "2021-05-14", "sp_v2_6wk_date": "2021-06-25", "sp_v3_3mo_date": "2021-08-14", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30147": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-02 10:26:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt did not complete standard pressure MRI. ", "erep_protdev_desc": "Pt custom pressure less than standard pressure.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-11-03 10:14:33", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt in person visit portion closer to 4 months than 3 months due to RA unable to contact pt and pt having other knee sx. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-17 08:58:54", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Blood draw taken when pt came in for 2nd knee surgery.", "erep_protdev_desc": "6 wk blood draw outside of window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-14 14:08:42", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Patient had 2nd knee replaced within 3 months of the first surgery. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}}, "age": "39", "consent_process_form_complete": "2", "date_and_time": "2021-05-03 16:51", "date_of_contact": "2021-04-28", "dem_race": "6", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10024", "obtain_date": "2021-05-03", "participation_interest": "2", "ptinterest_comment": "Spoke w/ pt. Is interested and would like call back after reviewing consent. LVM 4/30. Consented 5/3.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "39", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-18", "sp_v1_preop_date": "2021-06-02", "sp_v2_6wk_date": "2021-07-30", "sp_v3_3mo_date": "2021-09-18", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30148": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Phone number listed is out of service. Will try to see if there is an updated number to call and email patient as well. \r\nLeft several messages for patient on updated phone number. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30149": {"age": "68", "consent_process_form_complete": "2", "date_and_time": "2021-05-05 12:47", "date_of_contact": "2021-05-19", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "2021-06-24", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10025", "obtain_date": "2021-05-05", "participation_interest": "2", "ptinterest_comment": "I consented her in person on 5/5/2021 at one of her appointments. She is coming in for her baseline visit on June 1, 2021. I called her on 05/19/2021 to check if she completed the questionnaires that were send to her by mail. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30150": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30151": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she will not be able to come in before her surgery date to do the baseline visit. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30152": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he doesn't have time to participate and that he is in pain right now. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30153": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she does not have time for the study, and that she is also not interested. ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30154": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 4/30/2021-home. LVM 5/10-mobile. LVM- 6/4/2021-home. Unable to contact.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30155": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke briefly 4/30. Best time to call back is after 3:30pm. LVM 5/3. lvm 5/5. Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30156": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke 4/30. States he has appt 5/7 and is interested in study. Emailed consent. Will call back 5/3 with more information. lvm 5/3. LVM 5/5. Spoke 5/11 unable to participate, just started a new job and has time concerns. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30157": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She can't participate in the study because she is having her second knee replaced within 3 months of this first one. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30158": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Emailed consent 5/3. Lois expressed interest 5/11 and requested call back. Has disabled brother and she does not have the time to be committed to research. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30159": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30160": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30161": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30162": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He did not pick up, I left him a voicemail. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30163": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke 5/4. Would like to discuss study with niece and nephew who are physicians. Spoke with niece and nephews and does not want to participate.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30164": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to come into the city and that is a dealbreaker. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30165": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-06-03 14:06:17", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "We will draw her blood on the day of her surgery.", "erep_protdev_desc": "We could not obtain her blood.", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-06-03 14:07:45", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She could not do the 5 times Sit- to- Stand Test. She could do only one repetition. She was in too much pain.", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-06-03 14:11:59", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She could not complete the second cuff fMRI scan because her personalized cuff pressure was 90 mmHg which is below the set pressure of 120 mmHg. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "68", "consent_process_form_complete": "2", "date_and_time": "2021-05-10 15:40", "date_of_contact": "2021-05-10", "dem_race": "3", "ethnic": "2", "ewcomments": "Pt states they are unable to participate in study and have had a lot going on. ", "ewdateterm": "2022-01-19", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10029", "obtain_date": "2021-05-10", "participation_interest": "2", "ptinterest_comment": "I consented her on 5/10/2021. She is coming in for her baseline visit on June 3rd at 10:00 AM.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-17", "sp_v1_preop_date": "2021-05-18", "sp_v2_6wk_date": "2021-09-28", "sp_v3_3mo_date": "2021-11-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30166": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She just said no right away. She did not give a reason. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30167": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has too much going on at the moment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30168": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is having surgery next week and has no time to come in before that. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30169": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states it is too far for her and does not want to come in to the city. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30170": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30171": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30172": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-05-25 15:27:18", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt moderate pain rating below standard pressure cuff 120 mmhg, did not have standard pressure mri. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-30 09:13:02", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Blood draw 2 days outside of protocol window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-11 14:53:35", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt unable to come in closer to 3 month visit due to lack of transportation (requires husband to drive for visits). Pt surveys and in person visit outside of protocol window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-05-10 09:59", "date_of_contact": "2021-05-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10028", "obtain_date": "2021-05-10", "participation_interest": "2", "ptinterest_comment": "Spoke 5/7. Expressed interest. RA emailed consent and will follow up.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-09", "sp_v1_preop_date": "2021-05-24", "sp_v2_6wk_date": "2021-07-21", "sp_v3_3mo_date": "2021-09-09", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30173": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She didn't pick up. I left her a voicemail. I have called her three times. I will wait for her to call me back. I do not want to call her too much. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30174": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He can't speak English very well. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "84", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30175": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is not interested in research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30176": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She just received my voicemails. Her surgery is tomorrow therefore, she can't participate in the study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30177": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke w/ pt. States she hopes to not follow up downtown and does not want to make trips to Rush due to the long drive.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30178": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states there is too much involved and she will decline. She states she is also claustrophobic. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30179": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she lives too far away from Rush and will not have time to travel. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30180": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He can't do the MRI scan because he said that it will give him anxiety. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30181": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She never contacted me back. Her surgery date is tomorrow. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30182": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-09 13:24:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Blood draw was taken outside of protocol timeline. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-05-12 11:17", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10030", "obtain_date": "2021-05-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-05-18", "sp_v1_preop_date": "2021-05-17", "sp_v2_6wk_date": "2021-06-29", "sp_v3_3mo_date": "2021-08-18", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30183": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30184": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages for patient and have not received a call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30185": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left patient multiple messages with no response. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30186": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30187": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30188": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-04 11:02:30", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's baseline is outside of protocol range", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-04 11:05:46", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's cuff pressure was under the standard cuff pressure. No standard cuff was performed. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-05-12 12:07", "date_of_contact": "2021-05-12", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10031", "obtain_date": "2021-05-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-07", "sp_v1_preop_date": "2021-06-04", "sp_v2_6wk_date": "2021-07-19", "sp_v3_3mo_date": "2021-09-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30189": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30190": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "States she has other conditions and does not want anything to be worsened.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30191": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"It's more than I'm willing to do\"", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30192": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 5/10. 5/11 states he is busy and does not have time prior to surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30193": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said she is not interested right away. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30194": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "New granddaughter, and has trip planned. Pt plans on having second knee replaced within 3 months similar to her sister. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30195": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "I called her, but she never picked up. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30196": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 5/12/2021. LVM 5/18. Spoke briefly 5/26 in a meeting. Pt stated she would call back. Unable to contact.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30197": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She does not want to come down to the hospital. She said that she doesn't have time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30198": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states does not want to come in extra for in person visits (esp. blood draw). States if had follow ups in Indiana where patient has Physical therapy then she would participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30199": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he is already a part of another research study so he doesn't want to participate in a second research study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30200": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is not going to have time to be a part of the research study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30201": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form. She also states she would like to discuss this with her doctor as well. \r\nLeft multiple messages for patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30202": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spanish speaking. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30203": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-16 10:22:27", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's pressure cuff is below standard pressure. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-16 10:25:21", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's baseline visit is outside of protocol timeline. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-21 13:08:07", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's 6 week blood draw is outside of protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "46", "consent_process_form_complete": "2", "date_and_time": "2021-05-20 11:02", "date_of_contact": "2021-05-20", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10033", "obtain_date": "2021-05-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-28", "sp_v1_preop_date": "2021-06-16", "sp_v2_6wk_date": "2021-08-09", "sp_v3_3mo_date": "2021-09-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30204": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she is interested in the study and requested a copy of the consent form. She wanted to go back to sleep and asked if I could call her back at a later time. \r\nLeft multiple message for patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30205": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is in enough pain and does not need to be subjected to anymore. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30206": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has to travel and keep up with 5 grandkids. Does not have the time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30207": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"that sounds like too much for me\"", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30208": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to tolerate MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30209": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She never picked up the phone, and her surgery date is tomorrow. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30210": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-05-27 14:57:53", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She wanted us to draw her blood with a very thin needle but we did not have one.", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-05-27 14:59:52", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "She did not do the set rate for the cuff because she was below 120mmHg pressure. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-06-10 11:41:20", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-21 13:07:23", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Attempted blood draw 6/28. Unable to draw. Pt unwilling to come in 2nd time closer to 6 weeks. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "58", "consent_process_form_complete": "2", "date_and_time": "2021-05-20 16:52", "date_of_contact": "2021-05-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10035", "obtain_date": "2021-05-20", "participation_interest": "2", "ptinterest_comment": "I consented her on 5/19/2021. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-04", "sp_v1_preop_date": "2021-05-27", "sp_v2_6wk_date": "2021-07-16", "sp_v3_3mo_date": "2021-09-04", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30211": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "I left him a couple of voicemails but I was never able to get in contact with him. His surgery date is tomorrow. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30212": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He does not want to travel to the city for extra appointments. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30213": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that the study is too long. She also said ,that the MRI scans are too much for her to do. ", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30214": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to LVM (full mailbox) 5/19. LVM 5/25. LVM 5/27/2021. Unable to contact pt. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30215": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-06-02 12:58", "date_of_contact": "2021-05-21", "dem_race": "N/A", "ethnic": "1", "ewcomments": "Pt LVM stating he did not have time to complete study related procedures. RA called back and LVM to determine if he was able to complete any of the study (surveys, blood draw, etc.). Pt did not call back by day of surgery. ", "ewdateterm": "2021-06-08", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "1", "main_record_id": "10039", "obtain_date": "2021-06-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30216": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Spoke 5/19, expressed interest. LVM 5/20. SPoke 5/26. States he will be rescheduling his sx to a later unknown date, but would be interested in participating in the study. Pt no longer interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30217": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "I contacted her but she never called me back. Her surgery date passed. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30218": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she lives too far and it would be inconvenient for her. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30219": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she plans on having a second knee surgery weeks after the first. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30220": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-07 15:37:07", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Will draw blood on day of surgery.", "erep_protdev_desc": "Unable to draw blood day of study visit.", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-07 15:39:05", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Did not complete standard pressure with cuff. ", "erep_protdev_desc": "Pt custom pressure cuff lower than standard. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-29 13:37:13", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "blood draw completed outside of window on day of surgery", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-29 13:37:51", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Unable to obtain blood for EDTA tube", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "78", "consent_process_form_complete": "2", "date_and_time": "2021-05-20 15:53", "date_of_contact": "2021-05-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10034", "obtain_date": "2021-05-20", "participation_interest": "2", "ptinterest_comment": "Emailed consent form. Will call to follow up regarding participation.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-29", "sp_v1_preop_date": "2021-06-07", "sp_v2_6wk_date": "2021-08-10", "sp_v3_3mo_date": "2021-09-29", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30221": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM home phone possibly- 5/20/2021. LVM 5/25. LVM 5/26. Unable to contact. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30222": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-07 16:07:21", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N|A", "erep_protdev_desc": "Patient's baseline visit is outside of protocol range.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-07 16:47:46", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Will get blood draw on date of surgery. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-07 17:23:23", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's pressure cuff was below standard pressure. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "56", "consent_process_form_complete": "2", "date_and_time": "2021-05-27 15:09", "date_of_contact": "2021-05-26", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10038", "obtain_date": "2021-05-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-09", "sp_v1_preop_date": "2021-06-07", "sp_v2_6wk_date": "2021-07-21", "sp_v3_3mo_date": "2021-09-09", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30223": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-09 12:09:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's baseline visit is outside protocol timeline. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-09 13:19:29", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's pressure cuff was below standard cuff. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "5": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-09 13:21:58", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Unable to get blood draw at baseline visit. Will get blood on day of surgery. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "59", "consent_process_form_complete": "2", "date_and_time": "2021-05-26 10:26", "date_of_contact": "2021-05-26", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10037", "obtain_date": "2021-05-26", "participation_interest": "2", "ptinterest_comment": " ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-11", "sp_v1_preop_date": "2021-06-09", "sp_v2_6wk_date": "2021-07-23", "sp_v3_3mo_date": "2021-09-11", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30224": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to get in contact with patient. Phone numbers listed are for her sons and they state patient is canceling her surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30225": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is not interested. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30226": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He does not want to travel to downtown. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30227": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke briefly w/pt on 5/25. Requested call back 5/26 after 10 am. Pt is spanish speaking and requires interpreter. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30228": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is not interested. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30229": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to do head MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30230": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 5/25/2021. LVM 5/27. LVM 6/3. Unable to contact. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30231": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she lives in Indiana and does not want to have to keep coming in to the city if she doesn't have to. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30232": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "States she takes care of her grandchildren, and it sounds like too much. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30233": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-06-04 07:50", "date_of_contact": "2021-06-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10041", "obtain_date": "2021-06-04", "participation_interest": "2", "ptinterest_comment": "Pt is interested. RA emailed consent form to provide more info. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-01", "sp_v1_preop_date": "2021-06-14", "sp_v2_6wk_date": "2021-08-12", "sp_v3_3mo_date": "2021-10-01", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30234": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-28 13:31:53", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Blood draw taken day of surgery. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-28 13:32:47", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt completed surveys and blood draw. ", "erep_protdev_desc": "Pt did not complete functional testing. Cancelled baseline visit and was unable to reschedule. ", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-28 13:34:09", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt completed surveys and blood draw. ", "erep_protdev_desc": "Pt did not complete QST's. Pt cancelled baseline visit and was unable to reschedule.", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-06-28 13:34:51", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt completed surveys and blood draw. ", "erep_protdev_desc": "Pt did not complete MRI, cancelled baseline visit and was unable to reschedule.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-06-16 14:31", "date_of_contact": "2021-06-16", "dem_race": "3", "ethnic": "2", "ewcomments": "Pt stated she had additional questions after RA spoke regarding research and reasons collecting blood. Clinical nurse called to follow up and was unable to make contact or receive call back. ", "ewdateterm": "2021-08-30", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "2", "main_record_id": "10051", "obtain_date": "2021-06-16", "participation_interest": "2", "ptinterest_comment": "She signed the consent form on 6/16/2021. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-28", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2021-08-09", "sp_v3_3mo_date": "2021-09-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30235": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact after emailing consent form. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30236": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She is off the study because her surgery is tomorrow and she never called me back. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30237": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "3", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2021-06-16 11:52:34", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "He could not do the MRI scan because he has bb pellets in his legs. He also did not do the Imaging Items section. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-06-07 12:08", "date_of_contact": "2021-06-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10043", "obtain_date": "2021-06-07", "participation_interest": "2", "ptinterest_comment": "I consented him on 6/7/2021. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-21", "sp_v1_preop_date": "2021-05-26", "sp_v2_6wk_date": "2021-08-02", "sp_v3_3mo_date": "2021-09-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30238": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she has a phobia from the MRI scan. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30239": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt has twins and states she does not have time to do in person study visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30240": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not speak English.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30241": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is Spanish speaking and does not speak any English at all. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30242": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is the full time caregiver to her 99 yr old mother and has no time to come in for visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30243": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he has shrapnel in his leg and cannot have MRI done. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30244": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that it would be too much for her to deal with so close to surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30245": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she has cancelled her surgery and no longer having it. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30246": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is just not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30247": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that he does not have time to do our study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30248": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Does not meet eligibility criteria. States she is interested in participating. RA will call back if she is unable to schedule within 3 months of the first knee. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30249": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Mailbox is full. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30250": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is already in enough pain and does not want to be caused any more pain. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30251": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She said that she is not interested right away. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30252": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent an email stating that it was too much of a commitment for her. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30253": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated she was very scared to leave her home and it has been a challenge to get the surgery figured out. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30254": {"age": "54", "consent_process_form_complete": "2", "date_and_time": "2021-06-10 15:56", "date_of_contact": "2021-06-10", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10045", "obtain_date": "2021-06-10", "participation_interest": "2", "ptinterest_comment": "Patient requested a copy of consent to look over. Will call her back Thursday to possibly consent. \r\nPt asked that I call her back at noon.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-02", "sp_v1_preop_date": "2021-06-17", "sp_v2_6wk_date": "2021-08-13", "sp_v3_3mo_date": "2021-10-02", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30255": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she has too much going on and does not have the time. \r\n", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30256": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He does not want to participate because he said that the study sounds intrusive. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30257": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-06-08 15:55", "date_of_contact": "2021-06-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10044", "obtain_date": "2021-06-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-02", "sp_v1_preop_date": "2021-06-29", "sp_v2_6wk_date": "2021-08-13", "sp_v3_3mo_date": "2021-10-02", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30258": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No answer. \r\nUnable to reach patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30259": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt called back and stated that she wants to discuss with son. RA emailed consent. RA f/u pt stated not interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30260": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sent ICF, wants to discuss with daughter", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30261": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke with husband briefly, will have her call me back. Pt did not contact to participate. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30262": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30263": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-19 12:42:14", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt unable to have MRI due to ear piercing that's not removable.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "59", "consent_process_form_complete": "2", "date_and_time": "2021-06-14 12:02", "date_of_contact": "2021-06-14", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10048", "obtain_date": "2021-06-14", "participation_interest": "2", "ptinterest_comment": "6/9-Prefers to read over consent. RA emailed consent. 6/11-Pt stated they enjoy participating in research studies and is willing to participate in this one. RA will call at determined time to consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-20", "sp_v1_preop_date": "2021-07-13", "sp_v2_6wk_date": "2021-08-31", "sp_v3_3mo_date": "2021-10-20", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30264": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "RA emailed consent. Will follow up. LVM 6/11 to det. if still interested/consent. Pt LVM stating not interested in participating.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30265": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30266": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent me an email stating that it was too huge of a commitment for her and that the payout was not enough. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30267": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " I send her the consent form on 6/15/2021. Spoke 6/22. Not interested.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30268": {"age": "72", "consent_process_form_complete": "2", "date_and_time": "2021-06-16 14:21", "date_of_contact": "2021-06-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10052", "obtain_date": "2021-06-16", "participation_interest": "2", "ptinterest_comment": "Expressed interest. Emailed consent form. Completed consent.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-13", "sp_v1_preop_date": "2021-07-02", "sp_v2_6wk_date": "2021-08-24", "sp_v3_3mo_date": "2021-10-13", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30269": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "States he is not interested in any studies. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30270": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Have left multiple messages for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30271": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left message for patient. \r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30272": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He said that the study will take too much time, therefore he does not want to participate. ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30273": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to do MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30274": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-20 14:22:12", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "6 week visit outside of protocol window by a few days. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-20 14:22:47", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "3 month visit a few days outside of window by 6 days", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-06-29 15:51", "date_of_contact": "2021-06-17", "dem_race": "7", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10062", "obtain_date": "2021-06-29", "participation_interest": "2", "ptinterest_comment": "Pt needs to check w/ daughters schedule prior to scheduling study visit. Unable to sign after review of consent (email not opening). ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-27", "sp_v1_preop_date": "2021-07-16", "sp_v2_6wk_date": "2021-09-07", "sp_v3_3mo_date": "2021-10-27", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30275": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke with pt as new point of contact. Preferred to have consent emailed. Will follow up to consent via phone if still interested. Went through consent 6/23, would like additional time to decide to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30276": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-08 11:28:14", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient was consented in June 2021, but her surgery was cancelled and then later rescheduled for February 2022. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-08 11:22:17", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "3 month visit was outside of protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "61", "consent_process_form_complete": "2", "date_and_time": "2021-06-22 11:42", "date_of_contact": "2021-06-22", "dem_race": "1|3|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10057", "obtain_date": "2021-06-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-11", "sp_v1_preop_date": "2022-02-02", "sp_v2_6wk_date": "2022-03-25", "sp_v3_3mo_date": "2022-05-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30277": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is caring for a disabled son and lives too far. Feels that she would be taking too much on by participating. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30278": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he has too many other commitments and spends half of his time in Texas. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30279": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-29 15:09:36", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues participation", "erep_protdev_desc": "3 mos survey set a few days outside of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "59", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 11:02", "date_of_contact": "2021-07-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10063", "obtain_date": "2021-07-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-27", "sp_v1_preop_date": "2021-07-15", "sp_v2_6wk_date": "2021-09-07", "sp_v3_3mo_date": "2021-10-27", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30280": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was unable to talk, asked that I call him back later. \r\nLeft message for patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30281": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Interested, but would like to think about. RA emailed consent. Pt emailed and stated unable to commit due to time commitment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30282": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "States he is in pain and will contact us if he wants to participate. Stated he did not have an email and prefers not to be called back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30283": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not convenient to participate in this study. States lives far away. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30284": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not interested in participating in another study, already participating in 2 others. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30285": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 6/28. Spoke 6/30. Expressed interest. Emailed consent form to review. LVM 7/2/2021. Pt lvm stating he does not want to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30286": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Would like additional time to think about the study. Son is her transportation and may require Lyft. RA will follow up in one week. States after thinking about MRI, she is unwilling to try due to noise. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30287": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined without description of study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30288": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2021-07-19 11:00", "date_of_contact": "2021-07-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10079", "obtain_date": "2021-07-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-05", "sp_v1_preop_date": "2021-07-29", "sp_v2_6wk_date": "2021-09-16", "sp_v3_3mo_date": "2021-11-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30289": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left message for patient. \r\nPatient would like to look over consent and check her availability. \r\nLeft message for patient. \r\nLeft multiple messages for patient with no response. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30290": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she read over the consent and is not very comfortable participating and really just isn't interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30291": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has too much going on at the moment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30292": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 7/2/2021. LVM 7/8. LVM 7/14.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30293": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30294": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she is hoping to go back to work right away and her time is very limited. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30295": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she is not interested in having additional pain to leg. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30296": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she is out of town until 2 weeks before surgery and unfortunately will have no time to commit to the study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "45", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30297": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 7/7/2021. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30298": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 7/7/2021. Pt called 7/12. Stated not interested due to distance to Chicago.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30299": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is on vacation and will not be back until Sunday. Requested a copy of the consent form to look over. \r\nPatient hasn't had time to look over consent. Will call me back later this afternoon. \r\nLeft several messages for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30300": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 7/7/2021. Spoke 7/12, pt stated unsure if able to comply with study related activities. RA emailed consent form. Pt stated would call back if willing to participate. Pt states unable to participate due to how busy he is. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30301": {"age": "57", "consent_process_form_complete": "2", "date_and_time": "2021-07-09 13:49", "date_of_contact": "2021-07-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10072", "obtain_date": "2021-07-09", "participation_interest": "2", "ptinterest_comment": "LVM 7/7/2021. Interested in study. RA emailed consent and will follow up. LVM 7/9/2021", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-05", "sp_v1_preop_date": "2021-07-15", "sp_v2_6wk_date": "2021-09-16", "sp_v3_3mo_date": "2021-11-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30302": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30303": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Unable to contact after emailing consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30304": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he has too much going on right now. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30305": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient will be leaving to Florida soon after surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30306": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she has no time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "41", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30307": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Expressed interest. RA emailed consent form for further review. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30308": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left message for patient. \r\nPatient requested a copy of consent form and will call me back once she is off of work. \r\nPatient was at the store and couldn't talk. Asked that I give her a call back tomorrow after 10am to discuss study. \r\nLeft multiple messages for patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30309": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is having a lot of anxiety regarding surgery and feels that this study would be too much for her. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30310": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "States does not have time prior to sx for study visit. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30311": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states would be \"too much\" after reviewing consent. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30312": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke briefly 7/12. Requested call back. Stated she already had one knee done and was not interested in study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30313": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke and emailed consent form. RA needs to confirm home address. spoke 7/28 and expressed continued interest after reviewing consent in detail stated would sign later that night. lvm 7/30", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30314": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he lives too far and is planning on leaving town as soon as he is cleared to. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30315": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states his time is limited. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30316": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much going on. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30317": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she has too much going on at the moment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30318": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she discussed with her daughter and they have a lot going on at the moment. They will pass for now, but if anything changes she will contact me prior to her surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30319": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-19 13:40:28", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient panicked and could not complete the MRI. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "61", "consent_process_form_complete": "2", "date_and_time": "2021-07-15 16:18", "date_of_contact": "2021-07-15", "dem_race": "3", "ethnic": "2", "ewcomments": "Have made repeated attempts to get a hold of patient with no call back. ", "ewdateterm": "2022-01-21", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "2", "main_record_id": "10078", "obtain_date": "2021-07-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-11", "sp_v1_preop_date": "2021-07-19", "sp_v2_6wk_date": "2021-09-22", "sp_v3_3mo_date": "2021-11-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30320": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "VM full 7/13. VM full 7/20. 7/28-Pt stated cancelled sx. provider out of network.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30321": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "RA emailed consent form. Must confirm home address. LVM 7/15. LVM 7/19. Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30322": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she was driving and did not have time to speak. Asked that I call on a different day later in the afternoon. \r\nPatient is on there way to visit a relative at the hospital and could not speak. \r\nLeft multiple message with not call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30323": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is working 12 hr shifts and has no time to come in. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30324": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Man answered home number and stated \"she's not interested\" before hanging up. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30325": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined participation 7/23.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30326": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2021-07-20 14:25", "date_of_contact": "2021-07-16", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10081", "obtain_date": "2021-07-20", "participation_interest": "2", "ptinterest_comment": "Interested. Emailed consent form.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-17", "sp_v1_preop_date": "2021-07-26", "sp_v2_6wk_date": "2021-09-28", "sp_v3_3mo_date": "2021-11-17", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30327": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent me an email stating that he will not be able to commit to participating in our research study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30328": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30329": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-12-21 15:40:23", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Continued participation. ", "erep_protdev_desc": "3 mos. visit 3.5 weeks after 3 month study visit date. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "65", "consent_process_form_complete": "2", "date_and_time": "2021-07-26 11:00", "date_of_contact": "2021-07-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10087", "obtain_date": "2021-07-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-17", "sp_v1_preop_date": "2021-08-05", "sp_v2_6wk_date": "2021-09-28", "sp_v3_3mo_date": "2021-11-17", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30330": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages for patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30331": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient just isn't interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30332": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he is moving to Indiana and all of his recovery visits will be over there. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30333": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt called to inform is not able to participate in research study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30334": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested due to time commitment and distance to Rush. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30335": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt wife answered. Asked if call was due to knee surgery and states pt unable to move well enough to do a study in person. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30336": {"age": "49", "consent_process_form_complete": "2", "date_and_time": "2021-07-20 15:24", "date_of_contact": "2021-07-20", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10082", "obtain_date": "2021-07-21", "participation_interest": "2", "ptinterest_comment": "Expressed interest. Wants to consent in person", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-19", "sp_v1_preop_date": "2021-08-03", "sp_v2_6wk_date": "2021-09-30", "sp_v3_3mo_date": "2021-11-19", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30337": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30338": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form to look over. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30339": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient cannot have MRI done, he has a pain stimulator. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30340": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she has too much going on.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30341": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm 7/21", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30342": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unsure if will be having surgery therefore can't say OK to anything. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30343": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt declined participation after thinking about it.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30344": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-28 11:33:59", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "RA failed to put location of greater knee pain in RedCap", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "46", "consent_process_form_complete": "2", "date_and_time": "2021-07-27 07:26", "date_of_contact": "2021-07-23", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10089", "obtain_date": "2021-07-27", "participation_interest": "2", "ptinterest_comment": "Pt expressed interest. Emailed consent form.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-11", "sp_v1_preop_date": "2021-08-04", "sp_v2_6wk_date": "2021-09-22", "sp_v3_3mo_date": "2021-11-11", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30345": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30346": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages for patient with no call back", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30347": {"age": "34", "consent_process_form_complete": "2", "date_and_time": "2021-08-13 11:15", "date_of_contact": "2021-08-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10106", "obtain_date": "2021-08-13", "participation_interest": "2", "ptinterest_comment": "Patient requested a copy of consent form to look over. \r\nLeft message for patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "34", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-10", "sp_v1_preop_date": "2021-08-26", "sp_v2_6wk_date": "2021-10-22", "sp_v3_3mo_date": "2021-12-10", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30348": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30349": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that this study would cut into her work time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30350": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30351": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to make contact with patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30352": {"age": "63", "consent_process_form_complete": "2", "date_and_time": "2021-07-27 09:21", "date_of_contact": "2021-07-26", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10090", "obtain_date": "2021-07-27", "participation_interest": "2", "ptinterest_comment": "Patient is definitely interested but was at a doctor's appointment. She asked that I call her tomorrow morning to consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-13", "sp_v1_preop_date": "2021-08-06", "sp_v2_6wk_date": "2021-09-24", "sp_v3_3mo_date": "2021-11-13", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30353": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was not interested in participating ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30354": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-07-26 14:19", "date_of_contact": "2021-07-26", "dem_race": "7", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10088", "obtain_date": "2021-07-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-19", "sp_v1_preop_date": "2021-08-17", "sp_v2_6wk_date": "2021-09-30", "sp_v3_3mo_date": "2021-11-19", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30355": {"age": "69", "consent_process_form_complete": "2", "date_and_time": "2021-08-13 13:15", "date_of_contact": "2021-08-11", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10107", "obtain_date": "2021-08-13", "participation_interest": "2", "ptinterest_comment": "Patient lost power and unable to sign consent today. Will call her Friday to go over consent form and sign. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-16", "sp_v1_preop_date": "2021-08-18", "sp_v2_6wk_date": "2021-10-28", "sp_v3_3mo_date": "2021-12-16", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30356": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she lives too far for her to make any extra trips to the city. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30357": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was at work and could not speak. He did request a copy of the consent to look over and states that he will call me when he has the time. \r\nPatient never contacted me regarding study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30358": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages for patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30359": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30360": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Daughter number listed as mobile number, she has POA for father due to COVID, states father speaks English and will have him give me a call. Pt did not make contact regarding study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30361": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states he does not like going to Chicago", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30362": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30363": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-01 12:55:41", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt came in closer to 4 mos post op for 3 mos in person visit. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "63", "consent_process_form_complete": "2", "date_and_time": "2021-08-05 13:37", "date_of_contact": "2021-07-30", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10097", "obtain_date": "2021-08-05", "participation_interest": "2", "ptinterest_comment": "Emailed consent. LVM 8/2.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-22", "sp_v1_preop_date": "2021-08-09", "sp_v2_6wk_date": "2021-12-02", "sp_v3_3mo_date": "2022-01-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30364": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that is seems like too much for her. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30365": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form. Patient states she will see me next Tuesday if she is interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30366": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not feel safe in the city because of all of the shootings. States that she will be having her surgery and then getting out of the city as soon as possible. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30367": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he does not have the time to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30368": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she lives too far and is working full time until just before surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30369": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 7/30. LVM 8/2/2021. Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30370": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"Too involved for me\"", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30371": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Splits time between Michigan and California most of the time. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30372": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined participation.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30373": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM 8/2/2021. lvm 8/10. Pt states rescheduled knee sx to following year. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30374": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Hesitant about timing of coming in and work.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30375": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "States she would be unable to do study related activities and appreciated the explanation of activities. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30376": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she had to cancel her surgery because her insurance is out of network. She will reach out to us if anything changes. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30377": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he cannot have MRI done because he has a back stimulator. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30378": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he does not have the time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30379": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30380": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Left multiple messages with no response. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30381": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated unable to participate currently. Stated to keep in mind when she has her second knee. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30382": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke and participant declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30383": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Stated it's difficult for her to get around, offered transportation and pt declined. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30384": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt LVM stating did not want to participate", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30385": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "2021-08-06 09:56", "date_of_contact": "2021-08-04", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10099", "obtain_date": "2021-08-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-07", "sp_v1_preop_date": "2021-08-26", "sp_v2_6wk_date": "2021-10-19", "sp_v3_3mo_date": "2021-12-07", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30386": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30387": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not willing to try MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30388": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-23 07:51:31", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's surgery was pushed back a couple of weeks. Baseline visit is outside of protocol range because of that. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-08-16 08:57", "date_of_contact": "2021-08-05", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10108", "obtain_date": "2021-08-16", "participation_interest": "2", "ptinterest_comment": "Patient is not good with computers and would prefer that I consent her in person. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-06", "sp_v1_preop_date": "2021-08-16", "sp_v2_6wk_date": "2021-11-16", "sp_v3_3mo_date": "2022-01-05", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30389": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate and requested to be taken off the call list after having consent form emailed. Do not contact in future.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30390": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact pt. LVMx2.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30391": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30392": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Already participating in studies, also not willing to come in for study visits and states she takes many pain medications. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30393": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-08-19 15:41", "date_of_contact": "2021-08-10", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10109", "obtain_date": "2021-08-19", "participation_interest": "2", "ptinterest_comment": "Emailed consent form. Will follow up for possible consent. LVM 8/12/2021. LVM 8/17/2021", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-13", "sp_v1_preop_date": "2021-09-02", "sp_v2_6wk_date": "2021-10-25", "sp_v3_3mo_date": "2021-12-13", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30394": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30395": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form to look over. \r\nLeft multiple messages for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30396": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sx was resched to February. Pt indicated she was OK with call closer to sx date. Pt unable to speak 1/19, requested call back at different time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30397": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30398": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-07 10:55:53", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt unable to come in until after holiday's for study visit therefore visit is a few days outside of window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "2": {"erep_action_taken": "Pt continues participation as planned.", "erep_ae_date": "2021-12-12", "erep_ae_desc": "Pt was admitted into ED for several days due to infection in ankle on same side as knee surgery. She was prescribed antibiotics while in the hospital. Pt states that her knee was not affected and is doing well. ", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2022-01-07 11:33:38", "erep_onset_date": "2021-12-12 11:33", "erep_outcome": "N/A", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-01-07 11:33", "erep_visit_inv": "4"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-23 16:29:26", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A. Get stamps earlier. ", "erep_protdev_desc": "6 month survey set outside of window. Survey set was mailed and returned. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "5"}}, "age": "68", "consent_process_form_complete": "2", "date_and_time": "2021-09-07 11:50", "date_of_contact": "2021-08-13", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10134", "obtain_date": "2021-09-07", "participation_interest": "2", "ptinterest_comment": "RA emailed consent to daughter email per request. Mailed consent form as requested. Must ask eligibility q's. Preferred call time 8:30am. lvm 8/27. Pt called back 9/1- stated had not received consent, informed will be at clinic 9/7 and is willing to meet prior to.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-21", "sp_v1_preop_date": "2021-09-14", "sp_v2_6wk_date": "2021-11-02", "sp_v3_3mo_date": "2021-12-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30399": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVMx2. Unable to contact pt.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30400": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't want additional pain. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30401": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not comfortable doing MRI. Pt was also not currently scheduled due to fungus on her toes and changed surgeons. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30402": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. Pt broke foot contralateral to surgical knee. Pt unable to put weight on ankle and not able to complete study related tasks at this time. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30403": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-05-24 07:50:20", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "RA did not document final pain rating from sit to stand test", "erep_protdev_type": "3", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-24 12:15:10", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Participant continues participation", "erep_protdev_desc": "3 month in person visit outside of window~2 mos due to participant vacation.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "58", "consent_process_form_complete": "2", "date_and_time": "2021-08-23 10:51", "date_of_contact": "2021-08-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10110", "obtain_date": "2021-08-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "0", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-15", "sp_v1_preop_date": "2021-09-24", "sp_v2_6wk_date": "2021-11-25", "sp_v3_3mo_date": "2022-01-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30404": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate 8/27 after hearing details of visit. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30405": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 8/16/2021. LVM 8/24. Stated received call earlier in the day and was not interested in participating in research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30406": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient unable to take off of work", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30407": {"age": "57", "consent_process_form_complete": "2", "date_and_time": "2021-08-25 13:31", "date_of_contact": "2021-08-24", "dem_race": "3", "ethnic": "N/A", "ewcomments": "Unable to reach participant after sx cancelled and not rescheduled within study timeframe. Pt would need to repeat study tests. ", "ewdateterm": "2022-06-17", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "2", "main_record_id": "10115", "obtain_date": "2021-08-25", "participation_interest": "2", "ptinterest_comment": "Patient asked that I call her back at 4 pm. \r\nPatient states she is thinking of pushing her surgery and requested a copy of the consent form to look over. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30408": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to commit to time to come in. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "4", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30409": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated too much time, already busy with children and clinical work.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30410": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Daughters phone and email. Emailed information regarding study as requested. Stated unlikely mother would be able to participate. Pt never called regarding participation.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30411": {"age": "45", "consent_process_form_complete": "2", "date_and_time": "2021-09-02 07:21", "date_of_contact": "2021-08-23", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10124", "obtain_date": "2021-09-02", "participation_interest": "2", "ptinterest_comment": "Spoke w/ pt and is interested in participating. Emailed consent. LVM 8/26.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-27", "sp_v1_preop_date": "2021-09-09", "sp_v2_6wk_date": "2021-11-07", "sp_v3_3mo_date": "2021-12-27", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30412": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Going to Florida shortly after sx. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30413": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to do MRI. Pt has clausterphobia. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30414": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate 9/15. \"Too difficult to get down there\", also declined with offered lyft. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30415": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated she does not have time to come in prior to sx and her follow up appointment is via telehealth so it would not be convenient to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30416": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30417": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she has too much to do before surgery. \r\n09/02/2022- LVM", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30418": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30419": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is still working and does not have time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30420": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states I need to stop because she does not intend on participating in any of these study tests. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30421": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient looked over consent and decided that she was not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30422": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "Patient feeling unwell after therapy and took oxycodone. Patient states that the combination made her fall. She landed on her right hand and knee (non operative knee). \r\nPatient hospitalized on 09/12/2021 and discharged on 09/14/2021.\r\nDirected to discontinue oxycodone at hospital discharge. ", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "2", "erep_ae_yn": "1", "erep_local_dtime": "2021-09-15 08:54:45", "erep_onset_date": "2021-09-12 08:54", "erep_outcome": "", "erep_prot_dev": "", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "", "erep_resolution_date": "", "erep_visit_inv": "6"}}, "age": "79", "consent_process_form_complete": "2", "date_and_time": "2021-08-31 15:12", "date_of_contact": "2021-08-31", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10121", "obtain_date": "2021-08-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-08", "sp_v1_preop_date": "2021-09-02", "sp_v2_6wk_date": "2021-10-20", "sp_v3_3mo_date": "2021-12-08", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30423": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that it seems like too much of a time commitment for him. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30424": {"adverse_effects": {"1": {"erep_action_taken": "N/A", "erep_ae_date": "", "erep_ae_desc": "Pt's son passed away unexperctedly. Pt stated that they do feel sad/depressed as a result of the situation and therefore their questionnaire answers are not due to his knee. ", "erep_ae_relation": "3", "erep_ae_serious": "0", "erep_ae_severity": "2", "erep_ae_yn": "1", "erep_local_dtime": "2021-11-11 08:00:41", "erep_onset_date": "2021-09-14 08:00", "erep_outcome": "Pt continues to want to participate in study.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "56", "consent_process_form_complete": "2", "date_and_time": "2021-09-02 07:30", "date_of_contact": "2021-08-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10125", "obtain_date": "2021-09-02", "participation_interest": "2", "ptinterest_comment": "Pt may be interested if transportation is provided. RA called 9/1 for poss. consent and lvm. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "0", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-14", "sp_v1_preop_date": "2021-09-03", "sp_v2_6wk_date": "2021-10-26", "sp_v3_3mo_date": "2021-12-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30425": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form and will contact me if she is interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30426": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Going out of town next week until just before procedure and unable to make time commitment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30427": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30428": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"Too involved\". Pt stated does not like the idea of someone touching her knee which is already in pain. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30429": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sons getting married, sister-in-law ill and need support. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30430": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is no longer having surgery. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30431": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is Spanish speaking and is not interested in research. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30432": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states it is difficult for her to get to Rush. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30433": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he had an accident and has to postpone his surgery, but regardless states he is not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30434": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30435": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left message for patient.\r\nPatient is on vacation and asked that I call him back next week. \r\nLeft message with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30436": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form to look over. \r\nLeft voicemail for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30437": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient isn't interested in participating ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30438": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent an email stating that he is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30439": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30440": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30441": {"age": "57", "consent_process_form_complete": "2", "date_and_time": "2021-09-02 10:01", "date_of_contact": "2021-09-01", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10127", "obtain_date": "2021-09-02", "participation_interest": "2", "ptinterest_comment": "Patient is out of town. Requested a copy of the consent form. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-16", "sp_v1_preop_date": "2021-09-09", "sp_v2_6wk_date": "2021-10-28", "sp_v3_3mo_date": "2021-12-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30442": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-09-01 14:32", "date_of_contact": "2021-08-30", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10123", "obtain_date": "2021-09-01", "participation_interest": "2", "ptinterest_comment": "Interested. RA emailed consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-16", "sp_v1_preop_date": "2021-09-10", "sp_v2_6wk_date": "2021-10-28", "sp_v3_3mo_date": "2021-12-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30443": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke w/ husband of pt. Stated not likely wife would participate, but will give contact information and they will contact me if willing to participate. Pt never contacted regarding study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30444": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 1. LVM 2. Spoke 9/21. Emailed consent. Pt declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30445": {"age": "68", "consent_process_form_complete": "2", "date_and_time": "2021-09-03 10:15", "date_of_contact": "2021-09-01", "dem_race": "1|3|5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10129", "obtain_date": "2021-09-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-01", "sp_v1_preop_date": "2021-09-13", "sp_v2_6wk_date": "2021-11-11", "sp_v3_3mo_date": "2021-12-31", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30446": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2021-09-02 09:27", "date_of_contact": "2021-09-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10126", "obtain_date": "2021-09-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-15", "sp_v1_preop_date": "2021-09-20", "sp_v2_6wk_date": "2021-11-25", "sp_v3_3mo_date": "2022-01-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30447": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was interested in participating, but once I started going over the key points of the study she decided that she would prefer to decline instead. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30448": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she definitely is not interested since it would require her to leave her house and go places. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30449": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does have time and is not interested in participating. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30450": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Phone number listed is disconnected and unable to find any other number. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30451": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he is claustrophobic and is unwilling to participate because of the MRI. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30452": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form to look over. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30453": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient called and left a voicemail stating that she has too much going on at the moment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30454": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined because study procedures are \"Too much\" ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30455": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-12-14 13:25:35", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "6 week blood draw outside of window- at 9 wks as opposed to 6 due to pt schedule. Survey set completed about 3 days outside of window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-28 08:28:02", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "3 mos visit outside of +/- 2 wk window, by a few days", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-09-21 14:43", "date_of_contact": "2021-09-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10149", "obtain_date": "2021-09-21", "participation_interest": "2", "ptinterest_comment": "Pt asked questions regarding pain and how to assess since it is often determined by activity. RA informed we take pain scores throughout visit (including after functional tasks). Pt interested in research. RA emailed consent. Unable to contact 9/8 lvm. Unable to contact 9/15 lvm. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-08", "sp_v1_preop_date": "2021-09-29", "sp_v2_6wk_date": "2021-11-18", "sp_v3_3mo_date": "2022-01-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30456": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 1. Pt LVM stating not interested in research at this time and to take off call list. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30457": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 9/13. lvm 9/24. unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30458": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states they are not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30459": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is in too much pain and has too much going on at the moment. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30460": {"age": "76", "consent_process_form_complete": "2", "date_and_time": "2021-09-03 14:38", "date_of_contact": "2021-09-03", "dem_race": "5", "ethnic": "2", "ewcomments": "Pt states her blood pressure is too high and needs to \"take it easy\" prior to surgery. ", "ewdateterm": "2021-09-16", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10131", "obtain_date": "2021-09-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-28", "sp_v1_preop_date": "2021-09-17", "sp_v2_6wk_date": "2021-11-08", "sp_v3_3mo_date": "2021-12-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30461": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-04 10:33:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "3 Month visit outside of 3 month window (12/17\r\n), visit on 1/4", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "63", "consent_process_form_complete": "2", "date_and_time": "2021-09-03 14:28", "date_of_contact": "2021-09-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10130", "obtain_date": "2021-09-03", "participation_interest": "2", "ptinterest_comment": "Spoke w/ participant and emailed consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-17", "sp_v1_preop_date": "2021-09-08", "sp_v2_6wk_date": "2021-10-29", "sp_v3_3mo_date": "2021-12-17", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30462": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "RA mailed consent. Pt stated experiencing health issues and will contact if willing to participate. Pt did not contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30463": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she does not have the time at the moment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30464": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2021-10-04 16:40", "date_of_contact": "2021-10-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10174", "obtain_date": "2021-10-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-19", "sp_v1_preop_date": "2021-10-11", "sp_v2_6wk_date": "2021-11-29", "sp_v3_3mo_date": "2022-01-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30465": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Unable to contact after emailing consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "42", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30466": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Daughter answered phone. Stated mother is not interested in doing a research study because she is having a knee replacement and to \"take her off the list\" before hanging up phone. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30467": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not speak English according to Epic.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30468": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. Pt called back and lvm stating sx was cancelled and mentioned double knee replacement for next year (difficult to hear pt on phone message).\r\nPt has not rescheduled sx as of 05/26/2022.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30469": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke and emailed consent form. Did not look at consent 9/13 requested call back. Pt declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30470": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-09-15 15:29", "date_of_contact": "2021-09-13", "dem_race": "7", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10142", "obtain_date": "2021-09-15", "participation_interest": "2", "ptinterest_comment": "Expressed interest. RA emailed consent.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "2", "screening_gender": "N/A", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-27", "sp_v1_preop_date": "2021-09-16", "sp_v2_6wk_date": "2021-11-07", "sp_v3_3mo_date": "2021-12-27", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30471": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke w/ pt and wife.RA emailed consent. Called back 9/15. Pt and wife continued to state they needed to review consent/ RA unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30472": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt sounded hesitant. Emailed consent. lvm 9/15/2021. lvm 9/29/2021. Unable to contact pt. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30473": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he is working full time and does not have time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30474": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient returned my call. Requested a copy of the consent form and states that she needs time to think about it. She will contact me if she is interested. \r\nPatient never reached out to me. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30475": {"age": "69", "consent_process_form_complete": "2", "date_and_time": "2021-09-16 13:20", "date_of_contact": "2021-09-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10144", "obtain_date": "2021-09-16", "participation_interest": "2", "ptinterest_comment": "Patient states he is interested. Requested a copy of consent to look over and asked that I call him back tomorrow to consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-22", "sp_v1_preop_date": "2021-09-28", "sp_v2_6wk_date": "2021-12-02", "sp_v3_3mo_date": "2022-01-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30476": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient states she is currently on another study and has way too much going on at the moment. \r\n ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30477": {"age": "40", "consent_process_form_complete": "2", "date_and_time": "2021-09-16 15:01", "date_of_contact": "2021-09-16", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10146", "obtain_date": "2021-09-16", "participation_interest": "2", "ptinterest_comment": "Patient was on the phone and asked that I call her back later today. Copy of consent form was emailed to her. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "40", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-21", "sp_v1_preop_date": "2021-10-15", "sp_v2_6wk_date": "2021-12-01", "sp_v3_3mo_date": "2022-01-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30478": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Spoke w/ participant. Expressed interest. RA emailed consent. Unable to contact post emailing consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30479": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt sx rescheduled. 2/23/2022-Pt unwilling to come into MOR for study visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30480": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. Wife assisted during call due to pt confusion about study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30481": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was at work and did not have the time to speak with me. She requested that I send her a copy of the consent form and would call me if she is interested. \r\nPatient sent an email stating that she did not wish to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30482": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Left several messages for patient with no call back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30483": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is currently living in Indiana and states being too far and too busy to participate. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30484": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left message for patient. \r\nPatient returned my call and states that he needs to think about participating. He will reach out to me if he is interested. \r\nPatient never contacted me. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30485": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he is still working full time and cannot take that much time off to be able to participate. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30486": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that her daughter is getting married right before surgery and is booked all the way up until her surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30487": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not speak English/ traditional chinese. Number on file is daughters", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30488": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke w/ participant. Prefers to think about it. RA will call back in a week. Pt stated she had trouble opening consent and is no longer interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30489": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Polish speaker according to Epic. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30490": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left message for patient with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30491": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Surgery is coming up very soon, unable to take an afternoon to come in for study visit. would be willing if sx was further away.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30492": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to do mri and timing is bad. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30493": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt requested mailed information about the study. Mailed consent form. Pt states sx was postponed due to health issues. Pt stated it was OK to call back if they turn up on the schedule again. Pt states did not receive mailed copy of consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30494": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested in coming to downtown location", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30495": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-10 13:47:33", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt was seen a few days outside of 3 month window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "58", "consent_process_form_complete": "2", "date_and_time": "2021-09-27 13:14", "date_of_contact": "2021-09-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10159", "obtain_date": "2021-09-27", "participation_interest": "2", "ptinterest_comment": "LVM 9/20. SPoke 9/21. RA emailed consent.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-25", "sp_v1_preop_date": "2021-10-18", "sp_v2_6wk_date": "2021-12-05", "sp_v3_3mo_date": "2022-01-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30496": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they required dog sitters for two senior dogs, and the commute to MOR was very long. Pt declined to participate after reviewing consent due to HIPAA language and concerns with data.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30497": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Going out of town shortly after surgery. Informed would likely be able to complete 2 study visits, but pt declined. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30498": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30499": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2021-09-21 14:20", "date_of_contact": "2021-09-21", "dem_race": "7", "ethnic": "1", "ewcomments": "I have called participant multiple times, she has hung up on me twice and I left several messages with no call back. ", "ewdateterm": "2021-12-06", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "2", "main_record_id": "10148", "obtain_date": "2021-09-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-30", "sp_v1_preop_date": "2021-09-22", "sp_v2_6wk_date": "2021-11-10", "sp_v3_3mo_date": "2021-12-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30500": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-23 10:15:59", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "3 mos visit a few days outside of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "59", "consent_process_form_complete": "2", "date_and_time": "2021-09-23 15:30", "date_of_contact": "2021-09-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10156", "obtain_date": "2021-09-24", "participation_interest": "2", "ptinterest_comment": "Pt was interested. Emailed consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-12", "sp_v1_preop_date": "2021-10-11", "sp_v2_6wk_date": "2021-11-22", "sp_v3_3mo_date": "2022-01-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30501": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient isn't interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30502": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient was a little uneasy regarding the MRI, but did request a copy of the consent form to look over.\r\nPatient spoke to her surgeon and they agreed that it would be best not to participate since she will be having a 2nd knee replacement 6 wks after the first. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30503": {"age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-09-23 11:07", "date_of_contact": "2021-09-21", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10155", "obtain_date": "2021-09-23", "participation_interest": "2", "ptinterest_comment": "Patient requested a copy of the consent form to look over. Will be here for her pre op visit on Thursday and if she's interested, she will consent at that time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-08", "sp_v1_preop_date": "2021-09-28", "sp_v2_6wk_date": "2021-11-18", "sp_v3_3mo_date": "2022-01-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30504": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is at work and did not have time to talk. She states I can call any day after 5 pm. \r\nPt wants me to call her tomorrow to check schedule and possibly consent. \r\nLVM\r\nNever got a hold of patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30505": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-24 17:30:25", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient was having issues with surveys and unable to complete within the protocol window. Patient had was unable to come in for their 3 month visit within the protocol window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "79", "consent_process_form_complete": "2", "date_and_time": "2021-09-22 10:52", "date_of_contact": "2021-09-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10150", "obtain_date": "2021-09-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-18", "sp_v1_preop_date": "2021-10-07", "sp_v2_6wk_date": "2021-11-28", "sp_v3_3mo_date": "2022-01-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30506": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-14 12:25:54", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Continue participation; will check in regarding 6 month surveys", "erep_protdev_desc": "Pt contacted numerous times regarding study visit via phone and email with no response. Pt did not complete 3 month surveys nor in person visit. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "64", "consent_process_form_complete": "2", "date_and_time": "2021-09-23 12:17", "date_of_contact": "2021-09-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10154", "obtain_date": "2021-09-23", "participation_interest": "2", "ptinterest_comment": "Pt expressed interest. RA emailed consent.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-20", "sp_v1_preop_date": "2021-10-05", "sp_v2_6wk_date": "2022-03-03", "sp_v3_3mo_date": "2022-04-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30507": {"adverse_effects": {"1": {"erep_action_taken": "Pt prefers to continue participation in study for now. ", "erep_ae_date": "2021-12-07", "erep_ae_desc": "Pt states that doctors thought she had blood clots and she is experiencing severe pain following knee surgery to the point where medical professionals wanted to airlift her to Mayo Clinic. ", "erep_ae_relation": "3", "erep_ae_serious": "0", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2021-12-09 09:22:31", "erep_onset_date": "2021-12-07 09:22", "erep_outcome": "Pt will continue to update on her situation. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-24 13:07:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Participation continues. ", "erep_protdev_desc": "6 mos survey set outside of protocol window. Pt was contacted multiple times to complete. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "5"}}, "age": "64", "consent_process_form_complete": "2", "date_and_time": "2021-10-01 13:34", "date_of_contact": "2021-09-22", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10169", "obtain_date": "2021-10-01", "participation_interest": "2", "ptinterest_comment": "Pt signed consent after review via telephone. \r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-25", "sp_v1_preop_date": "2021-10-04", "sp_v2_6wk_date": "2021-12-05", "sp_v3_3mo_date": "2022-01-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30508": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm mobile. emailed consent. lvm 10/4/2021.", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "39", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30509": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent an email stating that she is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30510": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states unable to make time to come for study visit.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30511": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he's not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30512": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to try MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30513": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 10/4/2021. Unable to contact pt. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30514": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nHave been unable to reach patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30515": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he had surgery already, his surgery was moved up to 09/08/2021. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30516": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not like pain. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30517": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she lives too far. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30518": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Asked that I call her back because she's at work. \r\nNever got a hold of patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30519": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to get a hold of patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30520": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent an email stating that she is still working full time and lives too far. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30521": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states they are not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30522": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "RA emailed consent. Pt stated would call back after thinking about it. Pt declined to participate via email. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30523": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Phone number listed is daughters. Pt daughter stated father best reached during morning. Unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30524": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-10 13:51:51", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Continued with study visit as outlined", "erep_protdev_desc": "3 mos visit outside of 3 mos window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-10-04 13:21", "date_of_contact": "2021-09-30", "dem_race": "7", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10173", "obtain_date": "2021-10-04", "participation_interest": "2", "ptinterest_comment": "RA emailed consent. Pt expressed interest. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-21", "sp_v1_preop_date": "2021-10-13", "sp_v2_6wk_date": "2021-12-01", "sp_v3_3mo_date": "2022-01-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30525": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he lives way to far to have to come back and forth. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30526": {"age": "54", "consent_process_form_complete": "2", "date_and_time": "2021-10-15 13:45", "date_of_contact": "2021-10-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10189", "obtain_date": "2021-10-15", "participation_interest": "2", "ptinterest_comment": "LVM\r\nPatient called back and requested a copy of the consent form to look over. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-29", "sp_v1_preop_date": "2021-10-27", "sp_v2_6wk_date": "2021-12-09", "sp_v3_3mo_date": "2022-01-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30527": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives 70 miles away and leave midwest for the winter. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30528": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact. LVMx2. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30529": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states not willing to have in person study visits due to work.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30530": {"age": "72", "consent_process_form_complete": "2", "date_and_time": "2021-12-02 14:23", "date_of_contact": "2021-12-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10241", "obtain_date": "2021-12-02", "participation_interest": "2", "ptinterest_comment": "Patient requested a copy of the consent form to look over. \r\nLVM\r\nPatient states he might be having surgery within 3 months of the first. If he has his surgery outside of the 3 month window, he would like for us to contact him to participate for his 2nd surgery. \r\nLVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-16", "sp_v1_preop_date": "2022-01-31", "sp_v2_6wk_date": "2022-03-30", "sp_v3_3mo_date": "2022-05-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30531": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she is in too much pain to do the study activities. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30532": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sx rescheduled\r\nSx has not been rescheduled as of 05/26/2022.\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30533": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined any study involving pain. Stated he's had pain since 1997. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30534": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Speaks tagalog (epic). ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30535": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30536": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-19 13:43:57", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt came in when feeling better", "erep_protdev_desc": "Pt unable to come in for 6 wk visit due to bad cold", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-28 13:30:40", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Surveys mailed out late due to lack of stamps, get stamps earlier. ", "erep_protdev_desc": "Pt complete 6 mos surveys outside of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "5"}}, "age": "65", "consent_process_form_complete": "2", "date_and_time": "2021-10-12 10:06", "date_of_contact": "2021-10-04", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10181", "obtain_date": "2021-10-12", "participation_interest": "2", "ptinterest_comment": "RA called to give additional information. Pt interested in participating. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-10", "sp_v1_preop_date": "2021-10-12", "sp_v2_6wk_date": "2021-12-22", "sp_v3_3mo_date": "2022-02-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30537": {"adverse_effects": {"1": {"erep_action_taken": "Pt continues participation.", "erep_ae_date": "", "erep_ae_desc": "Pt tested positive for covid-19 and was later hospitalized surrounding the date of 12/13/2021.", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2022-01-14 11:54:34", "erep_onset_date": "2021-12-07 11:58", "erep_outcome": "Pt discharged from hospital and at f/up with orthopedic surgeon states they are healing well. ", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt came in when able.", "erep_protdev_desc": "Pt unable to come in at 6 weeks.", "erep_protdev_type": "6", "erep_rel_covid19": "1", "erep_resolution_date": "2022-01-10 11:58", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-05-02 07:43:12", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt did not complete survey set nor in person portion of 3 month visit", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-10-12 15:51", "date_of_contact": "2021-10-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10184", "obtain_date": "2021-10-12", "participation_interest": "2", "ptinterest_comment": "Spoke. Pt expressed interest. RA went through details of consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-27", "sp_v1_preop_date": "2021-10-25", "sp_v2_6wk_date": "2021-12-07", "sp_v3_3mo_date": "2022-01-26", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30538": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate before description of study given. ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30539": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPatient returned my call. States that he is not sure if he will be having surgery seeing as he can't get his physicians to cooperate with each other. Did not sound like he was very interested in participating and states he will contact me if anything changes. \r\nPatient states he is having surgery, but is not interested in participating in our study. He does not have the time to be coming in for the visits. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30540": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient states they are interested but they were at physical therapy. She will reach out to me once she's had a chance to look over the consent form. \r\nPatient declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30541": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he plans on leaving Chicago for the winter after surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30542": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form to look over. \r\nPatient sent an email stating that she was not interested in participating. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30543": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-10-05 14:30", "date_of_contact": "2021-10-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient was a no show to their baseline visit. Have left several messages with no call back. Surgery is set for 11/01/2021.", "ewdateterm": "2021-11-01", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "N/A", "main_record_id": "10176", "obtain_date": "2021-10-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-01", "sp_v1_preop_date": "2021-10-28", "sp_v2_6wk_date": "2021-12-13", "sp_v3_3mo_date": "2022-01-31", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30544": {"age": "73", "consent_process_form_complete": "2", "date_and_time": "2021-10-25 10:57", "date_of_contact": "2021-10-25", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10200", "obtain_date": "2021-10-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-09", "sp_v1_preop_date": "2021-11-02", "sp_v2_6wk_date": "2021-12-21", "sp_v3_3mo_date": "2022-02-08", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30545": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not give a reason", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30546": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient called back and requested a copy of the consent form to look over. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30547": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient called back and states that he was working and didn't have time to talk. He will call me back if he has time and/or is interested in hearing more about the study. \r\nPatient never made contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30548": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Is already nervous about the surgery and did not want to know more about the study. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30549": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-10-07 13:38", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject rescheduled surgery at outpatient site not eligible for study. ", "ewdateterm": "2022-03-30", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10178", "obtain_date": "2021-10-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30550": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Canceled surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30551": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-28 11:15:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Baseline visit completed 5 months outside of visit window due to surgery rescheduling. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "Pt continues participation with surveys", "erep_ae_date": "", "erep_ae_desc": "Pt hospitalized due to infection of prosthetic joint", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2022-05-19 15:12:27", "erep_onset_date": "2022-05-09 15:12", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Unable to obtain blood due to MRSA infection", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "50", "consent_process_form_complete": "2", "date_and_time": "2021-10-14 13:33", "date_of_contact": "2021-10-06", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10188", "obtain_date": "2021-10-21", "participation_interest": "2", "ptinterest_comment": "Spoke and emailed consent form. Pt requested call Monday 10/11. lvm 10/11.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-07", "sp_v1_preop_date": "2021-10-14", "sp_v2_6wk_date": "2022-05-19", "sp_v3_3mo_date": "2022-07-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30552": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is not having surgery done at Rush. Stated Rush does not take his insurance. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30553": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Spoke and emailed consent. lvm 10/7. lvm 10/8.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30554": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30555": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-24 10:52:32", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Unable to correct. Will record if pt comes in for 3 month", "erep_protdev_desc": "Failed to record location of greater pain", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "64", "consent_process_form_complete": "2", "date_and_time": "2021-11-15 10:59", "date_of_contact": "2021-11-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10222", "obtain_date": "2021-11-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-08", "sp_v1_preop_date": "2021-12-06", "sp_v2_6wk_date": "2022-01-19", "sp_v3_3mo_date": "2022-03-09", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30556": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Is very busy, does not have time", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30557": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact. LVM's.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30558": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Is working and time is an issue.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30559": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt uninterested in coming in person for study visit. Asked about teleconference visit. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30560": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30561": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30562": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "10/11/2021 pt declined to participate. Too close to sx. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30563": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Canceled surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30564": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Issue related to commute", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "45", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30565": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Absolutely no on MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30566": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated time constraint issues due to working. Also stated was unwilling to undergo an MRI stating she had done one before and would have to be drugged to do one again. ", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30567": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Absolutely no to MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30568": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30569": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Called back, LVM\r\nCalled back, 10/20, no response", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30570": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Note: THIS IS A DUPLICATE PARTICIPANT", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30571": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2021-10-20 10:03", "date_of_contact": "2021-10-08", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10195", "obtain_date": "2021-10-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-02", "sp_v1_preop_date": "2021-10-20", "sp_v2_6wk_date": "2021-12-14", "sp_v3_3mo_date": "2022-02-01", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30572": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Other life factors going on", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30573": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30574": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient wants to look over the consent with his wife before signing. \r\nPatient sent an email stating that he calculated approximately 30-50 hrs of his time would be required and the $500 payment for that time does not make sense for the time and effort required.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30575": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is Spanish speaking and understands very little English. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30576": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30577": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-08 14:49:52", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "75", "consent_process_form_complete": "2", "date_and_time": "2021-10-12 14:47", "date_of_contact": "2021-10-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10183", "obtain_date": "2021-10-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-21", "sp_v1_preop_date": "2021-10-19", "sp_v2_6wk_date": "2021-12-01", "sp_v3_3mo_date": "2022-01-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30578": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form to look over and will contact me if she is interested in participating. \r\nPatient never contacted me. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30579": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he is not interested.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30580": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he does not want to have to keep coming to this specific Rush location more than he has to. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30581": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with to call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30582": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient requested a copy of the consent form to look over. She will contact me if she is interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30583": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to LVM at mobile. Home number went to a different person. Did not leave message. Left message w/ partner. Pt will call back if interested 10/25/2021. Partner stated pt is very busy until sx and not likely able to participate. Pt did not reach out. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30584": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30585": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to learn more about study and declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30586": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVMx3. Unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30587": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30588": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"Too much of a commitment\" ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30589": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient isn't interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30590": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient called and left a message stating that he had surgery already. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30591": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30592": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30593": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30594": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30595": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated she \"cannot do anymore tests\" ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30596": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-10-14 13:08", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Miscommunication about study location. Sub unwilling to come to Rush main campus", "ewdateterm": "2021-10-19", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10187", "obtain_date": "2021-10-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30597": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that they plan to cancel their surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30598": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she's already had surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30599": {"adverse_effects": {"1": {"erep_action_taken": "Pt still wants to continue with study. ", "erep_ae_date": "", "erep_ae_desc": "Pt fell on ice and injured surgical knee. As a result of this she has to have a anesthetized manipulation on 2/24. Will upload paperwork regarding the manipulation once that is available.", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-21 10:13:22", "erep_onset_date": "2022-02-17 10:13", "erep_outcome": "Had to reschedule 3 month follow up appointment, but she does intend to continue with the study procedures after recovering from the manipulation. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-02-24 10:13", "erep_visit_inv": "6"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-11 10:14:49", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Pt clothing was not maneuverable around knees or shoulders. Did both PPTs and temporal stimulation on top of clothing. ", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-10-20 13:56", "date_of_contact": "2021-10-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10196", "obtain_date": "2021-10-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-16", "sp_v1_preop_date": "2021-11-11", "sp_v2_6wk_date": "2021-12-28", "sp_v3_3mo_date": "2022-02-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30600": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30601": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30602": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated having EKG issues and is unable to make time to come in for additional visits prior to sx. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30603": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate prior to learning about study. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30604": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt expressed interest. Pt stated would contact if interested. RA unable to contact following initial conversation. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "39", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30605": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30606": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was at work and could not speak. He asked that I call back on another day after 4 or 5 pm. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30607": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he does not have time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30608": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient was at work and could not speak. Sent a copy of the consent form to look over and will call her back after work hours. \r\nLVM\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30609": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30610": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt states they cancelled sx and want to hold off as long as possible. Stated they are OK with a call if they are put back on schedule. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30611": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30612": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30613": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he's not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30614": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that his surgery has moved to 04/2022. Sent them a copy of the consent form and will reach out to them again closer to their new surgery date. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30615": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30616": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient sent an email stating that it's too long of a drive for him to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30617": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Canceled surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30618": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated \"you're asking a lot\" and was not interested. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30619": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30620": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt had sx moved up. Ineligible to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30621": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Working and does not have time for study", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30622": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt's wife stated her husband was not interested because he works and he already had to take off a few hours for the pre-op class. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30623": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Issue related to commute distance. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30624": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt's husband is a stroke pt and she can't participate due to time involved. Pt would have loved to be involved otherwise. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30625": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated \"too time consuming\" ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30626": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Douglas states that he's had enough of this place. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30627": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he has no time because he's still working full time and getting ready for his surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30628": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he babysits and does not have time to come in for the visits. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30629": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient isn't really interested and states that her English really isn't fluent. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30630": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Emailed consent; unable to contact afterwards.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30631": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-28 11:35:47", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Pt came in a few days outside of 3 month visit timeline", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-28 13:58:14", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues participation.", "erep_protdev_desc": "6 wk survey set completed a few days outside of visit window after multiple calls and emails sent. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-10-27 06:43", "date_of_contact": "2021-10-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10204", "obtain_date": "2021-10-26", "participation_interest": "2", "ptinterest_comment": "Spoke and emailed consent 10/25/2021. Resent consent 10/26, pt states would like wife to look it over as he is usually always driving. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-10", "sp_v1_preop_date": "2021-11-01", "sp_v2_6wk_date": "2021-12-22", "sp_v3_3mo_date": "2022-02-09", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30632": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt said she was not interested after hearing study activities. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30633": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are not willing to come to Chicago. Opted for outpatient at Oak Brook in order to not come to Chicago.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30634": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too soon to surgery date to schedule ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30635": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30636": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Uncomfortable with MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30637": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-14 08:34:51", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Completed baseline surveys and day of surgery blood draw. ", "erep_protdev_desc": "Due to scheduling issues, subject did not come in for baseline visit. Did not complete baseline functional testing, QST, or imaging. Did complete baseline surveys and blood draw. Kept in study according to supervisor instructions.", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "55", "consent_process_form_complete": "2", "date_and_time": "2021-10-29 11:46", "date_of_contact": "2021-10-27", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10208", "obtain_date": "2021-10-29", "participation_interest": "2", "ptinterest_comment": "10/26 Called back at scheduled time, did not pick up. Left VM\r\n10/27 Called did not get through", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-05", "sp_v1_preop_date": "2021-11-03", "sp_v2_6wk_date": "2021-12-17", "sp_v3_3mo_date": "2022-02-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30638": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Difficulty with commute to Chicago location", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30639": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-18 11:49:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's surgery date was changed from 01/12/2022 to 04/12/2022 which would put the baseline visit outside of the protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "70", "consent_process_form_complete": "2", "date_and_time": "2021-11-09 08:01", "date_of_contact": "2021-11-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10214", "obtain_date": "2021-11-09", "participation_interest": "2", "ptinterest_comment": "Patient states he wants to participate, but did not have time to speak today. He asked that I call back Monday to go over and sign consent. RA called to go over consent", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-21", "sp_v1_preop_date": "2021-11-30", "sp_v2_6wk_date": "2022-09-01", "sp_v3_3mo_date": "2022-10-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "30640": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 11/1/2021. Pt called back stating they would like to be taken off call list. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30641": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30642": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient not interested in participating", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30643": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states study sounds interesting and they would be interested in participating. Prefers call end of November beginning of December due to sx reschedule. F/u 12/6 and pt did not want to participate due to lack of time with work and staying too busy for a research study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30644": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\n07/7/22MB is full\r\n07/08/22-MB is full \r\n07/14/22 MB full ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30645": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30646": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30647": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in participating. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30648": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she does not have the time to participate. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30649": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30650": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they do not have time prior to sx to participate in this research study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30651": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she is unable to fit in person study visit in her schedule prior to surgery.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30652": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30653": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30654": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to come into Chicago for visit, Pt stated he \"lives in the suburbs\"", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30655": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30656": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate stated they have tooth decay and are unsure if they will even have surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30657": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate due to distance. Also declined when lyft offered. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30658": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated she is going out of town shortly after surgery and does not want to participate (after RA explained still able to complete the 2 in person study visits with the timing). ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30659": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined participation due to how long it takes to get to Chicago.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30660": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30661": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 2- 11/8/2021. lvm 3 11/29.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30662": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. spoke, participant is concerned with uses of PHI. Prefers to have information emailed to her. Pt stated would call back if interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30663": {"age": "35", "consent_process_form_complete": "2", "date_and_time": "2021-11-08 15:06", "date_of_contact": "2021-11-03", "dem_race": "3|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10213", "obtain_date": "2021-11-08", "participation_interest": "2", "ptinterest_comment": "LVM - 11/1\r\n11/3 - sent info\r\n11/5 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "35", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-24", "sp_v1_preop_date": "2021-11-17", "sp_v2_6wk_date": "2022-03-07", "sp_v3_3mo_date": "2022-04-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30664": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Autistic step-son, does not have the time to come in for study visit. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30665": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt received mailed copy of consent. Pt declined participation due to time required to participate and MRI. ", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30666": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they do not have time to come in for study. They think they'd possibly do it if in Oak Brook clinic. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30667": {"age": "54", "consent_process_form_complete": "2", "date_and_time": "2021-11-02 13:37", "date_of_contact": "2021-11-02", "dem_race": "5", "ethnic": "2", "ewcomments": "Have attempted to contact participant several times with no call back. Participant has missed 3 and 6 month surveys. ", "ewdateterm": "2022-06-13", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "2", "main_record_id": "10209", "obtain_date": "2021-11-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-14", "sp_v1_preop_date": "2021-12-03", "sp_v2_6wk_date": "2022-01-25", "sp_v3_3mo_date": "2022-03-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "30668": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30669": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30670": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-11-03 16:51", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Pt requested to not be contacted anymore via phone or email. ", "ewdateterm": "2021-12-10", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10210", "obtain_date": "2021-11-03", "participation_interest": "2", "ptinterest_comment": "Sent study info - call back later.\r\nCalled back, she didn't answer", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30671": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate stated they live very far way. RA offered lyft and participant mentioned right hip not doing well and they're concerned with how ambulatory they will be. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30672": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "RA mailed consent form. Pt stated they are rescheduling knee sx due to aortic procedure on 12/10. RA stated they would call them 2022. lvm 2022. Pt lvm. RA called back and lvm 5/26. Pt does not have time prior to sx.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30673": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30674": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30675": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form. \r\nPatient is having 2nd knee done on 12/17/2021. If 2nd surgery is postponed, she will reconsider participating. Will reach out to her 1st week of December. \r\nLVM\r\nPatient is having her 2nd surgery next week and will not be able to take part in the study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30676": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "spoke briefly and requested call at later time. lvm. lvm 11/9. Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30677": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. Spoke and emailed consent. Pt stated after looking over consent they do not have the time to come in to do a study visit. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30678": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 11/15/2021. lvm 11/29. Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30679": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 2 11/15. Pt lvm stating they are not interested in participating in a study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30680": {"age": "58", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10232", "obtain_date": "2021-11-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-10", "sp_v1_preop_date": "2021-12-07", "sp_v2_6wk_date": "2022-01-21", "sp_v3_3mo_date": "2022-03-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30681": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-24 10:49:27", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Unable to correct for baseline, will record if pt comes for 3 mo", "erep_protdev_desc": "Failed to record location of greater pain", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-21 09:47:18", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No corrective action available ", "erep_protdev_desc": "Unable to obtain blood at 3 mo visit. Participant has very difficult veins and did not tolerate needles well. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "64", "consent_process_form_complete": "2", "date_and_time": "2021-11-09 11:35", "date_of_contact": "2021-11-04", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10216", "obtain_date": "2021-11-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-18", "sp_v1_preop_date": "2021-11-09", "sp_v2_6wk_date": "2021-12-30", "sp_v3_3mo_date": "2022-02-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30682": {"adverse_effects": {"1": {"erep_action_taken": "Patient wishes to continue with their participation in the study, but will only complete surveys. ", "erep_ae_date": "", "erep_ae_desc": "Patient was asked to come in for possible infection. Once she was seen by surgeon she was scheduled for surgery due to a postoperative periprosthetic joint infection for a minimally invasive left knee irrigation debridement and modular liner exchange. ", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2022-01-07 10:57:49", "erep_onset_date": "2022-01-06 05:30", "erep_outcome": "Update 3/15/22: Patient went in for an office visit and was noticed to have delayed healing on the operative knee. Patient decided to undergo a left knee superficial wound closure.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-03-09 15:18", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-15 10:12:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Patient never completed 6 week surveys. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "46", "consent_process_form_complete": "2", "date_and_time": "2021-12-08 12:20", "date_of_contact": "2021-12-08", "dem_race": "3", "ethnic": "2", "ewcomments": "Participant has been non compliant and refusing to complete surveys. I have made numerous calls to try and reach out to her with no call back. ", "ewdateterm": "2022-08-10", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "2", "main_record_id": "10247", "obtain_date": "2021-12-08", "participation_interest": "2", "ptinterest_comment": "Mailbox is full. \r\nLVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-17", "sp_v1_preop_date": "2021-12-13", "sp_v2_6wk_date": "2022-01-28", "sp_v3_3mo_date": "2022-03-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30683": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in participating. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30684": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt sounded very hesitant on phone. RA emailed consent. Pt emailed back stating they are not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30685": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined after speaking with primary care doctor, husband and daughter involved in patient safety. Pt stated anything QST's involving arms were concerning because she easily gets blood spots. Pt stated she wanted to be able to do study for Dr. Jacobs, but it is not the best option for her at this time. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30686": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2021-11-18 11:48", "date_of_contact": "2021-11-04", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10226", "obtain_date": "2021-11-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-10", "sp_v1_preop_date": "2021-11-18", "sp_v2_6wk_date": "2022-01-21", "sp_v3_3mo_date": "2022-03-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30687": {"adverse_effects": {"1": {"erep_action_taken": "Pt continues participation w/out 6 wk visit. ", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2022-03-04 08:12:57", "erep_onset_date": "", "erep_outcome": "Pt completed 3 mos. survey set. ", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt wishes to continue participation after having gallbladder removed. ", "erep_protdev_desc": "Pt unable to come in or complete 6 wk survey set due to health issues with gallbladder.", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "44", "consent_process_form_complete": "2", "date_and_time": "2021-11-10 15:30", "date_of_contact": "2021-11-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10218", "obtain_date": "2021-11-10", "participation_interest": "2", "ptinterest_comment": "Spoke briefly. Pt requested information to be emailed. RA stated would follow up next week. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "44", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-04", "sp_v1_preop_date": "2021-11-22", "sp_v2_6wk_date": "2022-01-15", "sp_v3_3mo_date": "2022-03-05", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30688": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-28 08:56:32", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "3 mos. visit outside of timeline", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-11-09 15:39", "date_of_contact": "2021-11-05", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10217", "obtain_date": "2021-11-09", "participation_interest": "2", "ptinterest_comment": "Pt had call coming up. Requested info emailed to her and stated she'd be interested participating. Caled 11/8. Set up time to call 11/9.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-23", "sp_v1_preop_date": "2021-11-22", "sp_v2_6wk_date": "2022-01-04", "sp_v3_3mo_date": "2022-02-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30689": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-16 11:37:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "n/a", "erep_protdev_desc": "Patient's 3 month visit was outside of protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-11-11 09:39", "date_of_contact": "2021-11-11", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10219", "obtain_date": "2021-11-11", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-23", "sp_v1_preop_date": "2021-11-15", "sp_v2_6wk_date": "2022-01-04", "sp_v3_3mo_date": "2022-02-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30690": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. Stated they do not have time to come in for visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30691": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated that they were not comfortable with the MRI and wanted to focus on surgery.", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30692": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt did not want to learn more about the study and declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30693": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Running out of time prior to surgery. Pt mentioned they were trying to figure out workmans comp. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30694": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM. Unable to contact pt.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30695": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30696": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30697": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-11-17 10:36", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10225", "obtain_date": "2021-11-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-13", "sp_v1_preop_date": "2021-12-03", "sp_v2_6wk_date": "2022-01-24", "sp_v3_3mo_date": "2022-03-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30698": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was on their way out and stated that they would call me back at a later time. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30699": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is in a lot of pain and just wants to focus on getting everything ready for surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30700": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "\"Good morning, \r\nAfter looking through the attached information I have decided that I do not wish to participate in the study.\r\nThe time commitment is the major hurdle for me, I just do not see a way that I would be able to participate.\r\nThank you for understanding,\"\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30701": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form to look over. \r\nPatient states that she will have to pass on participating in our study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30702": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-28 14:06:36", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "6 week survey set completed a few days outside of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-28 14:09:09", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues participation", "erep_protdev_desc": "3 mos surveys completed a few days outside of protocol window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "78", "consent_process_form_complete": "2", "date_and_time": "2021-11-16 11:44", "date_of_contact": "2021-11-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10224", "obtain_date": "2021-11-16", "participation_interest": "2", "ptinterest_comment": "Spoke w/ participant. She sounded willing, but hesitant regarding MRI. Emailed consent to look over. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-06", "sp_v1_preop_date": "2021-12-01", "sp_v2_6wk_date": "2022-01-17", "sp_v3_3mo_date": "2022-03-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30703": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30704": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke briefly and mentioned lyft as they stated they cannot find a ride here. Sounded hesitant on phone. RA emailed consent. Pt declined to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30705": {"age": "69", "consent_process_form_complete": "2", "date_and_time": "2021-11-30 14:31", "date_of_contact": "2021-11-11", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10236", "obtain_date": "2021-11-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-13", "sp_v1_preop_date": "2021-11-30", "sp_v2_6wk_date": "2022-01-24", "sp_v3_3mo_date": "2022-03-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30706": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that because of work they do not have the time to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30707": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is Spanish speaking only. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30708": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-12-02 09:29", "date_of_contact": "2021-12-01", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient sent an email stating that he has too much going on and felt that he could not continue with the study. ", "ewdateterm": "2022-01-07", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "1", "main_record_id": "10239", "obtain_date": "2021-12-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-17", "sp_v1_preop_date": "2021-12-06", "sp_v2_6wk_date": "2022-01-28", "sp_v3_3mo_date": "2022-03-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30709": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient needs to discuss it with her husband. Sent a copy of the consent form for them to look over. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30710": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30711": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30712": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate. Nurse informed pt may be interested in participating in study, RA called back and LVM 12/3. LVM 12/6.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30713": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " Pt declined to participate due to time commitment.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30714": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient called back to let me know that he is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30715": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2021-11-18 15:21", "date_of_contact": "2021-11-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10227", "obtain_date": "2021-11-18", "participation_interest": "2", "ptinterest_comment": "Patient states she wants to participate, but needs me to call her after work hours. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-21", "sp_v1_preop_date": "2021-12-09", "sp_v2_6wk_date": "2022-02-01", "sp_v3_3mo_date": "2022-03-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30716": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of consent to look over and will call him back after the thanksgiving holiday.\r\nPatient states that he has too much work before surgery and will not be able to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30717": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30718": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30719": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 2- stated amount of time for in person visit as pt lvm stating unsure of timing. Unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30720": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke briefly, unable to contact after. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30721": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Travel related issue", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30722": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30723": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not fluent in English", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30724": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt very hesitant due to amount of time for study visit. Pt mentioned they will call if interested in participating. They declined having additional information sent to them and stated to take off call list if they do not call back. Pt did not contact. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "42", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30725": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30726": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30727": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not fluent in English ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30728": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated procedure was cancelled. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30729": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined participation due to time traveling to MOR in Chicago. Stated would participate if study visit were in suburbs. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30730": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that this is too far of a drive for him. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30731": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "11/19 LVM\r\n11/22 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30732": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was very angry and did not want to be bothered. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30733": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-30 11:39:53", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues participation", "erep_protdev_desc": "Pt 3 mos survey set completed about 2 days outside of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "56", "consent_process_form_complete": "2", "date_and_time": "2021-11-22 09:40", "date_of_contact": "2021-11-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10230", "obtain_date": "2021-11-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-07", "sp_v1_preop_date": "2021-12-03", "sp_v2_6wk_date": "2022-01-18", "sp_v3_3mo_date": "2022-03-08", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30734": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30735": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30736": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30737": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient states that he wants to reach out to Dr. Nam to verify the study, he will reach out if he is indeed interested. \r\nNever heard back from the patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30738": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVMs. Unable to contact after initial phone call (pt at appt).", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30739": {"age": "75", "consent_process_form_complete": "2", "date_and_time": "2021-11-30 10:01", "date_of_contact": "2021-11-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10233", "obtain_date": "2021-11-30", "participation_interest": "2", "ptinterest_comment": "Pt expressed interest. RA emailed consent to review. Unable to speak when called 11/29. Requested call back.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-13", "sp_v1_preop_date": "2021-12-06", "sp_v2_6wk_date": "2022-01-24", "sp_v3_3mo_date": "2022-03-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30740": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30741": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Expressed interest in study, but needs to reschedule surgery due to smoking. Requested call back end of Jan\r\nSx never rescheduled", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30742": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-12-02 13:20", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject rescheduled surgery to UofC. May be reconsented there. ", "ewdateterm": "2021-12-28", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10240", "obtain_date": "2021-12-02", "participation_interest": "2", "ptinterest_comment": "11/30 - Pt called me back. Requested call back tomorrow morning at 8:30\r\n12/1 - Expressed interest. Sent info. He signed and sent back. Plan to call tomorrow. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30743": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "11/30 - LVM\r\n12/7 - LVM\r\n12/13 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30744": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she has too much going on at the moment and wants to focus on just getting her surgery done. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30745": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left multiple messages without a call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30746": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Declined participating for this knee, considering doing it for the second one", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30747": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt hesitant regarding timing. Stated would reach out if able to do study. Pt emailed stating they do not wish to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30748": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not eligible for study due to second knee. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30749": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "12/3: Requested call back Mon or Tues after 3\r\n12/6 - LVM \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30750": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not want to do MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30751": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Spoke and emailed consent. Stated available likely after 12/19 or 12/20. f/u on 12/10. Pt hesitant due to scheduling. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30752": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Teacher, requests calls after 3pm; unable to speak during initial call because in class. Pt states not interested coming into the city 12/13/2021. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "42", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30753": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30754": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "-Difficulty with time constraints\r\n-Unable to do MRI due to back issues", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30755": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30756": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Difficulties with commute", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30757": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Wife stated would have husband call if interested. RA did not hear from pt. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30758": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "expressed interest, stated unsure if able to participate due to timing. lvm 12/7. lvm 12/14. lvm 12/15. Pt unable to participate prior to sx; would like to participate if he were able to next year. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30759": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30760": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she has way too much going on and way too much to do prior to her surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30761": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient's surgery is this Friday and has no time to come in. Patient states she is having a 2nd surgery but is unsure when it will happen. Will contact her after her post op appointment to touch base. \r\nLVM\r\nPt was about to have therapy, will call me back after. \r\nPt not sure about 2nd surgery, she is in a lot of pain after 1st surgery. Will reach out to her in a few months to see how she feels about having 2nd knee done. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30762": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVMS unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30763": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. Pt lvm 12/8 stating he was too busy to take part in a research study.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30764": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Issue related to commute", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30765": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Unable to do it for this surgery - considering doing for the second knee", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30766": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated she was interested in particiating, but did not know her work schedule until day of. lvm 12/14. Pt unable to schedule study visit prior to surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30767": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30768": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact. LVM.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30769": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM, unable to contact pt. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30770": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "States the study would be too much with cancer treatments and other appointments. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30771": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2021-12-09 10:24", "date_of_contact": "2021-12-09", "dem_race": "5", "ethnic": "2", "ewcomments": "Subject canceled baseline visit and was unable to reschedule before surgery. ", "ewdateterm": "2021-12-15", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10248", "obtain_date": "2021-12-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-17", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-01-28", "sp_v3_3mo_date": "2022-03-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30772": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPatient was waiting for a phone call and could not speak. Sent a copy of consent form for him to look over. \r\nLeft several messages with no call back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30773": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30774": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30775": {"age": "83", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 14:00", "date_of_contact": "2021-12-09", "dem_race": "5", "ethnic": "2", "ewcomments": "Surgery canceled and will not be rescheduled due to medical concerns", "ewdateterm": "2021-12-29", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "1", "main_record_id": "10262", "obtain_date": "2021-12-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30776": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "attempted to contact; pt hung up. Lvm 12/20/2021. Voicemail went to a person other than pt with same last name. Unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30777": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. Spoke and emailed consent. Not sure due to availability. Pt emailed stating unable to participate due to time of study visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30778": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not interested in coming to chicago and does not have time to participate in study", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30779": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30780": {"age": "68", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 12:38", "date_of_contact": "2021-12-10", "dem_race": "3", "ethnic": "2", "ewcomments": "Missed blood draw appointment with no contact, and after appointment attempted to call on three separate occasions. No response. Lost to follow-up. ", "ewdateterm": "2022-02-28", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "2", "main_record_id": "10261", "obtain_date": "2021-12-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-26", "sp_v1_preop_date": "2022-01-04", "sp_v2_6wk_date": "2022-03-09", "sp_v3_3mo_date": "2022-04-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30781": {"age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-12-10 10:02", "date_of_contact": "2021-12-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10249", "obtain_date": "2021-12-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-26", "sp_v1_preop_date": "2022-01-11", "sp_v2_6wk_date": "2022-03-09", "sp_v3_3mo_date": "2022-04-26", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30782": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated did not have time to complete study visit. Was thinking they'd even need to get the pt bag of supplies from medical store the day of. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30783": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30784": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30785": {"age": "56", "consent_process_form_complete": "2", "date_and_time": "2021-12-14 11:33", "date_of_contact": "2021-12-13", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10251", "obtain_date": "2021-12-14", "participation_interest": "2", "ptinterest_comment": "12/13 - Called back, expressed interest, sent info. Said she would call me back", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-23", "sp_v1_preop_date": "2021-12-21", "sp_v2_6wk_date": "2022-02-03", "sp_v3_3mo_date": "2022-03-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30786": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "12/20 - Called me back, expressed interest. Hesitation due to ongoing health concerns. Sent consent doc\r\n1/3/22 - LVM. Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30787": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30788": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 1/7/2022. Unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30789": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate, stated they previously participated in a study and they currently have no time. Pt stated they appreciate the work in research.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30790": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is really stressed out about upcoming surgery and doesn't want to have to worry about anything else. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "84", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30791": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPt requested a copy of the consent form to look over. \r\nLVM with no call back", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30792": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2021-12-16 15:58", "date_of_contact": "2021-12-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10255", "obtain_date": "2021-12-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-03", "sp_v1_preop_date": "2021-12-22", "sp_v2_6wk_date": "2022-02-14", "sp_v3_3mo_date": "2022-04-03", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30793": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 11:32", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient continued to be unable to set up baseline visit due to concerns of other health issues. ", "ewdateterm": "2022-01-21", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10260", "obtain_date": "2021-12-20", "participation_interest": "2", "ptinterest_comment": "Pt very interested in A2CPS. Stated they have a lot of experience in pain and has a pain condition. RA will double check eligibility information. RA emailed info to pt. RA read over consent form with pt and pt stated would sign shortly. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-20", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-03-03", "sp_v3_3mo_date": "2022-04-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "30794": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact (lvms)", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30795": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt expressed interest 12/15. emailed consent. Pt currently on vacation requested call next week. After reviewing consent pt emailed they do not want to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30796": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient requested a copy of consent form to look over. \r\nLVM with no call back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30797": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient only speaks polish. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30798": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30799": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient cancelled her surgery with Dr. Berger because he does not except her insurance. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30800": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Mobile number was daughters. Spoke with pt and they asked if RA could speak with their daughter because their English was better. RA stated study questionnaires were in English and we are not currently enrolling those unable to complete study components in English. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30801": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30802": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30803": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30804": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are going to Mexico after their surgery and would not be able to make visits.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30805": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt lvm 12/16 stating they are already participating in a study and would not like to participate in another at this time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30806": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30807": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact after emailing and mailing consent (calledx2 to f/up). ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30808": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated unwilling to do MRI at UIC and is afraid of exposure to Covid prior to sx. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30809": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt expressed interest. RA emailed consent. Answered question regarding eligibility 12/28. lvm 12/29/2022. Unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30810": {"age": "76", "consent_process_form_complete": "2", "date_and_time": "2022-01-13 12:15", "date_of_contact": "2021-12-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10273", "obtain_date": "2022-01-13", "participation_interest": "2", "ptinterest_comment": "Pt was very interested in participating. Requested copy of consent mailed and emailed. Pt unable to find mailed consent, requested call Monday. lvm 1/3", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-26", "sp_v1_preop_date": "2022-01-13", "sp_v2_6wk_date": "2022-03-09", "sp_v3_3mo_date": "2022-04-26", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30811": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they live in the suburbs and it would be a very long trip. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30812": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30813": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30814": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30815": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30816": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't want the government or anybody to know any of her business. \r\n", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30817": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM's. Unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30818": {"age": "61", "consent_process_form_complete": "2", "date_and_time": "2021-12-29 13:29", "date_of_contact": "2021-12-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10265", "obtain_date": "2021-12-29", "participation_interest": "2", "ptinterest_comment": "Pt expressed interest. RA emailed info. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-20", "sp_v1_preop_date": "2022-01-13", "sp_v2_6wk_date": "2022-03-03", "sp_v3_3mo_date": "2022-04-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30819": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "12/29: Expressed interest, sent consent document, made plans to call back next week. Requested evening times for call back\r\n1/4 - LVM\r\n1/6 - Did not pick up phone", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30820": {"age": "53", "consent_process_form_complete": "2", "date_and_time": "2022-01-11 13:07", "date_of_contact": "2021-12-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10271", "obtain_date": "2022-01-11", "participation_interest": "2", "ptinterest_comment": "Expressed interest, sent study info, plan to call back next week ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-04", "sp_v1_preop_date": "2022-01-18", "sp_v2_6wk_date": "2022-03-18", "sp_v3_3mo_date": "2022-05-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30821": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "12/29 - LVM\r\n1/5 - Requested call after 2pm \r\n1/5 - Called back, lvm\r\n1/13 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30822": {"age": "58", "consent_process_form_complete": "2", "date_and_time": "2022-01-06 11:03", "date_of_contact": "2021-12-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10269", "obtain_date": "2022-01-06", "participation_interest": "2", "ptinterest_comment": "12/29 - LVM\r\n1/5 - Sent consent info", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-04", "sp_v1_preop_date": "2022-01-21", "sp_v2_6wk_date": "2022-03-18", "sp_v3_3mo_date": "2022-05-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30823": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-18 11:36:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Patient's surgery date was changed from 02/07/2022 to 04/19/2022 which would put the baseline visit outside of the protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "81", "consent_process_form_complete": "2", "date_and_time": "2022-01-05 09:54", "date_of_contact": "2022-01-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10267", "obtain_date": "2022-01-05", "participation_interest": "2", "ptinterest_comment": "Need to verify a few things with Dr. Gerlinger before consenting patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-02", "sp_v1_preop_date": "2022-01-28", "sp_v2_6wk_date": "2022-06-13", "sp_v3_3mo_date": "2022-08-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30824": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 1/14/2022. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30825": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they were not interested in study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30826": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not fluent in English", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30827": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2022-01-04 15:39", "date_of_contact": "2022-01-04", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10266", "obtain_date": "2022-01-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-20", "sp_v1_preop_date": "2022-01-12", "sp_v2_6wk_date": "2022-03-03", "sp_v3_3mo_date": "2022-04-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30828": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30829": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt initially hesitant, spoke and emailed consent. Unable to contact after emailing consent (lvm)", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30830": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they were not interested in research at this time. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30831": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that her surgery has been cancelled. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30832": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to commute to Rush", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30833": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Is sick, plan to reschedule surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30834": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM. Pt cx sx and is having hip arthroplasty. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30835": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Have contacted patient several times with no answer and mailbox is full. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30836": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30837": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30838": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is really concerned with her age and how bad things are with covid, she does not want to risk it. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30839": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient states that she is going through a lot at the moment due to her husband being sick and everything with covid. She has temporarily cancelled her surgery but would like for us to stay in touch for when she reschedules. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30840": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate, stated they're already enrolled in a study and are starting to feel overwhelmed. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30841": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was on her way to work and asked that I call her back before 10am. \r\nPatient states that she is still in bed and will call me back when she fully wakes up. \r\nPatient states that there are issues with an EKG she just had and her surgery will be cancelled. She has too much going on at the moment and does not want to be contacted again. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30842": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30843": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient states that he lives too far. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30844": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Sx canceled. Plan to reschedule", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30845": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-13 13:20:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Subject will complete baseline surveys and day of surgery blood draw. ", "erep_protdev_desc": "Subject unable to come in for baseline visit and did not complete baseline functional testing, QST, or imaging. This is because the baseline visit was scheduled for the same day as a different surgical procedure. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-31 12:37:02", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Plan to not do 6 week surveys or blood draw, and attempt to contact participant again at 3 months. ", "erep_protdev_desc": "Pt no-show for 6 wk blood draw and could not be reached to discuss surveys. When I did get through to her briefly, stated she was still interested in participating and requested call later. Did not get through later and no response to voicemail.", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2022-01-06 09:51", "date_of_contact": "2022-01-05", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10268", "obtain_date": "2022-01-06", "participation_interest": "2", "ptinterest_comment": "1/5 - Interested, sent info\r\nAsked to call back tomorrow", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-14", "sp_v1_preop_date": "2022-01-11", "sp_v2_6wk_date": "2022-02-25", "sp_v3_3mo_date": "2022-04-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30846": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-01-07 14:25", "date_of_contact": "2022-01-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10270", "obtain_date": "2022-01-07", "participation_interest": "2", "ptinterest_comment": "Spoke and emailed consent, pt expressed interest", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-25", "sp_v1_preop_date": "2022-01-11", "sp_v2_6wk_date": "2022-03-08", "sp_v3_3mo_date": "2022-04-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30847": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested and does not want to be contacted again. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30848": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to commute to Rush", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30849": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he lives too far from the city and also has a lot to do before surgery. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30850": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "spoke and emailed consent, req call back around 3pm next day. lvm 1/6. Spoke briefly 1/7, asked for call back later. Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30851": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to commute to Rush for study", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30852": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that as much as he would like to help with research that his time is very limited at the moment. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30853": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. Pt declined to participate due to time required to work.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30854": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Unable to contact. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30855": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she has a lot to deal with prior to surgery. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30856": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30857": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Ptinterested, but not eligible to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30858": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-22 11:30:42", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Continue participation ", "erep_protdev_desc": "6 wk visit, closer to 8 weeks", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-05-17 15:16:55", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "3 month visit a few days outside of timeline. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-28 14:45:55", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues participation", "erep_protdev_desc": "Pt 3 mos in person visit a few days outside of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "59", "consent_process_form_complete": "2", "date_and_time": "2022-01-13 08:36", "date_of_contact": "2022-01-11", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10272", "obtain_date": "2022-01-13", "participation_interest": "2", "ptinterest_comment": "spoke and emailed consent form. lvm 1/12/2022", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-20", "sp_v1_preop_date": "2022-01-18", "sp_v2_6wk_date": "2022-03-03", "sp_v3_3mo_date": "2022-04-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30859": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient called me back. Asked that I send them a copy of the consent form to look over and will call them back tomorrow. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30860": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30861": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to come to Rush for study visit", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30862": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Said no to MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30863": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2022-01-31 15:30", "date_of_contact": "2022-01-31", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10280", "obtain_date": "2022-01-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-07", "sp_v1_preop_date": "2022-02-03", "sp_v2_6wk_date": "2022-03-21", "sp_v3_3mo_date": "2022-05-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30864": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. \r\n\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30865": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt asked that I call her back tomorrow morning. \r\nLVM\r\nPt requested a copy of the consent form to look over. \r\nLeft several messages with no response. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30866": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt called back and left voicemail asking that I call her after school hours. \r\nPatient states that she's working full time until day of surgery and does not have the time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30867": {"age": "63", "consent_process_form_complete": "2", "date_and_time": "2022-01-24 15:02", "date_of_contact": "2022-01-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10278", "obtain_date": "2022-01-24", "participation_interest": "2", "ptinterest_comment": "Pt states they will sign consent on Sunday. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-04", "sp_v1_preop_date": "2022-01-26", "sp_v2_6wk_date": "2022-03-18", "sp_v3_3mo_date": "2022-05-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30868": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30869": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Jan - LVM x 3\r\n4/5 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30870": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "1/13 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30871": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30872": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30873": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is being seen at Munster.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30874": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is spanish speaking. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30875": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "1/13 - LVM\r\n1/18 - LVM\r\n1/24 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30876": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30877": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that they don't have the time to participate. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30878": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30879": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "1/13 - LVM\r\n1/18 - LVM\r\n1/24 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30880": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "1/13 - LVM\r\n1/18 - Expressed interest, hesitant about time commitment and possible rescheduling of surgery, will reach back out if interested.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30881": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they do not have time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30882": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was interested. RA emailed consent to read over. lvm 1/19/2022. Unable to contact after sending consent. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30883": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they live far away from Rush and short staffed with work therefore unable to participate in research that is in person.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30884": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30885": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "1/18 - LVM. Called me back, expressed interest, sent study info. \r\n1/21 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30886": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "1/19 - LVM", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30887": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30888": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30889": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30890": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-01-19 12:05", "date_of_contact": "2022-01-19", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10274", "obtain_date": "2022-01-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-16", "sp_v1_preop_date": "2022-01-25", "sp_v2_6wk_date": "2022-03-30", "sp_v3_3mo_date": "2022-05-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30891": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was at an appt and did not have time to speak. Requested a copy of the consent form to look over. \r\nPatient called me back and states that after reviewing the consent form, she's not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30892": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states husband is recovering from stem cell treatment and they do not have the time currently. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30893": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt hung up after answering phone. Number disconnected on attempt 2.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30894": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2022-01-24 07:15", "date_of_contact": "2022-01-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10276", "obtain_date": "2022-01-24", "participation_interest": "2", "ptinterest_comment": "Pt interested in study. RA emailed consent and will f/up. lvm 1/21", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-11", "sp_v1_preop_date": "2022-01-26", "sp_v2_6wk_date": "2022-03-25", "sp_v3_3mo_date": "2022-05-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30895": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "1/19 - Called, spoke, sent info. Seems somewhat confused.\r\n1/25 - LVM\r\n1/31 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30896": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated there was too much involved", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30897": {"age": "59", "consent_process_form_complete": "2", "date_and_time": "2022-01-21 12:50", "date_of_contact": "2022-01-19", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10275", "obtain_date": "2022-01-21", "participation_interest": "1", "ptinterest_comment": "Pt hesitant w/ all study procedures, but expressed interest in study. RA emailed consent.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-02", "sp_v1_preop_date": "2022-01-27", "sp_v2_6wk_date": "2022-03-16", "sp_v3_3mo_date": "2022-05-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30898": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30899": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30900": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "1/31 - Called, got through, was told that the number I called was wrong and was given a different number\r\n1/31 - Called, LVM at new number\r\n2/8 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30901": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt had to get to therapy, but requested a copy of the consent form to look over. \r\nPatient states that she lives too far and has no time. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30902": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt requested a copy of the consent form to look over. \r\nPatient has been on vacation and hasn't looked at the consent. They will look at it tonight and get back to me tomorrow. \r\nPatient never contacted me regarding study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30903": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt requested a copy of the consent form to look over. \r\nPt sent an email stating that after reviewing the consent form, she is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30904": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was at work and couldn't speak. \r\nLVM\r\nPt asked that I call her back at 4:30. \r\nLeft several messages with no call back. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30905": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPatient is interested but would like a copy of the consent form to look over. \r\nPatient will call me back after work. \r\nPatient asked that I mail her a copy of the consent form to look over and will touch base next week. \r\nLVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30906": {"age": "59", "consent_process_form_complete": "2", "date_and_time": "2022-01-24 12:52", "date_of_contact": "2022-01-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10277", "obtain_date": "2022-01-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-17", "sp_v1_preop_date": "2022-02-11", "sp_v2_6wk_date": "2022-03-31", "sp_v3_3mo_date": "2022-05-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30907": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "1/24 - Spoke, seemed extremely confused. Unclear about study and worried about transportation for surgery. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30908": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that its too much for her to be traveling back and forth. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30909": {"age": "75", "consent_process_form_complete": "2", "date_and_time": "2022-02-09 15:02", "date_of_contact": "2022-02-09", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient is currently going through a lot and is also planning on traveling outside the country. No longer has time to be in the study or do study related activities. ", "ewdateterm": "2022-05-24", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10284", "obtain_date": "2022-02-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-17", "sp_v1_preop_date": "2022-02-15", "sp_v2_6wk_date": "2022-03-31", "sp_v3_3mo_date": "2022-05-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "30910": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-28 14:59:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues participation", "erep_protdev_desc": "6 week surveys are about 1 wk outside of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "62", "consent_process_form_complete": "2", "date_and_time": "2022-01-28 08:53", "date_of_contact": "2022-01-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10279", "obtain_date": "2022-01-28", "participation_interest": "2", "ptinterest_comment": "Pt expressed interest in study, RA emailed consent. unable to speak at call back.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-16", "sp_v1_preop_date": "2022-02-07", "sp_v2_6wk_date": "2022-03-30", "sp_v3_3mo_date": "2022-05-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30911": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not like coming to Chicago but very friendly on phone and willing to answer surveys. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30912": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not like to come into Chicago and also is unable to leave long because a loved one has a seizure disorder. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30913": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient req call at later time 1/24. Pt requested call at later time 1/31. voicemail full 5pm 1/31. Unable to contact.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30914": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke w/ pt. Very interested. RA emailed consent and will call back. Pt stated they were no longer interested after reviewing consent. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30915": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke briefly, requested call back at later time. Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30916": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated they live about an hour away and are not willing to come in for the study visits, also stated they are unable to take off work for visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30917": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not willing to come into Chicago for study visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30918": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Objection to blood draw", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30919": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not English fluent", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30920": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30921": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "1/25 - LVM\r\n1/31 - Called, seemed interested but hesitant, requested I send info\r\n2/2 - Called, hadn't looked at info, requested that I let him call me back if interested\r\nCanceled Surgery\r\nRescheduled surgery \r\n2/21 - Called me back, expressed interest, very hesitant about MRI", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30922": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to do MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30923": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "1/27 - Called me back, sent info\r\n1/28 - Called back, re-sent info. Said she had not received it.\r\n1/31 - Did receive it, wanted more time to read over, thinks she does want to participate. Plan to call back on Wednesday\r\n2/2 - Call back in an hour. Called back, no answer\r\n2/3 - She called, missed it, I called back ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30924": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Stated he is unable to do MRIs", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30925": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Participant lvm 1/28 stating they are not interested in participating in research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30926": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt did not want to hear about research study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30927": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to do MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30928": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30929": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Self disclosed that he is not MRI eligible due to shrapnel ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "35", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30930": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "1/28 - LVM\r\n2/1 - LVM\r\n2/8 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30931": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt self disclosed that she is unable to do an MRI due to implant", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30932": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30933": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-17 08:06:12", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Visit was outside of timeline. Partipcant was contacted multiple times but did not answer. When they did it was outside of window. Therefore, when they did it was outside of the visit timeline. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "67", "consent_process_form_complete": "2", "date_and_time": "2022-02-14 14:15", "date_of_contact": "2022-01-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10287", "obtain_date": "2022-02-14", "participation_interest": "2", "ptinterest_comment": "1/28 - LVM\r\n2/1 - LVM\r\n2/8 - Spoke, expressed interest, plan to call ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-28", "sp_v1_preop_date": "2022-02-14", "sp_v2_6wk_date": "2022-04-11", "sp_v3_3mo_date": "2022-05-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30934": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30935": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate prior to learning about study. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30936": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left contact information w/ husband. Pt called back and states she has too many other health issues to deal with in order to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30937": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt prefers to call back after checking with workmans comp and reviewing consent. Did not hear back from patient. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30938": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated first study visit would be too long", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30939": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has too much going on before surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30940": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Mailbox is not in service. \r\nPatient requested at copy of the consent form to look over. \r\nPt asked me to resend consent form to look over. \r\nPt states that she doesn't think she would be a good candidate and really doesn't have the time to be in the study. \r\n", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30941": {"age": "74", "consent_process_form_complete": "2", "date_and_time": "2022-02-01 16:24", "date_of_contact": "2022-02-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10281", "obtain_date": "2022-02-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-16", "sp_v1_preop_date": "2022-02-10", "sp_v2_6wk_date": "2022-03-30", "sp_v3_3mo_date": "2022-05-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30942": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient's listed phone number is not taking calls at this time. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30943": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30944": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "2/2 - LVM\r\n2/8 - LVM\r\n2/14 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30945": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-23 09:21:44", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Unable to access contralateral deltoid. Instead used spot lower on contralateral arm.", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-29 10:14:02", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Visit being outside of timeline and surveys being outside of timeline. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "69", "consent_process_form_complete": "2", "date_and_time": "2022-02-02 12:56", "date_of_contact": "2022-02-02", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10282", "obtain_date": "2022-02-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-25", "sp_v1_preop_date": "2022-02-21", "sp_v2_6wk_date": "2022-04-08", "sp_v3_3mo_date": "2022-05-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30946": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was hesitant. RA emailed consent and will f/up next week. On 2/9 Pt states they are too busy thinking about sx and to give call another day", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30947": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are sick and requested a call back the following week. Spoke w/ pt, states they are cancelling sx b/c their previous RTKA 2 yrs ago was unsuccessful and they cannot walk more than a block.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30948": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt interested, but unsure. Requested info mailed to them due to issue with email and will call back if interested. Pt called back after receiving packet of information. Stated the more they read the less they were interested as there isn't really a benefit for them and they do not want to have an MRI. ", "reason_not_interested": "3|0", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30949": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Requested that headset be used for MRI. RA followed up with MRI center. MRI center gave additional information on ear plugs. Participant will think about participating. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30950": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30951": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30952": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "2/4 - Called, sent information, plan to call back next week \"anytime after 12pm\"\r\n2/8 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30953": {"adverse_effects": {"1": {"erep_action_taken": "No immediate action needed. Attached H&P notes for intake. ", "erep_ae_date": "2022-03-08", "erep_ae_desc": "Pt fell at home a few days after surgery and badly injured surgical knee. Was admitted for emergency surgery. ", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2022-03-09 14:25:38", "erep_onset_date": "2022-03-08 19:25", "erep_outcome": "", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-31 12:49:41", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt will do surveys for 6 wks and depending on his condition will come in for 3 month visit. ", "erep_protdev_desc": "Patient was unable to come in for blood draw due to mobility issues related to previous adverse event. Instead will only do surveys for 6 wks. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "69", "consent_process_form_complete": "2", "date_and_time": "2022-02-04 14:33", "date_of_contact": "2022-02-04", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10283", "obtain_date": "2022-02-04", "participation_interest": "2", "ptinterest_comment": "2/4 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-03", "sp_v1_preop_date": "2022-02-15", "sp_v2_6wk_date": "2022-04-14", "sp_v3_3mo_date": "2022-06-03", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30954": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was interested. but self disclosed after learning about MRI that they have a deep brain stimulator and are unable to have MRI's.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30955": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are not interested because they are having sx. RA informed that is why they qualify for study and pt was not interested.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30956": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM's, unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30957": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30958": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30959": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "2/9 - LVM\r\n2/17 - LVM\r\n2/22 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30960": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states they are not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30961": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are unwilling to do MRI as they are claustrophobic. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30962": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to travel to Chicago for study visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30963": {"adverse_effects": {"1": {"erep_action_taken": "Pt continues participation in study.", "erep_ae_date": "2022-04-13", "erep_ae_desc": "Pt requires a revision to knee arthroplasty due to improper healing of skin underneath incision. Pt states they feel great and the PT has been going as expected. They state they had no indication that something was wrong until a follow up visit with their doctor. ", "erep_ae_relation": "3", "erep_ae_serious": "1", "erep_ae_severity": "3", "erep_ae_yn": "1", "erep_local_dtime": "2022-04-18 09:32:30", "erep_onset_date": "2022-04-13 09:32", "erep_outcome": "N/A", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-05-16 09:32", "erep_visit_inv": "6"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-04-27 09:14:50", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Blood draw 1 wk out of protocol range", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "65", "consent_process_form_complete": "2", "date_and_time": "2022-02-15 15:13", "date_of_contact": "2022-02-14", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10289", "obtain_date": "2022-02-15", "participation_interest": "2", "ptinterest_comment": "Pt was very interested. RA meeting after appt to go over consent and part one of study visit. LVM 2/15/2022", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-28", "sp_v1_preop_date": "2022-02-15", "sp_v2_6wk_date": "2022-04-11", "sp_v3_3mo_date": "2022-05-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30964": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/15 - Phoned, did not get through, VM was of a different person. Did not LVM\r\n2/22 - LVM. VM of a different person\r\n07/18/22-lvm\r\n07/19/22-lvm\r\n07/25/22-participant denied to be a part of the study", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30965": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "2/15 - Called, got through part of the script, she hung up on me not clear why. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30966": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/15 - LVM\r\n2/23: Sx postponed indefinitely \r\n4/28 - Sx rescheduled, LVM\r\nUnable to contact participant ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30967": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30968": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much time out of job. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30969": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30970": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30971": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "2/15 - LVM. Called me back, expressed interest, sent info\r\n2/21 - Hadn't seen email, found it, stated he would get back to me today.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30972": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30973": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/16 - LVM\r\n2/22 - Spoke, stated not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30974": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30975": {"adverse_effects": {"1": {"erep_action_taken": "RA will follow up with pt to see if tinnitus resolves. ", "erep_ae_date": "", "erep_ae_desc": "Pt stated that after MRI scanning is tinnitus was \"a whole level higher\" than it was prior to scanning. Before scan had not mentioned history of tinnitus. ", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-28 16:14:52", "erep_onset_date": "2022-02-28 16:15", "erep_outcome": "RA called pt about 24 hours after appointment. He stated that he had been concerned, but the tinnitus seemed to be back to normal. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-03-01 14:42", "erep_visit_inv": "2"}}, "age": "66", "consent_process_form_complete": "2", "date_and_time": "2022-02-25 09:57", "date_of_contact": "2022-02-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10301", "obtain_date": "2022-02-25", "participation_interest": "2", "ptinterest_comment": "2/16 - Spoke with him + wife - expressed interest, sent info. Wife is epidemiologist \r\n2/21: Requested call back Thursday\r\n2/24: LVM. Called me back, requested call back later.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-15", "sp_v1_preop_date": "2022-02-28", "sp_v2_6wk_date": "2022-04-26", "sp_v3_3mo_date": "2022-06-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30976": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/16 - LVM\r\n2/22: Stated not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30977": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/16 - LVM\r\n2/17 - Called back, said she was not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30978": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she lives too far and it would be inconvenient for her. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30979": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient isn't interested in participating. ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30980": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is just not interested. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30981": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/17 - Said he would call me back \r\n2/21 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30982": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-09-20 09:03:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Unable to contact patient to schedule 3 month visit or to get her to complete 3 month surveys. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "5"}}, "age": "55", "consent_process_form_complete": "2", "date_and_time": "2022-02-24 10:52", "date_of_contact": "2022-02-17", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10299", "obtain_date": "2022-02-24", "participation_interest": "2", "ptinterest_comment": "2/17 - Expressed interest, plans to call back, send info\r\n2/22: Still interested, requested call back tomorrow am\r\n2/23: LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-17", "sp_v1_preop_date": "2022-03-08", "sp_v2_6wk_date": "2022-04-28", "sp_v3_3mo_date": "2022-06-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30983": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPt states they will call me back during their lunch break. \r\nPatient states that his job is short staffed and wouldn't be able to take any days off prior to surgery. \r\nPatient called me back and left a vm stating that his surgery has been pushed and thinks he might be able to participate. LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30984": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30985": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/17 - LVM\r\n2/22 - LVM. Returned my call. Not interested.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30986": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was unable to talk and asked that I call back next week. \r\nPatient does not want to take any part in our research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30987": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that the study sounds too involved and she does not have the time for it. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30988": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient states that she will be having a second surgery and thinks she may be a better candidate for that 2nd surgery. Will send her a copy of the consent form and call her at the end of March to touch base. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "44", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30989": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in the study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30990": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-01 11:34:36", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Patient completed surveys outside of timeline window. Patient did not want to come in for 3 month visit. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "76", "consent_process_form_complete": "2", "date_and_time": "2022-02-18 16:04", "date_of_contact": "2022-02-17", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10292", "obtain_date": "2022-02-18", "participation_interest": "2", "ptinterest_comment": "2/17 - Expressed interest, sent info", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-18", "sp_v1_preop_date": "2022-03-01", "sp_v2_6wk_date": "2022-04-29", "sp_v3_3mo_date": "2022-06-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "30991": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are unlikely to be able to fit in a study visit and will reach out if there is time. Pt states they currently do not have the time and declined to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30992": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated the study was a lot. Pt states they have conducted studies in the past, but not to this extent. After f/up the pt states they are unable to do the study due to all of the tasks involved. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30993": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt stated unable to have MRI's due to clip in her cheek. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30994": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt not interested in coming to Chicago, RA offered Lyft and pt still declined. Does not like expressways. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30995": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/17 - LVM\r\n2/21 - Contacted, stated he is not interested. Did not elaborate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30996": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM \r\nPatient states they are working up until the day of surgery and have no time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30997": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form and asked that I call her back tomorrow. \r\nPt needs a little more time to think about it and asked that I call back Monday. \r\nPatient is still thinking about it. Her surgery has been postponed pending insurance, will reach out to her in 2 wks. \r\nPt's surgery was never rescheduled. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30998": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she lives too far and it is not worth her time to participate. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "30999": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "left several messages with no call back", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate, stated they are already very nervous about the surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31003": {"age": "53", "consent_process_form_complete": "2", "date_and_time": "2022-02-28 13:09", "date_of_contact": "2022-02-28", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient had some things come up and was unable to find time to be able to participate. ", "ewdateterm": "2022-03-10", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "1", "main_record_id": "10304", "obtain_date": "2022-02-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-18", "sp_v1_preop_date": "2022-03-01", "sp_v2_6wk_date": "2022-04-29", "sp_v3_3mo_date": "2022-06-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is in too much pain and lives too far to be able to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt asked that I call them back later today. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient states that he went in for a second opinion and has decided to have his surgery at a surgery center in Hinsdale. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient stated no interest after hearing about the MRI portion. ", "reason_not_interested": "5|3", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt called back and requested a copy of the consent form to look over. \r\nPt states they need a little more time to look over consent. \r\nLVM\r\nPatient states that now is not a good time for her to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient shows interest but asked that I call them back tomorrow evening. \r\nPt thought about it and states that it would be difficult because she babysits her grandchild and does not drive. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/21 - LVM\r\n2/22 - Returned my call, not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states they have too much going on at the moment and don't live close enough to be able to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31013": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-05 16:00:09", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Participant was out of town and unable to make it in for her 3 month visit within the protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "63", "consent_process_form_complete": "2", "date_and_time": "2022-02-23 11:51", "date_of_contact": "2022-02-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10295", "obtain_date": "2022-02-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-09", "sp_v1_preop_date": "2022-02-24", "sp_v2_6wk_date": "2022-04-20", "sp_v3_3mo_date": "2022-06-09", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Phone number was daughters; stated they are not willing to participate in study at this time. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/22 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/23 - LVM\r\n3/1 - Called me back, called him back, LVM\r\n3/3 - Called me back, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "2/23 - VM not set up", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31020": {"age": "72", "consent_process_form_complete": "2", "date_and_time": "2022-02-25 11:25", "date_of_contact": "2022-02-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10302", "obtain_date": "2022-02-25", "participation_interest": "2", "ptinterest_comment": "Pt states they are willing to participate. RA emailed consent and will follow up. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-16", "sp_v1_preop_date": "2022-03-01", "sp_v2_6wk_date": "2022-04-27", "sp_v3_3mo_date": "2022-06-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient asked for a copy of the consent form to look over. \r\nPatient states that it seems like there's too much involvement that he doesn't have time for. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/25 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unwilling to have MRI due to severe claustrophobia. States she can only have open mri's. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/25: Unable to LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke to patient's daughter and she states patient's English isn't that great and really doesn't have time to participate. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt has to talk it over with her husband.\r\nPatient states that it is too long of a drive for her. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "2/21 - LVM\r\n3/1 - LVM\r\n3/4 - LVM. Called me back, expressed interest but very hesitant about the time commitment. May reach back out to me. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/1 - Called, did not get through. Possibly hung up on.\r\n3/4 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - LVM. Out of office returning thursday\r\n3/4 - Called, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - Phone line did not go through\r\n3/4 - Hesitant about time, did express interest, did send info", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - LVM\r\n3/7 - LVM\r\n3/18 - Requested call on Monday", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - LVM\r\n3/4 - He returned my call, called him back lvm", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - LVM\r\nCalled me back, not interested", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - LVM\r\n3/3 - Called me back. Not interested.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - LVM\r\n3/7 - Called, requested call back after 4pm. Called back, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/2 - Expressed interest, send info. Plan to call back tomorrow\r\n3/7 - Pt emailed, stating not interested", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/3 - Spoke, expressed interest but hesitant about time commitment. Sent info. Will see if he reaches back out. \r\n3/4 - Emailed stating he's not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/3 - Got through, on a call, requested she call me back later\r\n3/7 - Expressed interest, sent info\r\n3/10 - Emailed expressing interest. Called back \r\nNot eligible due to scheduled knee replacement", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/3 - LVM, called me back, expressed interest, sent info\r\n3/11 - LVM\r\n3/16 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31042": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/3 - Called, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31043": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "2022-03-15 10:52", "date_of_contact": "2022-03-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10313", "obtain_date": "2022-03-15", "participation_interest": "2", "ptinterest_comment": "3/4 - LVM\r\n3/11 - Expressed interest, sent info \r\n3/14- state they will sign consent, tonight. Pt very interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-23", "sp_v1_preop_date": "2022-03-17", "sp_v2_6wk_date": "2022-05-04", "sp_v3_3mo_date": "2022-06-23", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to commute to Chicago", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/4 - LVM\r\n3/11 - Got through, not interested", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/7: Call back later", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/7 - LVM \r\n07/08/22-Particpant hung up \r\n07/11/22-partcipant stated that they will have another knee replacement surgery within 3 months of the first. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/7 - LVM", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient requested a copy of the consent form. \r\nPatient's surgery has been cancelled. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sent a copy of the consent form. \r\nLVM\r\nPatient called back and stated that she does not have the time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31051": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-20 13:06:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt continues participation", "erep_protdev_desc": "some 6 wk surveys completed closer to 3 month window", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "70", "consent_process_form_complete": "2", "date_and_time": "2022-03-10 13:54", "date_of_contact": "2022-03-09", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10311", "obtain_date": "2022-03-10", "participation_interest": "2", "ptinterest_comment": "Pt was very interested. RA approached in clinic. Gave consent form and will follow up. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-25", "sp_v1_preop_date": "2022-03-14", "sp_v2_6wk_date": "2022-05-06", "sp_v3_3mo_date": "2022-06-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/9 - LVM\r\n3/11 - LVM\r\n3/18 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/9 - Asked for callback later\r\n3/10 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/10 - Said that he would call me back tomorrow\r\n3/17 - LVM \r\n3/23 - Called requested he call me back later\r\n3/24 - Returned call, sent info. He's very hesitant about time commitment. \r\n08/11- Has too much going on and does not want to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/10: Called 1st number. Unable to LVM\r\n3/17: Called 2nd number. LVM\r\n3/22: Sent study info, epxressed interest but hesitant about time commitment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "RA stated they would call back if they notice the 2nd knee is sched outside of the 3 mos window. Pt expressed interest", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not interested after asking if interested in learning more about study they can participate in.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31058": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "mailbox full. 3/21-expressed interest, emailed consent. Pt not interested in participating after reviewing consent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "spoke briefly, requested call back at later time for more info, unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt very willing to participate; but disclosed they have had metal in their eye and are unable to provide proof it is no longer there. Unable to participate due to MRI eligibility. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined before hearing details of study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. 3/21/2022 Pt states was not a good time and would call me tomorrow.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to come into city", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31064": {"age": "62", "consent_process_form_complete": "2", "date_and_time": "2022-03-16 12:25", "date_of_contact": "2022-03-14", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10317", "obtain_date": "2022-03-16", "participation_interest": "2", "ptinterest_comment": "Expressed interest, unsure if able to fit in prior to sx. RA emailed consent. spoke 3/15, pt still interested, but did not have chance to review consent", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-23", "sp_v1_preop_date": "2022-03-17", "sp_v2_6wk_date": "2022-05-04", "sp_v3_3mo_date": "2022-06-23", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they knows they will not follow through.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/15 - Called, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/15 - Expressed interest, sent info\r\n3/16 - lvm", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/15 - LVM\r\n Concerned about COVID exposure prior to sx", "reason_not_interested": "4|1", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/15 - Requested call back later", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31070": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/15 - Called, expressed interest, plans to call back tomorrow morning. \r\nCannot do MRI scans", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/15 - Expressed interest, sent info\r\n3/18 - Called, contacted, requested call me back later. Called later, LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31073": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that it's not a good time and she is not interested in participating. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was interested, but unsure about coming into the city. RA emailed consent, pt prefers to call RA back if interested. Pt did not call back.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31076": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient states that it would be too inconvenient for her to come all the way to the city. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/16 - LVM\r\n3/22 - LVM\r\n3/28 - Not interested due to commute.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/16 - LVM\r\n3/22 - LVM\r\n3/29 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/16 - LVM\r\n3/22 - LVM\r\n3/29 - Not interested in experiencing pain or blood draw", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient asked that I call back at another time. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31081": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient asked that I send him a copy of the consent form and will discuss with his wife. \r\nLVM\r\nPatient states that he talked it over with his wife and they both agreed that its too much for him at the moment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "44", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31082": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was out at the store and asked that I call him back at a different time. \r\nLVM\r\nPatient not interested in participating in any research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/16 - LVM\r\n3/22 - Not English/Spanish fluent", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31085": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/16 - LVM\r\n3/17 - Called me back, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31086": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she does not have the time to come in for a baseline visit and will then be leaving to Brooklyn shortly after her surgery. \r\n", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31087": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "mailbox is full and cannot leave vm. \r\nPatient has no time to come in for a baseline visit before surgery. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31088": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt requested a copy of the consent form to look over. \r\nPatient really doesn't have time to come in for a baseline visit and does not like coming in to the city. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 2- 4/5. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined prior to hearing details of study", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31091": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/21 - Expressed interest, plan to call back later today. \r\n3/22 - Called back, she hung up on me", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31092": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt interrupted and declined prior to any description of study given", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31093": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is busy with work and cannot make time to commit to the study. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31094": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient called back and is on vacation. Asked that I send a copy of the consent form. \r\nLeft multiple voicemails with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31095": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in participating. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31096": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she just had her right knee done. She also states that she would not be able to do the cold water test because she has Raynaud's disease.", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31097": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she is unable to have MRI due to severe claustrophobia; otherwise would be interested. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31098": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient had her surgery moved up to this Wednesday. States that she is planning on having her 2nd knee done. Will keep in contact. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31099": {"age": "34", "consent_process_form_complete": "2", "date_and_time": "2022-04-06 12:28", "date_of_contact": "2022-03-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10337", "obtain_date": "2022-04-06", "participation_interest": "2", "ptinterest_comment": "lvm. lvm 2-3/28/2022. lvm 3-4/5. Spoke to participant and they are very interested in study. Emailed consent and will f/up.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "34", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-15", "sp_v1_preop_date": "2022-04-11", "sp_v2_6wk_date": "2022-05-27", "sp_v3_3mo_date": "2022-07-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31100": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he is currently in Naples, FL and will only be coming in for surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31101": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31102": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31103": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/21 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31104": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/21 - lvm", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31105": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they would have participated, but 2nd knee is likely going to be sched w/in 3 months of other knee. Emailed info and informed to give a call if their sx is scheduled after 3 months", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31106": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that they are going on vacation before their surgery and will have no time to come in for the baseline visit. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31107": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/21 - LVM", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31108": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm, unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31109": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm, unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31110": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31111": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to come to chicago due to distance", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31112": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/21 - Called, plan to call back on Friday\r\n3/25 - Called, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31113": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt asked to call her back when her husband is home to consent. \r\nPt has their surgery date postponed and now states that she has too much going on and does not want to participate. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31114": {"age": "58", "consent_process_form_complete": "2", "date_and_time": "2022-03-21 16:31", "date_of_contact": "2022-03-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10320", "obtain_date": "2022-03-21", "participation_interest": "2", "ptinterest_comment": "3/21 - LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-11", "sp_v1_preop_date": "2022-04-07", "sp_v2_6wk_date": "2022-05-23", "sp_v3_3mo_date": "2022-07-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31115": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not interested in participating in study involving pain questions.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31116": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt headed out of town and does not have time for study visit prior to sx. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31117": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm; unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31118": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt hesitant about participating due to MRI. RA emailed consent and will follow up. Pt did not have a chance to review when called 3/30; RA will call back. lvm 3/31. lvm 4/4.", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31119": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/23 - LVM", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31120": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/23 - LVM\r\n3/29 - Got through, seems confused, potentially interested, will call back", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31121": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/23 - LVM. Unwilling to do MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31122": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/24 - Not interested due to time constraints", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31123": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/24 - Called, seemed busy, requested emailed info", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31124": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31125": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt phone number is daughters. Pt daughter asked for study materials to be emailed to her as she knew about uppcoming sx and email+phone number in chart is hers. RA emailed info", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31126": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined prior to description of study given. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31127": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/28 - sx moved up", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31128": {"age": "48", "consent_process_form_complete": "2", "date_and_time": "2022-03-28 12:54", "date_of_contact": "2022-03-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10324", "obtain_date": "2022-03-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-29", "sp_v1_preop_date": "2022-04-06", "sp_v2_6wk_date": "2022-06-10", "sp_v3_3mo_date": "2022-07-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31129": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "3/28 - Called home #, LVM\r\n4/4 - LVM mobile #", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31130": {"age": "72", "consent_process_form_complete": "2", "date_and_time": "2022-03-30 07:44", "date_of_contact": "2022-03-29", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10326", "obtain_date": "2022-03-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-11", "sp_v1_preop_date": "2022-03-30", "sp_v2_6wk_date": "2022-05-23", "sp_v3_3mo_date": "2022-07-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31131": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. 4/14-Pt declined to participate prior to hearing about study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31132": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/28 - Not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31133": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/28 - LVM\r\n4/4 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31134": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 2-4/14", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31135": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate after learning visits are in Chicago.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31136": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/29 - LVM\r\n4/5 - LVM\r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31137": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/29 - Not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31138": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/29 - Interested, sent info\r\n3/30 - Tried to call, couldn't get through. \r\n4/6 - Tried to call, did not get through", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31139": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31140": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to participate; states mother is in hospital and she has too much going on to participate, also stated her chronic pain in her nonsurgical leg is flaring due to the pain in her right. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31141": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31142": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31143": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/30 - Expressed interest, sent info", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31144": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/31 - Called, could not LVM. Called back, not interested.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31145": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/4 - Expressed interest, sent info\r\n4/6 - Called, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31146": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Sent her a copy of the consent form to look over. \r\nLVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31147": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-17 10:59:41", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "N/A", "erep_protdev_desc": "Patient's 3 month visit was outside of protocol range. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "65", "consent_process_form_complete": "2", "date_and_time": "2022-04-06 10:59", "date_of_contact": "2022-04-06", "dem_race": "6", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10336", "obtain_date": "2022-04-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-15", "sp_v1_preop_date": "2022-04-13", "sp_v2_6wk_date": "2022-05-27", "sp_v3_3mo_date": "2022-07-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31148": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nSent a copy of the consent form. \r\nPt states that she is in the middle of moving and unfortunately does not have time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "35", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31149": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sent a copy of the consent form. \r\nLVM\r\nPatient states that she plans on moving to Tennessee after her surgery and does not have the time to commit to anything else. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31150": {"age": "57", "consent_process_form_complete": "2", "date_and_time": "2022-04-06 16:02", "date_of_contact": "2022-04-04", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10339", "obtain_date": "2022-04-06", "participation_interest": "2", "ptinterest_comment": "lvm. Pt expressed interest, RA emailed consent", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-22", "sp_v1_preop_date": "2022-04-06", "sp_v2_6wk_date": "2022-06-03", "sp_v3_3mo_date": "2022-07-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31151": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/4 - Probably not, but agreed to be emailed info", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31152": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/4 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31153": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "RA gave consent in person at clinic for pt review. RA called and pt states she is not interested in the study.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31154": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke w/ pt husband and left contact information as pt was currently at work. Pt called back and stated that they are coming in 4/13. RA emailed info and asked they let them know if interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31155": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/5 - LVM\r\nCalled me back, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31156": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Dr. Jacobs called, pt unwilling to participate due to MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31157": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2022-04-08 15:56", "date_of_contact": "2022-04-07", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10343", "obtain_date": "2022-04-08", "participation_interest": "2", "ptinterest_comment": "4/6 - Dr. Jacobs called\r\n4/7 - Called back, expressed interest, requested info sent. Plan to call back in afternoon today or tomorrow. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-17", "sp_v1_preop_date": "2022-05-10", "sp_v2_6wk_date": "2022-06-28", "sp_v3_3mo_date": "2022-08-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31158": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-04-12 11:19", "date_of_contact": "2022-04-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10344", "obtain_date": "2022-04-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-28", "sp_v1_preop_date": "2022-04-19", "sp_v2_6wk_date": "2022-06-09", "sp_v3_3mo_date": "2022-07-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31159": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/11", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31160": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/11- Pt stated sx has been rescheduled to August. Emailed info, plan to reach out closer to new sx date\r\n07/01/22-lvm\r\n07/14/22-lvm\r\n07/20/22-lvm\r\nUnable to reach.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31161": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/11 - LVM. He called me back the other day.\r\n4/13 - Called him back. sx has been pushed till July. Is interested. \r\n4/15 - Called him back, made plans to call back closer to sx date. \r\nSx not rescheduled as of 05/26/2022.\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31162": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in participating. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31163": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt requested a copy of the consent form. \r\nPt states that she plan on moving to Tennessee. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31164": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is polish speaking and does not speak English. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31165": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31166": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt asked that I call her back tomorrow. Sent a copy of the consent form. \r\nPt wants the weekend to think about it. I will reach out to her again on Monday. \r\nPt states that she will have not time to come in for a baseline visit before surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31167": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/13 - Expressed interest, seemed distracted, sent info\r\nUnable to contact participant. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31168": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/13 - Called, was driving. \r\n4/15 - Requested call after 4pm\r\nSaid no", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31169": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt hesitant due to timing and work schedule. RA emailed consent and pt will call if interested. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31170": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt preferred emailed info, emailed to participant. \r\nNever heard back from participant. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31171": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 4/26", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31172": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt too overwhelmed with other tasks prior to surgery", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31173": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt expressed a lot of interest. RA emailed consent. Pt emailed stating unable to find time to participate in research. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31174": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/13 - LVM\r\n4/14 - Expressed interest, sent info, plans to call back early next week. \r\n4/19 - LVM\r\n4/22 - Expressed interest, read through consent, said she would get back to me. \r\n4/28 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31175": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/13 - LVM\r\n4/20 - LVM, called me back requested call back in early May. Sent info. \r\nUnable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31176": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2022-05-05 11:44", "date_of_contact": "2022-04-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10368", "obtain_date": "2022-05-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-05-05", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31177": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm; unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31178": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt on trip when called, will call back. Pt stated she's too nervous w/ sx to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "47", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31179": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "4/14 - Expressed interest, sent info, plan to call back tomorrow\r\n4/15 - Called back after 6pm as requested. Did not get through. LVM. \r\nUnable to contact participant. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31180": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she \"participated in something last time\" and is no longer interested in participating in research. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31181": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31182": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she does not like coming into the city and actually had her surgery moved up so she had surgery on 04/08/2022. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31183": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31184": {"age": "63", "consent_process_form_complete": "2", "date_and_time": "2022-04-15 11:44", "date_of_contact": "2022-04-15", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10346", "obtain_date": "2022-04-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-25", "sp_v1_preop_date": "2022-05-06", "sp_v2_6wk_date": "2022-07-06", "sp_v3_3mo_date": "2022-08-25", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31185": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/14 - Busy, requested call back later\r\n4/15 - LVM\r\nUnable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31186": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not comfortable coming into Chicago", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31187": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unwilling to make trip to MOR, RA offered lyft and pt declined. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31188": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/14 - Requested call back Tuesday\r\n4/19 - LVM\r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31189": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unwilling to try MRI unless it is an open MRI due to claustrophobia. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31190": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt expressed interest. RA emailed consent. knee replaced and schedules pretty packed also against collection of DNA. ", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31191": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt called back stating that there is a better time to call them. lvm 4/15.\r\nUnable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31192": {"age": "77", "consent_process_form_complete": "2", "date_and_time": "2022-04-29 09:11", "date_of_contact": "2022-04-14", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10361", "obtain_date": "2022-04-29", "participation_interest": "2", "ptinterest_comment": "4/14 - LVM\r\n4/19 - LVM. Called me back, expressed interest, made plans to call back next week on Monday. \r\n4/25 - Called back at arranged time, LVM\r\n4/28 - Called me back, expressed interest, went through consent but was unable to find email. Plan to call back tomorrow or consent at basline ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-09", "sp_v1_preop_date": "2022-05-05", "sp_v2_6wk_date": "2022-06-20", "sp_v3_3mo_date": "2022-08-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31193": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/14 - LVM\r\nCalled back, not interested due to distance and time", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31194": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "VM not setup, and unable to lvm w/ home, unable to contact mobile 4/28.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31195": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. lvm 4/28.\r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31196": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she has too much going on and will not have any help after surgery. ", "reason_not_interested": "5|4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31197": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "2022-04-18 14:27", "date_of_contact": "2022-04-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10347", "obtain_date": "2022-04-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-12", "sp_v1_preop_date": "2022-04-25", "sp_v2_6wk_date": "2022-06-23", "sp_v3_3mo_date": "2022-08-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31198": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Poss delay sx", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31199": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are not interested in participating. ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31200": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt asked that I call him back on Monday. \r\nPt states they will call me back when they have time. \r\nNever heard back from the patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31201": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/15 - Called, got through to daughter. She said she would have pt call me back at my number (RM). Plan to transfer to SM. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31202": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt was driving and could not speak. Asked that I call back later. \r\nNever got in touch with the patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31203": {"age": "73", "consent_process_form_complete": "2", "date_and_time": "2022-04-18 17:33", "date_of_contact": "2022-04-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10349", "obtain_date": "2022-04-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-02", "sp_v1_preop_date": "2022-04-21", "sp_v2_6wk_date": "2022-06-13", "sp_v3_3mo_date": "2022-08-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31204": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she lives too far. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31205": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was not home. \r\nLVM\r\nPatient is on vacation and asked that I call them back at a different time. \r\nNever got a hold of patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31206": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is not interested in participating. ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "84", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31207": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/15 - Very hesitant about time commitment, agreed to be sent info, requested that he contact me if interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31208": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to come into Chicago", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31209": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm; unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31210": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm; unable to contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31211": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unwilling to come to Chicago", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31212": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt expressed interest, but wants to speak with husband regarding study as they are unsure they can add more to their plate. Pt emailed they will decline.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31213": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/20 - LVM\r\n4/25 - Went to VM then could not LVM (blocked?)", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31214": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/20 - LVM\r\n4/25 - Sx canceled due to cancer\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31215": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/20 - Called, not interested", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31216": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/20 - LVM\r\nNo longer having sx at Rush", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "42", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31217": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/20 - LVM\r\n4/25 - LVM\r\n06/07- Participant has a full time job and does not have time ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31218": {"age": "74", "consent_process_form_complete": "2", "date_and_time": "2022-04-22 12:51", "date_of_contact": "2022-04-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10355", "obtain_date": "2022-04-22", "participation_interest": "2", "ptinterest_comment": "Jacobs initially called this participant. RA called and patient requested consent to review, but is very interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-26", "sp_v1_preop_date": "2022-05-20", "sp_v2_6wk_date": "2022-07-07", "sp_v3_3mo_date": "2022-08-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31219": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/22 - LVM\r\n4/28 - Unwilling to come into Chicago", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31220": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/22 - LVM\r\n4/28 - LVM\r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31221": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/22 - LVM\r\nWorks in Minnesota ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31222": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/25 - LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31223": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31224": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/25 - LVM\r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31225": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sx canceled", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31226": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unable to come in prior to surgery.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31227": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm. Pt already involved in another study and does not want to take the time to participate in another. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31228": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt not willing to do in person visits in the city. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31229": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient's mother just passed away. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31230": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt struggles with getting transportation and is not comfortable taking offered Lyft due to possibility of covid. ", "reason_not_interested": "1", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31231": {"age": "59", "consent_process_form_complete": "2", "date_and_time": "2022-04-26 15:57", "date_of_contact": "2022-04-26", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10358", "obtain_date": "2022-04-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-23", "sp_v1_preop_date": "2022-05-17", "sp_v2_6wk_date": "2022-07-04", "sp_v3_3mo_date": "2022-08-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31232": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that it would take up too much of his time and he is not interested. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31233": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nUnable to get a hold of participant. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31234": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient had company and asked that I call her after 2 pm. \r\nUnable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31235": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt asked that I call him back tomorrow. \r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31236": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt was at work and states that they will call me back later. \r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31237": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nUnable to contact pt. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31238": {"age": "75", "consent_process_form_complete": "2", "date_and_time": "2022-05-05 11:06", "date_of_contact": "2022-05-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10367", "obtain_date": "2022-05-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-11", "sp_v1_preop_date": "2022-05-09", "sp_v2_6wk_date": "2022-06-22", "sp_v3_3mo_date": "2022-08-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31239": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31240": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31241": {"age": "73", "consent_process_form_complete": "2", "date_and_time": "2022-05-19 09:37", "date_of_contact": "2022-04-28", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10384", "obtain_date": "2022-05-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-20", "sp_v1_preop_date": "2022-05-19", "sp_v2_6wk_date": "2022-07-01", "sp_v3_3mo_date": "2022-08-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31242": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "1st sx not successful-2019. Can't exercise like want. Unable to have MRI due to bullet fragments in body. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31243": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Passed before hearing explanation of study", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31244": {"age": "58", "consent_process_form_complete": "2", "date_and_time": "2022-05-02 10:34", "date_of_contact": "2022-04-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10362", "obtain_date": "2022-05-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-03", "sp_v1_preop_date": "2022-05-02", "sp_v2_6wk_date": "2022-06-14", "sp_v3_3mo_date": "2022-08-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31245": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No dial tone", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31246": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined to learn about study", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31247": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Jacobs initially contacted participant and they expressed interest. lvm. lvm 2 5/11", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31248": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM (Dr. Jacobs spoke to pt and they seemed interested)\r\nPatient would like a day or two to think about it. \r\nPt left a voicemail stating that after thinking about it, she would prefer not to participate. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31249": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was sent consent and states that after further thought, study is too involved then he would like to be. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31250": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives too far, not willing to come in. Lyft services were offered. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31251": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "05/11-Unable to speak after pt picked up phone\r\nUnable to speak with Participant. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31252": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to come into Chicago because they live 2 hrs away.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31253": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was at clinic, asked to be called back at later time. Contacted participant and would like to think about it more before participating. Emailed consent.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31254": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they do not want to come to Chicago for visits and they have a heavy volunteer schedule. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31255": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study was too much, unable to get through full description", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31256": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Participant is not comfortable with doing MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31257": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact participant. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31258": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "participant lives in IN and does not have the time commitment ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31259": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Cannot make it to Chicago ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31260": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31261": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "spoke w/ pt. stated they'd need to think about it and would get back in contact if interested. RA emailed consent. \r\nPatient never made contact to consent. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31262": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "05/18-LVM\r\n05/24-LVM\r\n05/26-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31263": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31264": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31265": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Afraid to be out in public ", "reason_not_interested": "1", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31266": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nCalled several times with no call back. \r\n\r\n07/06/22-partcipant called back stating she had cancelled her surgery and may reschedule it. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31267": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "5/20-lvm\r\n5/23-sent econsent form \r\n5/26-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31268": {"age": "52", "consent_process_form_complete": "2", "date_and_time": "2022-05-27 13:49", "date_of_contact": "2022-05-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10391", "obtain_date": "2022-05-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-07", "sp_v1_preop_date": "2022-06-02", "sp_v2_6wk_date": "2022-07-19", "sp_v3_3mo_date": "2022-09-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31269": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31270": {"age": "69", "consent_process_form_complete": "2", "date_and_time": "2022-05-27 12:02", "date_of_contact": "2022-05-20", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10390", "obtain_date": "2022-05-27", "participation_interest": "2", "ptinterest_comment": "pt very interested. req call monday after 12 pm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-17", "sp_v1_preop_date": "2022-06-02", "sp_v2_6wk_date": "2022-07-29", "sp_v3_3mo_date": "2022-09-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31271": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31272": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to make contact with patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31273": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31274": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31275": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient states she is too old ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31276": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31277": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31278": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt did not want to hear explanation before declining. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31279": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was unable to make time for study visits.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31280": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31281": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31282": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "05/24-LVM\r\n05/26-Spoke with, call back the next day \r\n06/06- Participant says she has no time", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31283": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unable to participate because they are going to Europe shortly after surgery.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31284": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt going to visit daughter in Virginia prior to surgery", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31285": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to get in contact with patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31286": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLeft several messages with no call back. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31287": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke to son, he states he will talk it over with patient. Asked that I call back tomorrow. \r\nUnable to get in contact with participant. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31288": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke to daughter. She will discuss it with patient and they will call me if he is interested in participating. \r\nParticipant never called back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31289": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that they are not interested in participating. ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31290": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2022-06-09 10:03", "date_of_contact": "2022-05-25", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10397", "obtain_date": "2022-06-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "0", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-20", "sp_v1_preop_date": "2022-06-13", "sp_v2_6wk_date": "2022-08-01", "sp_v3_3mo_date": "2022-09-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31291": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Participant cannot get around. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31292": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLeft several messages, no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31293": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that he is still working full time and has no time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31294": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Participant hung up on me. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31295": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states his surgery is being postponed from 06/03/2022. Asked that I send a copy of consent form to look over. \r\n08/22- LVM\r\nUnable to make contact with patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31296": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that she is no longer having surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31297": {"age": "43", "consent_process_form_complete": "2", "date_and_time": "2022-06-02 12:34", "date_of_contact": "2022-05-25", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10395", "obtain_date": "2022-06-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-15", "sp_v1_preop_date": "2022-06-13", "sp_v2_6wk_date": "2022-07-27", "sp_v3_3mo_date": "2022-09-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31298": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not like driving to Chicago. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31299": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt would like to speak with her daughter regarding study. Sent a copy of the consent form. \r\nPatient and daughter would like more time to think about it. \r\nNot interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31300": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31301": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "05/26-LVM\r\n06/06-Partcipant stated that the surgery is postponed until November. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31302": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not able to come in due to granddaughters work schedule. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31303": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/01-lvm\r\n06/02- spoke with participant, does not want to drive downtown. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31304": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Participant cannot make the drive up to Chicago ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31305": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "06/01-Spoke with participant, sent econsent via email ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31306": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2022-06-06 17:01", "date_of_contact": "2022-06-02", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10396", "obtain_date": "2022-06-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-16", "sp_v1_preop_date": "2022-06-10", "sp_v2_6wk_date": "2022-07-28", "sp_v3_3mo_date": "2022-09-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31307": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/03- Sent econsent over \r\n06/06-Particpant went over research and is not interested anymore due to MRI. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31308": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/03-Spoke with Participant, She is not interested.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31309": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/06-LVM\r\n06/08-LVM\r\n06/15-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31310": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sent a copy of the consent form. \r\nPt has decided to cancel her surgery.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31311": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Participant will not be in town for visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31312": {"age": "61", "consent_process_form_complete": "2", "date_and_time": "2022-06-09 11:04", "date_of_contact": "2022-06-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10398", "obtain_date": "2022-06-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-17", "sp_v1_preop_date": "2022-06-14", "sp_v2_6wk_date": "2022-07-29", "sp_v3_3mo_date": "2022-09-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "31313": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM. LVM 6/13.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31314": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31315": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that its difficult for her to get around. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31316": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/07-LVM \r\n06/08-Particpant stated they could not do the MRI.", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31317": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/12-sent econsent \r\n07/18/22-partcipant stated they have too much going on ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31318": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/07-sent econsent \r\n06/08-Partipcant declined to be part of the study", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31319": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/07-Particpant stated to call back \r\n06/08-LVM\r\n06/16- Participant stated they are not interested ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31320": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-06-28 14:19", "date_of_contact": "2022-06-07", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10417", "obtain_date": "2022-06-28", "participation_interest": "2", "ptinterest_comment": "06/07-Sent Econsent over. Spoke 6/9 morning and requested call back later in day. LVM. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-01", "sp_v1_preop_date": "2022-06-30", "sp_v2_6wk_date": "2022-08-12", "sp_v3_3mo_date": "2022-10-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31321": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/07/2022-sent econsent over. lvm 6/10\r\n06/16-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31322": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sent Econsent 06/07/2022\r\nLVM 6/14/2022\r\nLVM 06/16/2022\r\nCould not get ahold of the participant ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31323": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/07-lvm\r\n06/08-Particpant cannot drive from Indiana to Chicago ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31324": {"age": "68", "consent_process_form_complete": "2", "date_and_time": "2022-06-15 09:40", "date_of_contact": "2022-06-08", "dem_race": "5", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10405", "obtain_date": "2022-06-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "0", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-12", "sp_v1_preop_date": "2022-06-23", "sp_v2_6wk_date": "2022-08-23", "sp_v3_3mo_date": "2022-10-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31325": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that it would be too much for her and she also would not be able to do the MRI. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31326": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she lives too far and does not want to drive in for study visits. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31327": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "lvm\r\nUnable to make contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31328": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient decided to decline as I was going over key points of the study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31329": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "no answer\r\nLVM- unable to make contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31330": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31331": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they want to focus on surgery and relief from the pain ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31332": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are still in pain from previous surgery and will think about participating in a study and call back if interested ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31333": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "requested call back tomorrow. lvm 6/9/2022. Pt states they take care of their husband and handicapped son. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31334": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt no longer seeing physician for sx due to cost.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31335": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was unable to talk, asked that I call her back later. \r\nlvm, unable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31336": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31337": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM- unable to make contact\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31338": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM- unable to make contact", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31339": {"adverse_effects": {"1": {"erep_action_taken": "N/A", "erep_ae_date": "", "erep_ae_desc": "Participant was laying on MRI table and started panicking as we were about to start the scans. Could not go through with MRI. ", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-06-23 15:11:59", "erep_onset_date": "2022-06-22 08:30", "erep_outcome": "Participant will not be doing MRI for study visit. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-06-14 16:28", "date_of_contact": "2022-06-14", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10404", "obtain_date": "2022-06-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-05", "sp_v1_preop_date": "2022-06-22", "sp_v2_6wk_date": "2022-08-16", "sp_v3_3mo_date": "2022-10-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31340": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt states that her surgery is being postponed. Would like to be contacted once she knows when her sx is rescheduled for. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31341": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31342": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nUnable to make contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "42", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31343": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-06-21 07:58", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10408", "obtain_date": "2022-06-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-14", "sp_v1_preop_date": "2022-06-21", "sp_v2_6wk_date": "2022-08-25", "sp_v3_3mo_date": "2022-10-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31344": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/15-sent econsent ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31345": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/15- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31346": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/15/22-LVM\r\n06/16/22-LVM\r\n06/20/22-Particpant stated she has too many doctor visits and will not be able to fit any more visits in. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31347": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPatient states that he has a lot going on before surgery. \r\n", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31348": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/15/22-sent econsent \r\n06/20/22-Spoke to participant, Participant stated he needs more time to think things through \r\n06/24/22-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31349": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/15/22-sent econsent \r\n06/20/22- Participant said she is not interested ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31350": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/15/22 send econsent over \r\n06/20/22 participant states she does not want to be a part of the research study due to her believing it will interfere with her recovery and pain. ", "reason_not_interested": "4|3", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31351": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/16/2022-LVM\r\n06/20/2022-Particpant stated that they need more time to look things over. \r\n06/24/2022-Particpant stated that they are not interested.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31352": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/16/22-Sent econsent \r\n06/21/22-participant wants another day to look it over ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "45", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31353": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/16/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31354": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/16-sent econsent ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31355": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/16/22-particpant stated they would call back\r\n06/20/22-participant stated that they cannot take off time at work.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31356": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Participant cannot make the drive up to downtown for the visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31357": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/20/22-lvm\r\n07/08/22-particpant does not want to be apart of the study ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31358": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/21/22-LVM\r\n06/22/22-LVM\r\n07/01/22-Participant stated she does not have the ability to accommodate the study into her schedule ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31359": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/21/22-sent econsent\r\n06/22/22-lvm\r\n07/14/22-lvm\r\nUnable to make contact with", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31360": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/22/22-Participant stated he was not interested in participating", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31361": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke and emailed consent. PT will call back if interested. Pt states the study is too much and she wishes she were 5 yrs younger to participate. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31362": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is working full time up until surgery and does not have time to come in. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31363": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he would like to speak to his primary physician first. \r\nLVM\r\nUnable to make contact with patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31364": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states they live too far and all of his follow ups are in Indiana. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31365": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not want to come down to Rush for visits. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31366": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he and his wife do not want to make the trip to Rush for the study visits. ", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31367": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that they live too far and do not want to come in to Rush. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31368": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31369": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is afraid to come down to Rush. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31370": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt requested a copy of consent form to look over. \r\nLVM\r\nLVM\r\nUnable to make contact with patient. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31371": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLVM\r\nLeft several messages with no call back. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31372": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is not having her follow ups at Rush and would prefer not to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31373": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/30/22- participant stated she's going to have to push back the surgery to potentially august due to current health problems. \r\n08/17/22-lvm\r\n08/31/22-pt stated she's no longer interested in participating in research ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31374": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "06/30/22-partcipant stated they were not interested. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31375": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "06/30/22-particpant stated they will not drive to the city. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31376": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/01/22-lvm\r\n07/12/22-lvm\r\n07/14/22-partcipant stated they have too much going on ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31377": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/02/22-sent econsent\r\n07/08/22-lvm\r\n07/12/22-particpant stated they do not have the time ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31378": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/01/22-particpant said to call back later \r\n07/14/22-sent econsent, call back \r\n07/18/22-partcipant stated they are already in another study ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31379": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "2022-07-06 14:15", "date_of_contact": "2022-07-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10421", "obtain_date": "2022-07-06", "participation_interest": "2", "ptinterest_comment": "07/01-sent econsent \r\n07/06-consented ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-05", "sp_v1_preop_date": "2022-07-12", "sp_v2_6wk_date": "2022-09-16", "sp_v3_3mo_date": "2022-11-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31380": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/01/22-particpant does not have the time availability.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31381": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2022-07-06 10:35", "date_of_contact": "2022-07-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10420", "obtain_date": "2022-07-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-11", "sp_v1_preop_date": "2022-07-07", "sp_v2_6wk_date": "2022-08-22", "sp_v3_3mo_date": "2022-10-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31382": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/07/2022-lvm\r\n07/11/22-participant stated they do not have time ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31383": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/07/2022-Spoke with husband, says he will pass along the message. \r\n07/08/22-LVM\r\n07/14/22-LVM\r\nunable to reach participant ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31384": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/07/22-lvm\r\n07/12/22-lvm\r\n07/14/22-lvm\r\n\r\ncould not reach patient ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31385": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/07/22-surgery cancelled", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31386": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/08/22-lvm\r\n07/11/22-lvm\r\n07/19/22-lvm\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31387": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/08/22-Partcipant stated to call back at another time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31388": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPatient called back and would like to talk to Dr. Paprosky before agreeing to anything. \r\nLVM\r\nUnable to make contact with patient. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31389": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she is working full time up until her surgery and has no time. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31390": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states she's too busy and is not interested. ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31391": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Requested a copy of the consent form to look over.\r\n07/14 Pt needs more time to look over consent form. \r\nUnable to make anymore contact with patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31392": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nNo Answer\r\nUnable to make contact with pt.\r\n\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31393": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient doesn't understand English that well. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31394": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\n2/25 LVM\r\nUnable to contact patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31395": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/8/22-lvm\r\n07/11/22-partcipant stated to call back next week \r\n07/19/22-lvm\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31396": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/12/22-lvm\r\n07/14/22-call cannot go through \r\n07/18/22-LVM\r\n\r\nCould not reach before surgery. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31397": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/12-LVM \r\n07/14-Inelgibile; participant needs interpreter ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31398": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/12/22-lvm\r\n07/14/22-lvm\r\n07/18/22-Participant stated they live in WI and its too far to drive to Chicago. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31399": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/12/22-particpant stated to call back at a different time \r\n07/26/22-LVM\r\n08/01/22-LVM\r\n\r\nCould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31400": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/12/-22-lvm\r\n07/26/22-sent copy of consent form \r\n07/28/22-pt declined to take part in the research ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31401": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/12/22-Calls are not going through \r\n\r\nCould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31402": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "07/12/22-lvm \r\n07/13/22-sent econsent \r\n07/26/22-lvm ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31403": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nUnable to make contact with patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31404": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nSent a copy of the consent form for pt to look over. \r\n7/25- Pt was busy and asked that I call her back tomorrow morning. \r\n7/26- Pt needs more time to think about it and asked that I call her back tomorrow. \r\nPt states that she will have to pass on participating. She is really nervous about surgery and feels like she has too much to do beforehand. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31405": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/14/22-Needs Spanish interpreter \r\nPt states that she does not want to participate because she has claustrophobia and would be unable to do the MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "2", "screening_gender": "N/A", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31406": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "07/14/22-pt said to call back later she is driving. \r\n07/18/22-sent econsent \r\n07/22/22-Husband took a message. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31407": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt requested a copy of the consent form to look over. \r\nPt states that she will be in and out of town for the next 8 wks and does not have time to participate. \r\n", "reason_not_interested": "5|4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31408": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPt states that she is moving and had her surgery postponed to January of next year. Sent her a copy of the consent form to look over and will reach out towards the end of the year. \r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31409": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that she has panic attacks with MRIs and prefers not to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31410": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/14/22-pt stated they are not interested ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31411": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/18/22-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31412": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/18/22-particpant stated they are not interested ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31413": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20/22-lvm\r\nparticipant stated they cannot drive to the city. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31414": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20- LVM\r\n08/03- LVM\r\nCalled pt several times with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31415": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20/22-emailed a copy of consent form \r\n08/03/22-stated to call back on Friday \r\n08/05/22-partcipant stated she lives too far away.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31416": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20/22-lvm\r\n07/26/22-partcipant stated they are not interested", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31417": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is on vacation. Sent a copy of the consent form for him to look over. \r\nUnable to contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31418": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20/22-partcipant said not interested", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31419": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20/22-lvm\r\nPt states she lives too far and doesn't want to make the time to come in for visits. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31420": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt would like time to think about it. Sent a copy of consent form for her to look over. \r\nUnable to make contact. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31421": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20/22-partcipant stated that they are not interested in participating.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31422": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/2022-partcipant stated she will not drive to rush.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31423": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/20/22 - sent a copy of the consent form \r\n07/22/22-participant stated that the surgery was cancelled. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31424": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states they are already enrolled on another study and he does not want to be enrolled in more than one. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31425": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that I have the wrong number. I verified phone #s in EPIC and ATHENA, they don't show anything different. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31426": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Participant is interested in participating. We are waiting to see when her pre op visit is scheduled to consent and schedule her baseline visit. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31427": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was occupied and asked that I call him back later today.\r\n08/09- LVM\r\nLeft multiple vm with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31428": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\n07/26- LVM\r\n07/27- pt requested a copy of consent form to look over. \r\n08/11- Needed to resend copy of consent form.\r\n08/12- lvm\r\n08/23- pt sent an email declining to participate. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31429": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that they have too much anxiety and would not be a good candidate because of that. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31430": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt just had sinus surgery and feels like she has too much going on before her knee surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31431": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/25/22-not interested ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31432": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/26/22-lvm\r\n07/28/22-pt declined, too far to drive \r\n", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31433": {"age": "76", "consent_process_form_complete": "2", "date_and_time": "2022-07-27 10:37", "date_of_contact": "2022-07-26", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient refuses to drive to Chicago. Patient refuses to complete the MRI portion of the study visit. ", "ewdateterm": "2022-08-04", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10435", "obtain_date": "2022-07-27", "participation_interest": "2", "ptinterest_comment": "07/26/22-Sent copy of consent form ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-10", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-09-21", "sp_v3_3mo_date": "2022-11-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31434": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/26/22-MB is full, could not leave a message \r\n08/01/22-MB is full, could not leave a message \r\n08/09/22-lvm\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31435": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/26/22-participant stated to call back later he is on a train. \r\n08/01/22-lvm\r\n08/12/22-MB is full\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31436": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/26/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31437": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/26/22-participant stated she does not have time before her surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31438": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/28/22-participant stated they are not willing to do the MRI machine and do not have the time for it either. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31439": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "07/28/22-pt stated they will call back", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31440": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "07/28/22-pt stated they do not have the time and are not willing to do the MRI", "reason_not_interested": "4|3|0", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31441": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "008/01/22-participant stated they are not interested in participating in the study.", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31442": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/03/22-pt hung up \r\n08/08/22-sent a copy of econsent form\r\n08/18/22-lvm\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31443": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/03/22- participant stated to call back at a later time \r\n08/09/22-participant stated they do not have time to come in before their surgery date. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31444": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not want nor has the time to participate. ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31445": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/03/33-sent a copy of the consent form \r\n08/23/22-declined, does not have the time before surgery to come in.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31446": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt called back and states she does not have time to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31447": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/03/22-lvm\r\n08/09/22-lvm\r\n08/17/22-lvm\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31448": {"age": "52", "consent_process_form_complete": "2", "date_and_time": "2022-08-03 11:43", "date_of_contact": "2022-08-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10444", "obtain_date": "2022-08-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-12", "sp_v1_preop_date": "2022-08-09", "sp_v2_6wk_date": "2022-09-23", "sp_v3_3mo_date": "2022-11-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31449": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/03/22-patient stated they do not have the time ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31450": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she'd like to think about it and would call me if she is interested in participating. \r\nPt never contacted us regarding study. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31451": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient thinks she might have Covid and has a lot to do before surgery. ", "reason_not_interested": "4|1", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31452": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that he has too much going out and is feeling burnt out. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31453": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Tried calling patient and phone number is no longer in service. No other number listed on EPIC OR ATHENA. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31454": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2022-08-04 07:54", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10445", "obtain_date": "2022-08-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-22", "sp_v1_preop_date": "2022-08-09", "sp_v2_6wk_date": "2022-10-03", "sp_v3_3mo_date": "2022-11-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31455": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt states they are not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31456": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt requested a copy of the consent form to look over. \r\nPatient was on a call and asked that I call them back. \r\nHad to resend consent form and will call back the pt next week. \r\nPt states he thought about it and feels that he has too much to do prior to surgery and does not want to participate. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31457": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to contact patient", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31458": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/09/22-lvm\r\n08/17/22-participant declined due to MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31459": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/09/22-Participant stated that they are not interested in participating. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31460": {"age": "73", "consent_process_form_complete": "2", "date_and_time": "2022-08-22 15:13", "date_of_contact": "2022-08-10", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10452", "obtain_date": "2022-08-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-01", "sp_v1_preop_date": "2022-08-30", "sp_v2_6wk_date": "2022-10-13", "sp_v3_3mo_date": "2022-12-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31461": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not want to make the trip into Chicago for these visits. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31462": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient's voicemail is not setup.\r\n08/22- pt is in Florida right now and asked that I call her back on Thursday.\r\nLeft several messages with no call back.\r\n\r\n\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31463": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has a lot on her plate at the moment and we do not have MRI availability at the time she would need. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31464": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states that she has a lot to do before her surgery. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31465": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31466": {"age": "50", "consent_process_form_complete": "2", "date_and_time": "2022-08-11 12:13", "date_of_contact": "2022-08-11", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10447", "obtain_date": "2022-08-11", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-24", "sp_v1_preop_date": "2022-08-15", "sp_v2_6wk_date": "2022-10-05", "sp_v3_3mo_date": "2022-11-24", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "31467": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke to pt's husband and he states pt has an emergency in Europe and needs to cancel surgery and they would prefer to focus on that right now. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31468": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\n08/23- lvm\r\nLeft several messages with no call back.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31469": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\n08/23- pt requested copy of consent form and asked that I call her back tomorrow.\r\nPt states that she doesn't like the idea of the tests that need to be done and would prefer no to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31470": {"age": "68", "consent_process_form_complete": "2", "date_and_time": "2022-08-23 13:23", "date_of_contact": "2022-08-11", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10453", "obtain_date": "2022-08-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-09", "sp_v1_preop_date": "2022-09-06", "sp_v2_6wk_date": "2022-10-21", "sp_v3_3mo_date": "2022-12-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31471": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was boarding a flight and asked that I call him back next week. Requested a copy of the consent form to look over. \r\n08/15- LVM\r\n08/26- Pt unwilling to do MRI", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31472": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nUnable to make contact with patient. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31473": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/12/22-participant declined, stated she lives too far.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31474": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/12/22-LVM\r\n08/19/22-LVM\r\n\r\nCould not reach before surgery. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31475": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "08/12/22-sent a copy of the consent form.\r\n08/15/22-pt stated they are still unsure, asked to give a call back later in the week.\r\n08/18/22-MB full, could not leave a voice message\r\n\r\nCould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "81", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31476": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/12/22-Participant stated their surgery is being postponed.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31477": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/12/22-no mb\r\n08/30/22-no mb\r\n09/07/22-no mb\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31478": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/12/-22-patient stated they are not interested in participating. ", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31479": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/12/22-lvm \r\n08/30/22-lvm\r\n08/31/22-pt gave a call back and stated she is not interested. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31480": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/12/22-participant states she lives in Indiana and its too far to drive up.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31481": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/16/22-pt stated the study it is too far away.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31482": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/16/22-pt stated no. Not interested in research", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31483": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/16/22-lvm\r\n08/23/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31484": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/16/22-pt stated they don't have enough time to come in for a baseline visit prior to surgery.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31485": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/16/22-daughter said she will be back home later to give a call back.\r\n08/30/22-pt stated she has a sick husband and it is too far of a drive.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31486": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/17/22-sent a copy of the consent form. Home phone # is disconnected. \r\n08/23/22-paricipant stated they need more time to look at consent form. \r\n08/24/22-participant stated they want their mother to look over, asked for more time.\r\n09/1/22-participant declined being in the study.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31487": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "08/17/22-lvm\r\n08/23/22-lvm\r\n08/29/22-sent a copy of the consent form \r\n9/2/22-pt declined being in the study. Stated that they live too far away ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31488": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/24/22-participant does not want to drive up to chicago for the visits. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31489": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2022-08-18 16:28", "date_of_contact": "2022-08-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10449", "obtain_date": "2022-08-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-01", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-10-13", "sp_v3_3mo_date": "2022-12-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "31490": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/19/22-pt stated they do not want to make extra trips to rush.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31491": {"age": "56", "consent_process_form_complete": "2", "date_and_time": "2022-09-20 11:23", "date_of_contact": "2022-08-22", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10476", "obtain_date": "2022-09-20", "participation_interest": "2", "ptinterest_comment": "LVM\r\nUnable to make contact with patient. \r\n9/19/2022- sent a copy of the consent form ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-12", "sp_v1_preop_date": "2022-10-04", "sp_v2_6wk_date": "2022-11-22", "sp_v3_3mo_date": "2023-01-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31492": {"age": "74", "consent_process_form_complete": "2", "date_and_time": "2022-08-22 13:41", "date_of_contact": "2022-08-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10451", "obtain_date": "2022-08-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-14", "sp_v1_preop_date": "2022-08-25", "sp_v2_6wk_date": "2022-10-26", "sp_v3_3mo_date": "2022-12-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31493": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\n08/29 LVM\r\n09/07 LVM\r\nLeft several messages with no call back. \r\n\r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31494": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unavailable to talk. Wife asked that I call back another time. \r\n08/29 LVM\r\n09/07 LVM\r\nLeft several messages with no call back. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31495": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Son will have patient call me. \r\n09/01/2022- Patient is not a good candidate because need assistances and her son lives out of the state. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31496": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that he currently has too much on his plate and has no time at the moment. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31497": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt was busy at work and asked that I call him back on Thursday. \r\n08/25 lvm\r\n09/07 lvm\r\nLeft several messages with no call back.\r\n\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31498": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that she cannot participate because her husband works full time and he's the only one she'll allow to drive her to her visits. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31499": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt isn't interested in participating. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31500": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLeft several messages with no call back.", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31501": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\n08/29 LVM\r\nLeft several messages with no contact.\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31502": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\n08/30 LVM\r\n09/07 LVM\r\nLeft several messages with no call back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31503": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\n08/30 LVM\r\n09/07 LVM\r\nLeft several messages with no call back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31504": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/23/22-lvm\r\n09/07/22-lvm\r\n\r\nCould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31505": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLeft message with no call back. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31506": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "2022-09-08", "erep_ae_desc": "Patient states that he has ringing in both ears and has some trouble hearing due to the MRI. ", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-09-08 14:42:13", "erep_onset_date": "2022-09-08 12:26", "erep_outcome": "", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "69", "consent_process_form_complete": "2", "date_and_time": "2022-08-24 10:58", "date_of_contact": "2022-08-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10458", "obtain_date": "2022-08-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-19", "sp_v1_preop_date": "2022-08-29", "sp_v2_6wk_date": "2022-10-31", "sp_v3_3mo_date": "2022-12-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31507": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/23/22-lvm\r\n08/26/22-sent a copy of consent form\r\n08/31/22-declined being in the study, no longer interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31508": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/24/22-lvm\r\n9/2/22-patient declined, too far ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "83", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31509": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/24/22-lvm\r\n09/2/22-pt stated shes at meeting give a call back \r\n9/19/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31510": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "08/24/22-sent a copy of the consent form.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31511": {"age": "57", "consent_process_form_complete": "2", "date_and_time": "2022-08-24 10:30", "date_of_contact": "2022-08-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10457", "obtain_date": "2022-08-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-13", "sp_v1_preop_date": "2022-09-12", "sp_v2_6wk_date": "2022-10-25", "sp_v3_3mo_date": "2022-12-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31512": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31513": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt called back and requested a copy of the consent form to look over. \r\n08/31- LVM\r\nUnable to make contact with pt again. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31514": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nPt called back and requested a copy of the consent form to look over. \r\nLvm\r\nUnable to make contact again. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31515": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM\r\nLeft message with no call back. \r\n", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31516": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-08-24 16:33", "date_of_contact": "2022-08-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10459", "obtain_date": "2022-08-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-21", "sp_v1_preop_date": "2022-09-15", "sp_v2_6wk_date": "2022-11-02", "sp_v3_3mo_date": "2022-12-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31517": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/25/22-sent a copy of the consent form. \r\n0826/22-lvm\r\n08/30/22-pt declined, stated his wife is handicap and noone will be able to take care of her. Also stated it takes too much time ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31518": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/25/22-patient stated she hates driving to the city with a passion.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31519": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/25/22-sent a copy of the consent. \r\n09/1/22-lvm\r\n9/2/22-pt stated cannot make it in for the baseline ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31520": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/25/22-pt stated she hates completing surveys.", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31521": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/25/22-pt stated alot is going on in her life right now and she can't focus on research.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31522": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/25/22-pt stated its too far of a drive. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31523": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/25/22-pt stated she is pushing her D.O.S. back to April", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31524": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/25/22-pt stated its too far of a drive. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31525": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM\r\nPt called back today and states that he has cancelled is knee surgery for now. He plans on having a hip replacement first and does not know when he will be rescheduling for the knee. He would like for us to keep in touch an perhaps he'll be willing to participate in the future. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31526": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31527": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31528": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31529": {"age": "39", "consent_process_form_complete": "2", "date_and_time": "2022-09-06 09:40", "date_of_contact": "2022-08-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10464", "obtain_date": "2022-09-06", "participation_interest": "2", "ptinterest_comment": "08/30/22-sent a copy of consent form ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "39", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-28", "sp_v1_preop_date": "2022-09-13", "sp_v2_6wk_date": "2022-11-08", "sp_v3_3mo_date": "2022-12-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31530": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/30/22-pt states she's in a lot of pain currently and not sure how she will react to more pain testing.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31531": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/30/22-lvm\r\n9/7/22-lvm\r\n9/19/22-Participant declined, stated they can not understand English that well.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31532": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/30/22-lvm\r\n09/7/22-pt declined, too far ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31533": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/30/22- Stated he's a caregiver for his wife and canno't take the time off to go to the study.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31534": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "08/31/22-lvm\r\n09/7/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31535": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/31/22-participant declined ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31536": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "08/31/22-lvm\r\n9/1/22-sent a copy of the consent form \r\n9/7/22-pt declined, not interested ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31537": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "08/31/22-lvm\r\n09/01/22-sent copy of consent form ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31538": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/1/22-lvm\r\n09/7/22-pt stated to give a call back ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31539": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/1/22-Participant declined being in the study ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31540": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/1/22-MB not set up ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31541": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/01/2022- She is under a lot of stress now and she does not have enough time to participate in the study.", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31542": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/2/22-declined, not interested ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31543": {"age": "52", "consent_process_form_complete": "2", "date_and_time": "2022-09-09 11:46", "date_of_contact": "2022-09-02", "dem_race": "7", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10469", "obtain_date": "2022-09-09", "participation_interest": "1", "ptinterest_comment": "09/02/2022- Sent a copy of consent form.\r\n09/08/2022- no available today. Call back 09/09/2022", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-21", "sp_v1_preop_date": "2022-09-19", "sp_v2_6wk_date": "2022-11-02", "sp_v3_3mo_date": "2022-12-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31544": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/02/2022- Sent a copy of consent form.\r\n09/09/2022- LVM\r\n09/15/2022- LVM\r\n09/21/2022- After sent copy of consent form, could not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31545": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/2/22-lvm\r\n9/7/22-lvm\r\n\r\ncould not reach before surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31546": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/02/2022- Was contacted, the person answered said is wrong number.\r\n09/06/2022- she is not interested to participate in the study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "42", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31547": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/2/22-patient stated its too far of a drive", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31548": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/02/2022- Patient is not interested in the study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31549": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/02/2022- LVM\r\n09/06/2022-LVM\r\n09/20/2022-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31550": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/02/2022- sent a copy of consent form \r\n09/07/2022-LVM\r\n09/08/2022- call back at 2 pm.\r\n09/08/2022-After further explanation about informed consent patient decided not participate. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31551": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/2/22-Lvm\r\n9/7/22-Pt declined stated that it is too far of a drive and they are already worried about going to the city for their surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31552": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/2/22-sent a copy of the consent form \r\n09/6/22-pt stated she is no longer interested in participating ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31553": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/02/2022- Sent a copy of consent form.\r\n09/08/2022- Call back 09/09/2022, pt. need more time to check the copy of consent form.\r\n09/09/2022- LVM.\r\nShe is in Florida and she will return the day previous her Surgery. ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31554": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/02/2022- she will check her daughter availability/ sent a copy of consent form.\r\n09/09/2022- LVM \r\n9/12/2022- LVM\r\nFamily issues. ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31555": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/02/2022- Patient declined, said she is old to do all the study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31556": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/07/2022- Patient hospitalized. Son answer phone call and make decision on his behalf and declined his father participate in the study.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31557": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09-07-2022- LVM\r\n9/12/2022 - LVM\r\n9/20/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "46", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31558": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09-07-2022- LVM\r\n09-12-2022- Call back 9/13/2022 at 9 am.\r\n09-13-2022- LVM\r\n9/20/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31559": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09-07-2022- LVM\r\n09-12-2022- LVM\r\n09/20/2022- PT. declined, does not have time.\r\n ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31560": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09-07-2022- Patient declined to participate in the study. He will change surgery date because healthy issues.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31561": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/07/2022-LVM.\r\n9/12/2022- too far for him.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31562": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/7/22-call could not go through ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31563": {"age": "61", "consent_process_form_complete": "2", "date_and_time": "2022-09-08 10:30", "date_of_contact": "2022-09-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10467", "obtain_date": "2022-09-08", "participation_interest": "1", "ptinterest_comment": "9/7/22-sent a copy of the consent form.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-07", "sp_v1_preop_date": "2022-09-23", "sp_v2_6wk_date": "2022-11-17", "sp_v3_3mo_date": "2023-01-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31564": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-pt states she is claustrophobic and cannot do the MRI.", "reason_not_interested": "3", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31565": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-sent a copy of the consent form \r\n9/8/22-pt declined, not interested in research", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31566": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/07/2022- Pt. does not have enough time, has a lot of stress for his upcoming surgery.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31567": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/7/22-lvm\r\n9/19/22-Patients wife answered the phone, stated to call back at a later time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31568": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-pt declined, too much going on ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31569": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-pt declined, too far ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31570": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-pt declined, too far ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31571": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/07/2022- She does not have time today. Call back 09/08/2022 on afternoon.\r\n09/08/2022- Pt. declined, does not want to drive to Midwest Orthopedics. ", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31572": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-09-13 14:05", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10473", "obtain_date": "2022-09-13", "participation_interest": "2", "ptinterest_comment": "9/07/2022- Sent a copy of the consent form. Call Back 9/8/2022 at 12 pm.\r\n9/08/2022- Call back 9/9/2022 at 12 pm.\r\n9/9/2022- LVM.\r\n9/12/2022- Call back 9/13/2022 at 1 pm.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-07", "sp_v1_preop_date": "2022-09-27", "sp_v2_6wk_date": "2022-11-17", "sp_v3_3mo_date": "2023-01-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31573": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/07/2022- LVM\r\n09/13/2022- LVM\r\n09/22/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31574": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-pt declined, does not have time ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "84", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31575": {"age": "71", "consent_process_form_complete": "2", "date_and_time": "2022-09-19 16:14", "date_of_contact": "2022-09-07", "dem_race": "2", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10475", "obtain_date": "2022-09-19", "participation_interest": "2", "ptinterest_comment": "09/07/2022- She will call back.\r\n09/13/2022- sent a copy of the Informed consent.\r\n09/16- pt reached out to Dr. Berger's team, states interest and would like for us to call her back on Monday. ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-30", "sp_v1_preop_date": "2022-09-26", "sp_v2_6wk_date": "2022-11-10", "sp_v3_3mo_date": "2022-12-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31576": {"age": "71", "consent_process_form_complete": "2", "date_and_time": "2022-09-09 13:42", "date_of_contact": "2022-09-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10470", "obtain_date": "2022-09-09", "participation_interest": "1", "ptinterest_comment": "9/7/22-sent a copy of the consent form ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-07", "sp_v1_preop_date": "2022-10-05", "sp_v2_6wk_date": "2022-11-17", "sp_v3_3mo_date": "2023-01-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "31577": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-sent a consent form \r\n9/8/22- pt declined, states she doesn't want to be in anymore pain.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31578": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-mb full\r\n9/19/22-mb full \r\n9/20/22-pt declined, stated she is not interested.", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31579": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31580": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/7/22-lvm", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31581": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/7/22-pt declined, not interested ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31582": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that he doesn't want to make an extra visit and would prefer not to participate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31583": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states she is a caregiver for her husband with dementia and has way too much on her plate. ", "reason_not_interested": "5", "redcap_data_access_group": "rush_university_me", "screening_age": "78", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31584": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/07/2022- Pt. not interested to participate in the research.", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31585": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/07/2022- LVM\r\n09/19/2022- LVM ", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31586": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/09/2022- LVM\r\n09/22/2022- phone number disconnected.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31587": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/09/2022-LVM\r\n09/22/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31588": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/12/2022- sent a copy of the consent form\r\n9/19/2022- Pt. not interested in the study", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31589": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/12/2022- Sent a copy of the consent form . Call back 09/14/2022 at 2 pm.\r\n9/14/2022- Pt. decline, too far (she live in Delaware) ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "48", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31590": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/12/2022- LVM\r\n09/21/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31591": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/13/2022- Declined, Not interested.", "reason_not_interested": "5|0", "redcap_data_access_group": "rush_university_me", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31592": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/13/2022- Call back 9/14/2022 at 3 pm\r\n9/14/2022- LVM.", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31593": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/19/22-LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31594": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/19/2022- call back today at 4 pm.\r\n9/19/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31595": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "80", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31596": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/19/22-pt declined, stated too far of a drive. ", "reason_not_interested": "4", "redcap_data_access_group": "rush_university_me", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31597": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "9/20/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31598": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/20/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31599": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/21/2022- PT. declined. Not interested in research ", "reason_not_interested": "0", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31600": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "09/21/2022- Pt. Declined, does not have time.", "reason_not_interested": "4|0", "redcap_data_access_group": "rush_university_me", "screening_age": "53", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31601": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/21/2022- Sent a copy of the consent form", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31602": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/21/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31603": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "09/21/2022- Sent a copy of the consent form", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31604": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/21/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "57", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31605": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "09/22/2022/- Sent a copy of the consent form.\r\n09/23/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31606": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "09/22/2022- Sent a copy of the consent form\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31607": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/22/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "31608": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "09/22/2022- LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "rush_university_me", "screening_age": "51", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to travel all the way to Evanston - too far from where he lives.", "reason_not_interested": "4|1", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40002": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "3", "ethnic": "2", "ewcomments": "Patient's mother died and he couldn't find time to come in for the 3 month follow up visit.", "ewdateterm": "2021-09-29", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "1", "main_record_id": "10042", "obtain_date": "2021-05-28", "participation_interest": "2", "ptinterest_comment": "Spoke to pt on 5/28, sent consent form to review", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-23", "sp_v1_preop_date": "2021-06-10", "sp_v2_6wk_date": "2021-08-04", "sp_v3_3mo_date": "2021-09-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined participation due to only wanting to have tests that are needed for his surgery.", "reason_not_interested": "4|0", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is very claustrophobic ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Dr. Wixson spoke to pt, and she expressed interest\r\nEG LM 5/28\r\nEG LM on 6/9/21", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"Not up for it\"", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't have time before his surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "VM has been left", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "VM has been left", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is unavailable to do study visit before her surgery", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40012": {"age": "54", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10047", "obtain_date": "2021-06-14", "participation_interest": "2", "ptinterest_comment": "Very willing to participate ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-06", "sp_v1_preop_date": "2021-06-28", "sp_v2_6wk_date": "2021-08-17", "sp_v3_3mo_date": "2021-10-06", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"Too busy, not enough time\"", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Takes care of her grandkids during the day, no time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too busy, does not want to fill out more questionnaires ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40019": {"age": "62", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10061", "obtain_date": "2021-06-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-13", "sp_v1_preop_date": "2021-07-07", "sp_v2_6wk_date": "2021-08-24", "sp_v3_3mo_date": "2021-10-13", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sole caretaker for her elderly mother", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40021": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10054", "obtain_date": "2021-06-18", "participation_interest": "2", "ptinterest_comment": "Patient prefers to be called after 2:00pm", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-01", "sp_v1_preop_date": "2021-06-23", "sp_v2_6wk_date": "2021-08-12", "sp_v3_3mo_date": "2021-10-01", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Out of town until just before surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Already involved in another research study", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much time commitment ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40027": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-09-03 13:35:12", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient was asked at time of enrollment if he was planning on having his second knee replaced within three months of his first, and he said no. After having his first knee replaced, he has since scheduled to have his second knee done within 90 days. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}}, "age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "2", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10050", "obtain_date": "2021-06-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-02", "sp_v1_preop_date": "2021-06-22", "sp_v2_6wk_date": "2021-08-13", "sp_v3_3mo_date": "2021-10-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to significant claustrophobia. Requires tranquilizers to have an open MRI.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Evanston is too far away", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient is interested, but wants to go to Rush as he lives closer ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined due to having too much going on and he is still working", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined due to not being able to take time off", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Call patient after 2pm", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is unavailable prior to his surgery to come in", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40035": {"age": "79", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10053", "obtain_date": "2021-06-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-30", "sp_v1_preop_date": "2021-06-24", "sp_v2_6wk_date": "2021-08-11", "sp_v3_3mo_date": "2021-09-30", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is too busy", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to requiring too much time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to it being too much of a time commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40039": {"age": "80", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10059", "obtain_date": "2021-06-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-14", "sp_v1_preop_date": "2021-07-09", "sp_v2_6wk_date": "2021-08-25", "sp_v3_3mo_date": "2021-10-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much time and distance", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40041": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10060", "obtain_date": "2021-06-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-15", "sp_v1_preop_date": "2021-07-06", "sp_v2_6wk_date": "2021-08-26", "sp_v3_3mo_date": "2021-10-15", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40042": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient is working and doesn't have time to take half day off, will think about it but most likely a no.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study was too involved", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is going through breast cancer treatment, doesn't have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic, and doesn't have time", "reason_not_interested": "4|3", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much time involved ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40049": {"age": "55", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10073", "obtain_date": "2021-07-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-19", "sp_v1_preop_date": "2021-07-13", "sp_v2_6wk_date": "2021-08-30", "sp_v3_3mo_date": "2021-10-19", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is not eligible due to middle ear implant we learned about after speaking to patient and checking with manufacturer ", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Evanston is too far and too busy", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LM TKA-R (7/13/2021)\r\nTKA-L patient declined participation due to still working and not having the time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "attempted to leave VM, but none was set up", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "VM x2", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40058": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10070", "obtain_date": "2021-07-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-15", "sp_v1_preop_date": "2021-07-08", "sp_v2_6wk_date": "2021-08-26", "sp_v3_3mo_date": "2021-10-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too busy to go Evanston; Getting ready to retire\r\n", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40060": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10071", "obtain_date": "2021-07-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-19", "sp_v1_preop_date": "2021-07-14", "sp_v2_6wk_date": "2021-08-30", "sp_v3_3mo_date": "2021-10-19", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Watches her granddaughter and does not have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Hung up immediately ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study is too involved", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to time commitment while getting ready for surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to time commitment while getting ready for surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40067": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-30", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10077", "obtain_date": "2021-07-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-27", "sp_v1_preop_date": "2021-07-26", "sp_v2_6wk_date": "2021-09-07", "sp_v3_3mo_date": "2021-10-27", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being busy with her other appointments and Evanston being too far away. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40070": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-14 13:45:25", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Attempt to reach patient earlier.", "erep_protdev_desc": "Patient came in 7 days after the 6 week post op window. Was unable to reach patient prior.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "49", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10076", "obtain_date": "2021-07-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-05", "sp_v1_preop_date": "2021-07-29", "sp_v2_6wk_date": "2021-09-16", "sp_v3_3mo_date": "2021-11-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to lack of interest and does not want to do it.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40072": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-14 13:56:38", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None.", "erep_protdev_desc": "Patient came in 8 days after their 6 week follow up visit window. Patient lives in Wyoming and flew in after the 6 week window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "2021-07-28", "erep_ae_desc": "Patient went into scanner and became claustrophobic and hit the emergency squeeze button. Patient was pulled out of the scanner and the scan was stopped.", "erep_ae_relation": "", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-23 11:56:26", "erep_onset_date": "2021-07-28 12:17", "erep_outcome": "", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10084", "obtain_date": "2021-07-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-04", "sp_v1_preop_date": "2021-07-28", "sp_v2_6wk_date": "2021-09-15", "sp_v3_3mo_date": "2021-11-04", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40073": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to it being too much of a commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "patient is consider it", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40075": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10075", "obtain_date": "2021-07-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-03", "sp_v1_preop_date": "2021-07-23", "sp_v2_6wk_date": "2021-09-14", "sp_v3_3mo_date": "2021-11-03", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40076": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "severe claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40077": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10074", "obtain_date": "2021-07-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-02", "sp_v1_preop_date": "2021-07-30", "sp_v2_6wk_date": "2021-09-13", "sp_v3_3mo_date": "2021-11-02", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to it being too much for him ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40081": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10092", "obtain_date": "2021-07-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-05", "sp_v1_preop_date": "2021-08-02", "sp_v2_6wk_date": "2021-09-16", "sp_v3_3mo_date": "2021-11-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40082": {"age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-04-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10080", "obtain_date": "2021-07-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-05", "sp_v1_preop_date": "2021-07-22", "sp_v2_6wk_date": "2021-09-16", "sp_v3_3mo_date": "2021-11-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study is too involved ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40085": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "VM x2", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40086": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "VMx2 7/7;7/8\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40087": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "VMx2 7/8\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "3", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40088": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Need detail on stent from card; VMx2 7/8\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "voice mail", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40091": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40092": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study is too much work", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40093": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LEFT VOICE MAIL", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40094": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LEFT VOICE MAIL", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40095": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LEFT VOICE MAIL", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40096": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Widowed; Limited driving; No internet access\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40097": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Limited in traveling; Doesn't use e-mail or internet\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40098": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to travel to Evanston\r\n", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "85", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40099": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40100": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40101": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives in Wisconsin; Too far\r\n", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40102": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40103": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Call back Wed 2-4pm 7/7; Keep trying\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40104": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40105": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Evanston too far; ?Rush/UIC; Call back next week\r\n", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40106": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "10am Friday;VM\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40107": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "VMx2\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40108": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives in Elmhust; Too far\r\n", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40109": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "No voice mail; Called x3 - No answer\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40110": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40111": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40112": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to living in Wisconsin and the distance being too far.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40113": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being the primary caregiver for his wife and not being able to leave her alone.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40114": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40115": {"age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-15", "dem_race": "5", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10086", "obtain_date": "2021-07-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-11", "sp_v1_preop_date": "2021-08-03", "sp_v2_6wk_date": "2021-09-22", "sp_v3_3mo_date": "2021-11-11", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40116": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "he decided it was too involved and doesn't want to go through 2 MRIs.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40117": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to it being too involved.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40118": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40119": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10085", "obtain_date": "2021-07-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-05", "sp_v1_preop_date": "2021-07-29", "sp_v2_6wk_date": "2021-09-16", "sp_v3_3mo_date": "2021-11-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40120": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient is thinking about it and will get back to Dr. Wixson", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40121": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10095", "obtain_date": "2021-08-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-16", "sp_v1_preop_date": "2021-08-04", "sp_v2_6wk_date": "2021-09-27", "sp_v3_3mo_date": "2021-11-16", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40122": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having decided at her age that she would only do things she wants to do.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40123": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10094", "obtain_date": "2021-07-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-10", "sp_v1_preop_date": "2021-08-05", "sp_v2_6wk_date": "2021-09-21", "sp_v3_3mo_date": "2021-11-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40124": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10093", "obtain_date": "2021-07-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-18", "sp_v1_preop_date": "2021-08-12", "sp_v2_6wk_date": "2021-09-29", "sp_v3_3mo_date": "2021-11-18", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40125": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Going out of town, unable to participate ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40126": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Husband just had surgery, and she doesn't have time to do study before surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40127": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too busy and may cancel", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40128": {"adverse_effects": {"1": {"erep_action_taken": "Continue to be in the study. No MRI in the future.", "erep_ae_date": "", "erep_ae_desc": "Patient became claustrophobic during the MRI scan and pressed the emergency squeeze button and the scan was stopped. ", "erep_ae_relation": "", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-23 11:58:31", "erep_onset_date": "2021-08-09 12:19", "erep_outcome": "", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10091", "obtain_date": "2021-07-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-18", "sp_v1_preop_date": "2021-08-09", "sp_v2_6wk_date": "2021-09-29", "sp_v3_3mo_date": "2021-11-18", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40129": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient will be leaving Illinois for the winter soon and cannot participate ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40130": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40131": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " the patient declined participation due to not wanting to have to go for extra visits at Evanston hospital", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40132": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10100", "obtain_date": "2021-08-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-16", "sp_v1_preop_date": "2021-08-10", "sp_v2_6wk_date": "2021-09-27", "sp_v3_3mo_date": "2021-11-16", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40133": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being out of town before her surgery and Evanston is too far from where she lives near the Wisconsin border. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40134": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "the patient wanted to think about it. Dr Wixson sent her the A2CPS information brochure through NSC and will call her back next week.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40135": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "surgery canceled", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40136": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too busy to take the time since she has kids, college, is working and has not extra time. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40137": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too far ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40138": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40139": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient doesn't have time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40140": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia and presence of an implanted pain stimulator", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40141": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40142": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "312-933-9683", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40143": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40144": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too much of a time commitment and not being interested", "reason_not_interested": "4|0", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40145": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too far", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40146": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40147": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "wants to think about it over the weekend\r\n- patient declined participation due to it being too much for her to commit to", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40148": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40149": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40150": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having a special needs daughter at home that she cannot leave alone for the time needed for the testing. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40151": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "declined participation due to lack of time since he is a solo practice attorney working up until surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40152": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia\r\n", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40153": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40154": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40155": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40156": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Way too busy to take the time\r\n", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40157": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40158": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40159": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40160": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40161": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40162": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient said she had no time at all to come in before her scheduled surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40163": {"adverse_effects": {"2": {"erep_action_taken": "Patient will continue to be in study. There are no more in person visits for this patient and she wishes to remain in the study.", "erep_ae_date": "2022-03-08", "erep_ae_desc": "Patient had her blood drawn at the phlebotomy lab, by a trained phlebotomist. After the blood was drawn, the patient said that it was more painful than normal. Some time later there was some swelling at the blood draw location. Patient then called the next day and said she had a hematoma where the blood draw occurred. She said it decreased in size when she applied pressure. All relevant information was relayed to PI, Dr. Wixson. ", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-03-09 11:26:57", "erep_onset_date": "2022-03-08 12:21", "erep_outcome": "Patient said it seemed to be resolving and would contact Northshore if it got worse. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "2", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10220", "obtain_date": "2021-11-11", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-01", "sp_v1_preop_date": "2021-11-24", "sp_v2_6wk_date": "2022-01-12", "sp_v3_3mo_date": "2022-03-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40164": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40165": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40166": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too involved and doesn't want to go to Evanston\r\n", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40167": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VMx2", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40168": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40169": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40170": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40171": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VMx2", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40172": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40173": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM, MedHx OK; Cancelled call 7/23; VM7/29\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40174": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VM", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40175": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Surgery 7/28/21\r\nDr. Wixson VMx2 7/7;7/8\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40176": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Dr. Wixson left VMx2\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40177": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After reviewing the consent form, patient was concerned about data security. ", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40178": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to it being too much for her to commit to", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40179": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10101", "obtain_date": "2021-08-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-01", "sp_v1_preop_date": "2021-08-17", "sp_v2_6wk_date": "2021-10-13", "sp_v3_3mo_date": "2021-12-01", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40180": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10116", "obtain_date": "2021-08-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-02", "sp_v1_preop_date": "2021-08-26", "sp_v2_6wk_date": "2021-10-14", "sp_v3_3mo_date": "2021-12-02", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40181": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10105", "obtain_date": "2021-08-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-30", "sp_v1_preop_date": "2021-08-20", "sp_v2_6wk_date": "2021-10-11", "sp_v3_3mo_date": "2021-11-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40182": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40183": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Evanston is too far from him.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40184": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40185": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is canceling surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40186": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has to work every day leading up to surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40187": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10104", "obtain_date": "2021-08-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-08", "sp_v1_preop_date": "2021-08-19", "sp_v2_6wk_date": "2021-10-20", "sp_v3_3mo_date": "2021-12-08", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40188": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient doesn't have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40189": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too disabled by other problems to get to Evanston.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40190": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40191": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt declined participation due to previous claustrophobic experiences in an MRI machine.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40192": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10117", "obtain_date": "2021-08-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-02", "sp_v1_preop_date": "2021-08-27", "sp_v2_6wk_date": "2021-10-14", "sp_v3_3mo_date": "2021-12-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40193": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to leaving for Palm Springs 8 weeks after surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40194": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having too much else going on before her surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40195": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10113", "obtain_date": "2021-08-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-14", "sp_v1_preop_date": "2021-09-08", "sp_v2_6wk_date": "2021-10-26", "sp_v3_3mo_date": "2021-12-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40196": {"age": "51", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10118", "obtain_date": "2021-08-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-08", "sp_v1_preop_date": "2021-08-30", "sp_v2_6wk_date": "2021-10-20", "sp_v3_3mo_date": "2021-12-08", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40197": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too far to travel and not interested", "reason_not_interested": "4|0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40198": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is too busy before surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40199": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10112", "obtain_date": "2021-08-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-14", "sp_v1_preop_date": "2021-08-25", "sp_v2_6wk_date": "2021-10-26", "sp_v3_3mo_date": "2021-12-14", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40200": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10111", "obtain_date": "2021-08-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-13", "sp_v1_preop_date": "2021-09-02", "sp_v2_6wk_date": "2021-10-25", "sp_v3_3mo_date": "2021-12-13", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40201": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "45", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40202": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40203": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "had cosmetic enhancement with microblading of her eyebrows with placement of iron oxide", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40204": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to.", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40205": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Evanston too far", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40206": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40207": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "due to not wanting to do anything extra before her surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40208": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "due to having too much else going on", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40209": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10122", "obtain_date": "2021-09-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-15", "sp_v1_preop_date": "2021-09-02", "sp_v2_6wk_date": "2021-10-27", "sp_v3_3mo_date": "2021-12-15", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40210": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "due to planning on cancelling surgery leaving for Arizona for the winter at end of October", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40211": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40212": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "due to leaving for Florida for the winter 8 weeks after surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40213": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40214": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "not interested", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40215": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "She does not drive and can only participate if transportation can be arranged", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40216": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has mold in her basement and doesn't have time to come in before surgery - soft decline", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40217": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was initially interested, but now is overwhelmed and doesn't have time. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40218": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "compensation inadequate for all that time and having two MRIs.", "reason_not_interested": "2", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40219": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10128", "obtain_date": "2021-09-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-21", "sp_v1_preop_date": "2021-09-07", "sp_v2_6wk_date": "2021-11-02", "sp_v3_3mo_date": "2021-12-21", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40220": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having too much else going on at this time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40221": {"age": "56", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10138", "obtain_date": "2021-09-10", "participation_interest": "2", "ptinterest_comment": "She is a nurse and knowledgeable. Had L TKA Nov 2020 with a lot of pain and difficult recovery. Experiences severe fibromyalgia.. ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-21", "sp_v1_preop_date": "2021-09-13", "sp_v2_6wk_date": "2021-11-02", "sp_v3_3mo_date": "2021-12-21", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40222": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10141", "obtain_date": "2021-09-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-21", "sp_v1_preop_date": "2021-09-17", "sp_v2_6wk_date": "2021-11-02", "sp_v3_3mo_date": "2021-12-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40223": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40224": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to concern about an unnecessary hospital visit with increasing incidence of Delta variant, particularly since his is immunocompromised due to Crohn's disease", "reason_not_interested": "1", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40225": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to leaving town in November for the winter.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40226": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40227": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Evanston is too far away", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40228": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too busy ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40229": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/21 After reviewing the information on the study the patient called back Dr. Wixson and declined participation in the study. No reason given.\r\n\r\nAfter discussing it and clarifying what was involved, she wants to think about and see if she will have time. I sent her the information brochure on the study and will reach out again next week.", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40230": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40231": {"age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10139", "obtain_date": "2021-09-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "3", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-28", "sp_v1_preop_date": "2021-09-14", "sp_v2_6wk_date": "2021-11-08", "sp_v3_3mo_date": "2021-12-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40232": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having just completed a knee pain study at Northwestern that was similar and does not want to do it again.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40233": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to Evanston being too far.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40234": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to fear of increased exposure to the Delta covid-19 variant before her surgery.", "reason_not_interested": "1", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40235": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to transportation issues. Car is in body shop and taking bus too difficult.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "47", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40236": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-07", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10145", "obtain_date": "2021-09-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-29", "sp_v1_preop_date": "2021-09-16", "sp_v2_6wk_date": "2021-11-09", "sp_v3_3mo_date": "2021-12-29", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40237": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40238": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40239": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10137", "obtain_date": "2021-09-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-28", "sp_v1_preop_date": "2021-09-23", "sp_v2_6wk_date": "2021-11-08", "sp_v3_3mo_date": "2021-12-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40240": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too busy.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40241": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia and not wanting to have an MRI", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40242": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient emailed and would like to withdraw from the study. Gave no reason.", "ewdateterm": "2021-09-18", "ewdisreasons": "5|1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10140", "obtain_date": "2021-09-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-04", "sp_v1_preop_date": "2021-10-01", "sp_v2_6wk_date": "2021-11-14", "sp_v3_3mo_date": "2022-01-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40243": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to it being too involved.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40244": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Surgery was canceled ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40245": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40246": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being interested and too far.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40247": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10157", "obtain_date": "2021-09-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-05", "sp_v1_preop_date": "2021-09-28", "sp_v2_6wk_date": "2021-11-15", "sp_v3_3mo_date": "2022-01-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40248": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient called back and declined participation due to having too much going on now.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40249": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having to care for a son-in-law undergoing cancer treatment at UCH.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40250": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being able to take time off from work", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40251": {"age": "54", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-14", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10151", "obtain_date": "2021-09-22", "participation_interest": "2", "ptinterest_comment": "Her car is still being repaired so timing/transportation may be an issue. \r\nLH left message 9/15/21", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-29", "sp_v1_preop_date": "2021-09-27", "sp_v2_6wk_date": "2021-11-09", "sp_v3_3mo_date": "2021-12-29", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40252": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being the type of person who does this type of thing.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40253": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10160", "obtain_date": "2021-09-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-05", "sp_v1_preop_date": "2021-09-28", "sp_v2_6wk_date": "2021-11-15", "sp_v3_3mo_date": "2022-01-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40254": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working and no time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40255": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working and not having time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40256": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much time commitment ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40257": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-18", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10164", "obtain_date": "2021-10-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-12", "sp_v1_preop_date": "2021-10-05", "sp_v2_6wk_date": "2021-11-22", "sp_v3_3mo_date": "2022-01-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40258": {"age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10161", "obtain_date": "2021-09-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-12", "sp_v1_preop_date": "2021-10-04", "sp_v2_6wk_date": "2021-11-22", "sp_v3_3mo_date": "2022-01-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40259": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40260": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10163", "obtain_date": "2021-09-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-12", "sp_v1_preop_date": "2021-10-05", "sp_v2_6wk_date": "2021-11-22", "sp_v3_3mo_date": "2022-01-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40261": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to it being too involved", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40262": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10162", "obtain_date": "2021-09-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-07", "sp_v1_preop_date": "2021-10-04", "sp_v2_6wk_date": "2021-11-17", "sp_v3_3mo_date": "2022-01-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40263": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "planning to have a 2nd knee replacement within 3 months", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40264": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40265": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40266": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10165", "obtain_date": "2021-10-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-13", "sp_v1_preop_date": "2021-10-07", "sp_v2_6wk_date": "2021-11-23", "sp_v3_3mo_date": "2022-01-12", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40267": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10158", "obtain_date": "2021-09-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-18", "sp_v1_preop_date": "2021-09-29", "sp_v2_6wk_date": "2021-11-28", "sp_v3_3mo_date": "2022-01-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40268": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10175", "obtain_date": "2021-10-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-13", "sp_v1_preop_date": "2021-10-06", "sp_v2_6wk_date": "2021-11-23", "sp_v3_3mo_date": "2022-01-12", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40269": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to developing significant back pain lying in MRI scanner. Othwerwise, would be willing to participate. ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40270": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "2021-10-11", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "1", "main_record_id": "10172", "obtain_date": "2021-10-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-13", "sp_v1_preop_date": "2021-10-11", "sp_v2_6wk_date": "2021-11-23", "sp_v3_3mo_date": "2022-01-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40271": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation since he doesn't do that type of thing.\r\nDecline again for second knee 4/25", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40272": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not driving and distance being too far.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40273": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " the patient declined participation due to being too busy at work and getting ready for surgery.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40274": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to transportation difficulties and time commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40275": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " the patient called me back that he would not be able to take time off from work before the surgery and declined participation.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40276": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having too much else going on.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40277": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being interested.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40278": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to living in Wheaton with a hour drive to Evanston and being worked up for acute sciatica.\r\n\u00a0", "reason_not_interested": "4|0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40279": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too busy at work getting ready for surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40280": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having too much else going on in their personal lives.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40281": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10168", "obtain_date": "2021-10-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-18", "sp_v1_preop_date": "2021-10-12", "sp_v2_6wk_date": "2021-11-28", "sp_v3_3mo_date": "2022-01-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40282": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being unable to take time off from work.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40283": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to privacy concerns.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40284": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not having time and not wanting to go to Evanston.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40285": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia. Otherwise, she would have been willing to participate.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40286": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia. Otherwise, he would have been willing.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40287": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to time commitment would be strain on wife.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40288": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to severe claustrophobia, otherwise would have been willing.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40289": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being interested in research.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40290": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10167", "obtain_date": "2021-10-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-21", "sp_v1_preop_date": "2021-10-13", "sp_v2_6wk_date": "2021-12-01", "sp_v3_3mo_date": "2022-01-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40291": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being able to participate due to work.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40292": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10197", "obtain_date": "2021-10-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-25", "sp_v1_preop_date": "2021-10-22", "sp_v2_6wk_date": "2021-12-05", "sp_v3_3mo_date": "2022-01-24", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40293": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10166", "obtain_date": "2021-10-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-25", "sp_v1_preop_date": "2021-10-18", "sp_v2_6wk_date": "2021-12-05", "sp_v3_3mo_date": "2022-01-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40294": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40295": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to still working and not being able to take the time off.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40296": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to leaving town for the winter at 4 weeks after surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40297": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being out of town until just before surgery.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40298": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " the patient declined participation due to being unable to take time off from work.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40299": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40300": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10179", "obtain_date": "2021-10-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-26", "sp_v1_preop_date": "2021-10-14", "sp_v2_6wk_date": "2021-12-06", "sp_v3_3mo_date": "2022-01-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40301": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10171", "obtain_date": "2021-10-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-01", "sp_v1_preop_date": "2021-10-22", "sp_v2_6wk_date": "2021-12-13", "sp_v3_3mo_date": "2022-01-31", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40302": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He is trying to \"work for a living\" and doesn't have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40303": {"adverse_effects": {"1": {"erep_action_taken": "I communicated this issue to the PI, and spoke to the patient. I recommended that the patient follow up with his primary care doctor.", "erep_ae_date": "", "erep_ae_desc": "The visit went fine. After the MRI, the patient was a little dizzy after laying down for an hour. MRI tech had him sit for a while until he felt well enough to stand up. He then got changed and I walked him to the front without incident. He verbally told me he felt fine and found the study interesting. He then left me a voicemail early this morning claiming the MRI gave him vertigo and the vertigo is still happening this morning. He said in the past he has used \"healing crystals\" to help as he has had vertigo issues before.", "erep_ae_relation": "2", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2021-10-26 15:35:10", "erep_onset_date": "2021-10-26 07:35", "erep_outcome": "Patient is going to follow up with his Primary care if the vertigo persists.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10191", "obtain_date": "2021-10-19", "participation_interest": "2", "ptinterest_comment": "His son is a researcher who does clinical trials. May want to review consent form", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-01", "sp_v1_preop_date": "2021-10-25", "sp_v2_6wk_date": "2021-12-13", "sp_v3_3mo_date": "2022-01-31", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40304": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10170", "obtain_date": "2021-10-04", "participation_interest": "2", "ptinterest_comment": "She is having a simple R TKRevision surgery and does not have much pain to start with compared to knee osteoarthritis", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-02", "sp_v1_preop_date": "2021-10-21", "sp_v2_6wk_date": "2021-12-14", "sp_v3_3mo_date": "2022-02-01", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40305": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient was contacted for participation in the study. After discussing it and clarifying what was involved, the patient declined participation due to working all day.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40306": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to it being too involved.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40307": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being sure his insurance company will authorize the surgery", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40308": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10203", "obtain_date": "2021-10-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-01", "sp_v1_preop_date": "2021-10-27", "sp_v2_6wk_date": "2021-12-13", "sp_v3_3mo_date": "2022-01-31", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40309": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10180", "obtain_date": "2021-10-11", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-01", "sp_v1_preop_date": "2021-10-26", "sp_v2_6wk_date": "2021-12-13", "sp_v3_3mo_date": "2022-01-31", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40310": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to Evanston being too far away.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40311": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to busy with other activities.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40312": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to planning a 2nd TKA within 3 months and being concerned about having to travel to Evanston in the winter.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40313": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having too tight a schedule.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40314": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " the patient declined participation due to being out of town in Louisiana in response to the hurricane until just before surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40315": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10177", "obtain_date": "2021-10-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-01", "sp_v1_preop_date": "2021-10-20", "sp_v2_6wk_date": "2021-12-13", "sp_v3_3mo_date": "2022-01-31", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40316": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too busy before surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40317": {"age": "48", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10206", "obtain_date": "2021-10-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-04", "sp_v1_preop_date": "2021-10-27", "sp_v2_6wk_date": "2021-12-16", "sp_v3_3mo_date": "2022-02-03", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40318": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too much of a wimp and too many other doctor appointments.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40319": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10190", "obtain_date": "2021-10-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-25", "sp_v1_preop_date": "2021-10-21", "sp_v2_6wk_date": "2021-12-05", "sp_v3_3mo_date": "2022-01-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40320": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too busy at work prior to surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40321": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia, however he would have otherwise participated", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40322": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia, however he otherwise would have participated", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40323": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to leaving town for the winter at two months postop", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40324": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Time-related issue", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40325": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10182", "obtain_date": "2021-10-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-11", "sp_v1_preop_date": "2021-10-28", "sp_v2_6wk_date": "2021-12-23", "sp_v3_3mo_date": "2022-02-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40326": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "involving too much time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40327": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40328": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "time related", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40329": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Still is working and doesn't have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40330": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "no reason", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40331": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "time related", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40332": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After reviewing the consent, study was too overwhelming ", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40333": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40334": {"adverse_effects": {"2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-09 14:30:56", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient was brought in outside of their window per protocol.", "erep_protdev_type": "6", "erep_rel_covid19": "1", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10192", "obtain_date": "2021-10-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-11", "sp_v1_preop_date": "2021-10-29", "sp_v2_6wk_date": "2021-12-23", "sp_v3_3mo_date": "2022-02-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40335": {"adverse_effects": {"2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-09 14:29:48", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient was brought in outside of their window per protocol.", "erep_protdev_type": "6", "erep_rel_covid19": "1", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10185", "obtain_date": "2021-10-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-09", "sp_v1_preop_date": "2021-11-03", "sp_v2_6wk_date": "2021-12-21", "sp_v3_3mo_date": "2022-02-08", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40336": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "procedure in 2016 involved placing a titanium plate over the skull defect, which could be problematic for the brain fMRI. Advised that we should not move forward with including her in the study.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40337": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Is not interested due to the MRI portion of the study", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40338": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40339": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40340": {"age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10215", "obtain_date": "2021-11-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-19", "sp_v1_preop_date": "2021-11-11", "sp_v2_6wk_date": "2021-12-31", "sp_v3_3mo_date": "2022-02-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40341": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10194", "obtain_date": "2021-10-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-17", "sp_v1_preop_date": "2021-11-03", "sp_v2_6wk_date": "2021-12-29", "sp_v3_3mo_date": "2022-02-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40342": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to busy at work leading up to surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40343": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too busy and planning 2nd TKA in two months", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40344": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40345": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40346": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10198", "obtain_date": "2021-10-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-16", "sp_v1_preop_date": "2021-11-10", "sp_v2_6wk_date": "2021-12-28", "sp_v3_3mo_date": "2022-02-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40347": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient\u00a0was excluded\u00a0due to planning on having his 2nd TKA within 3 months", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40348": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10205", "obtain_date": "2021-10-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-17", "sp_v1_preop_date": "2021-11-11", "sp_v2_6wk_date": "2021-12-29", "sp_v3_3mo_date": "2022-02-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40349": {"age": "62", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10202", "obtain_date": "2021-10-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-22", "sp_v1_preop_date": "2021-11-15", "sp_v2_6wk_date": "2022-01-03", "sp_v3_3mo_date": "2022-02-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40350": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He is an attorney and is still on trial and doesn't have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40351": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40352": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40353": {"adverse_effects": {"2": {"erep_action_taken": "Still in the study, no MRI in the future", "erep_ae_date": "", "erep_ae_desc": "Patient became claustrophobic during the MRI scan and pressed the emergency squeeze button and the scan was stopped. ", "erep_ae_relation": "", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-23 12:00:20", "erep_onset_date": "2021-11-12 12:20", "erep_outcome": "", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10199", "obtain_date": "2021-10-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-15", "sp_v1_preop_date": "2021-11-12", "sp_v2_6wk_date": "2021-12-27", "sp_v3_3mo_date": "2022-02-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40354": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Single mom and does not have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40355": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10231", "obtain_date": "2021-11-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-02", "sp_v1_preop_date": "2021-11-23", "sp_v2_6wk_date": "2022-01-13", "sp_v3_3mo_date": "2022-03-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40356": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40357": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "severe claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40358": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too busy and claustrophobia.", "reason_not_interested": "4|3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40359": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40360": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is not eligible for the study after further MRI review", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40361": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10207", "obtain_date": "2021-10-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-19", "sp_v1_preop_date": "2021-11-09", "sp_v2_6wk_date": "2021-12-31", "sp_v3_3mo_date": "2022-02-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40362": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40363": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "spinal cord stimulator incompatible with MRI", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40364": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several voicemails, never heard back", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40365": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to not wanting to have to come back in the winter with ice/snow; too busy; Evanston Hosp parking lot too difficult and will not allow anyone to drive her care including the valet parking attendants.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40366": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient was contacted for participation in the study. After discussing it and clarifying what was involved, the patient declined participation due to claustrophobia. Otherwise, he would have considered participating.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40367": {"adverse_effects": {"2": {"erep_action_taken": "NO further action", "erep_ae_date": "2022-03-03", "erep_ae_desc": "Patient came in for their three month visit. During the MRI scan the patient said she had post-nasal drip and reflux issues when she was laying down in the scanner and she asked to be pulled out. She then dry heaved a little bit. There was no further incident. She did not complete the scan because of this.", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-03-03 14:01:21", "erep_onset_date": "2022-03-03 13:00", "erep_outcome": "Scan was not completed.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-03-03 13:10", "erep_visit_inv": "4"}}, "age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10221", "obtain_date": "2021-11-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-01", "sp_v1_preop_date": "2021-11-18", "sp_v2_6wk_date": "2022-01-12", "sp_v3_3mo_date": "2022-03-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40368": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several voicemails, never heard back", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40369": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10238", "obtain_date": "2021-12-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-09", "sp_v1_preop_date": "2021-12-03", "sp_v2_6wk_date": "2022-01-20", "sp_v3_3mo_date": "2022-03-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40370": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too busy between now and her surgery date to commit that much time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40371": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to living in Libertyville and not being interested.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40372": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40373": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40374": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to working full time up until her surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40375": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10211", "obtain_date": "2021-11-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-17", "sp_v1_preop_date": "2021-11-15", "sp_v2_6wk_date": "2021-12-29", "sp_v3_3mo_date": "2022-02-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40376": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10212", "obtain_date": "2021-11-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-06", "sp_v1_preop_date": "2021-11-16", "sp_v2_6wk_date": "2022-01-17", "sp_v3_3mo_date": "2022-03-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40377": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to distance from where she lives in Dyer, IN.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40378": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "left multiple VM, never heard back", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40379": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too busy", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40380": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40381": {"age": "50", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10223", "obtain_date": "2021-11-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-15", "sp_v1_preop_date": "2021-12-09", "sp_v2_6wk_date": "2022-01-26", "sp_v3_3mo_date": "2022-03-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40382": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40383": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40384": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40385": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Could not accommodate his schedule\r\n - second TKA scheduled on 3/7/2022 - declined on 2/22/2022 - no reason given", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40386": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to it being too much of a commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40387": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to it being more than she wants to be involved in.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40388": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having to attend to too many other medical issues prior to his surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40389": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40390": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40391": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40392": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40393": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40394": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40395": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40396": {"age": "77", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10234", "obtain_date": "2021-11-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-15", "sp_v1_preop_date": "2021-12-02", "sp_v2_6wk_date": "2022-01-26", "sp_v3_3mo_date": "2022-03-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40397": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-11", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10246", "obtain_date": "2021-12-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-14", "sp_v1_preop_date": "2021-12-08", "sp_v2_6wk_date": "2022-01-25", "sp_v3_3mo_date": "2022-03-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40398": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40399": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "doesn't have time before surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40400": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40401": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "52", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40402": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40403": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several VMs", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40404": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt is having neck surgery and may have to delay TKA, will reach out again after Thanksgiving", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40405": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia. Otherwise, he would have been willing.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40406": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working and not having the time available.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40407": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40408": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40409": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Works full time and can't take time off before surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40410": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40411": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having a spinal cord stimulator and unable to have an MRI", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40412": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40413": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40414": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to busy between now and her surgery date.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40415": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to leaving town on vacation until just before her surgery and not having time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40416": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40417": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to not being able to drive or fill out forms. Only his wife can communicate for him", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40418": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to already having an MRI of her knee and not needing another one", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40419": {"age": "81", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10250", "obtain_date": "2021-12-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-09", "sp_v1_preop_date": "2021-12-20", "sp_v2_6wk_date": "2022-03-23", "sp_v3_3mo_date": "2022-05-09", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40420": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too busy to take the time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40421": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40422": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40423": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40424": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to it being too involved", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40425": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40426": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being uncomfortable having and MRI and having to remove her glucose monitor", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40427": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still having to come to terms with needing a knee replacement much less anything else.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40428": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being a FedEx driver with no time between now and surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40429": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to Evanston being too far away and being too busy with the Holidays and going away between now and his surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40430": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40431": {"age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10257", "obtain_date": "2021-12-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-15", "sp_v1_preop_date": "2021-12-22", "sp_v2_6wk_date": "2022-03-29", "sp_v3_3mo_date": "2022-05-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40432": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40433": {"age": "77", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10258", "obtain_date": "2021-12-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-28", "sp_v1_preop_date": "2022-02-24", "sp_v2_6wk_date": "2022-04-11", "sp_v3_3mo_date": "2022-05-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40434": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "leaves town after the surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40435": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10253", "obtain_date": "2021-12-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-15", "sp_v1_preop_date": "2022-01-04", "sp_v2_6wk_date": "2022-04-26", "sp_v3_3mo_date": "2022-06-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40436": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient's surgery was cancelled due to increase in COVID cases. Unable to bring in when surgery was rescheduled because in person research had not been re-started. ", "ewdateterm": "2022-01-07", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10264", "obtain_date": "2021-12-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-01-06", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40437": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left several VM, never heard back", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40438": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40439": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too busy", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40440": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too busy", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40441": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "still working full time and distance ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40442": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to the time commitment", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40443": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being primarily concerned about how she was going to do with the surgery rather than participating in a research study.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40444": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient's surgery was canceled due to COVID cases increasing in January. Patient was attempted to be re-contacted, but was unreachable. ", "ewdateterm": "2022-01-07", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10263", "obtain_date": "2021-12-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-01-11", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40445": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too much of a time commitment", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40446": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to \"not wanting to do it\"", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40447": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to feeling she is not a good candidate for research", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40448": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not like the genetic language in the consent", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40449": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": " the patient is going to think about it and will call us back after the New Year if he is interested in pursuing it", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "48", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40450": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40451": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40452": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40453": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to distance to Evanston Hospital too far.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40454": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to leaving town as soon as possible after his surgery.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40455": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to claustrophobia with MRIs. Otherwise, would consider participating", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40456": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too busy at work.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40457": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40458": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40459": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40460": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working full time until just before her surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40461": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "12/22/2021 the patient is not inclined to participate but wants to consider it and will get back to us if decides.\r\nsurgery rescheduled from January to March due to Covid situation\r\n2/14/2022 pt did not want to participate because of the brain MRI involved", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40462": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to still working full time until just before her surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40463": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to running our emergency room in the middle of a covid surge and having no time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40464": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40465": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to it being too much time and effort.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40466": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10285", "obtain_date": "2022-02-11", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-22", "sp_v1_preop_date": "2022-02-15", "sp_v2_6wk_date": "2022-04-05", "sp_v3_3mo_date": "2022-05-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40467": {"age": "62", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10288", "obtain_date": "2022-02-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-22", "sp_v1_preop_date": "2022-02-17", "sp_v2_6wk_date": "2022-04-05", "sp_v3_3mo_date": "2022-05-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40468": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt is interested, but currently no days on the schedule work. Will give her a call if something opens up", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40469": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having just retired and wanting to relax", "reason_not_interested": "4|0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40470": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to not being able to take time off from work.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40471": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10400", "obtain_date": "2022-06-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-23", "sp_v1_preop_date": "2022-06-13", "sp_v2_6wk_date": "2022-08-04", "sp_v3_3mo_date": "2022-09-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40472": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Can't take time off from work", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40473": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40474": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Totally booked", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40475": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt declined participation due to not having enough time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40476": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40477": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too much involvement", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40478": {"age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10293", "obtain_date": "2022-02-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-02", "sp_v1_preop_date": "2022-02-23", "sp_v2_6wk_date": "2022-04-13", "sp_v3_3mo_date": "2022-06-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40479": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10294", "obtain_date": "2022-02-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-02", "sp_v1_preop_date": "2022-02-23", "sp_v2_6wk_date": "2022-04-13", "sp_v3_3mo_date": "2022-06-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40480": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "2", "ethnic": "N/A", "ewcomments": "Could not come to her initial appointment, then had to get COVID test for her surgery and quarantine. Unable to come in after.", "ewdateterm": "2022-03-02", "ewdisreasons": "4", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10300", "obtain_date": "2022-02-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-04", "sp_v1_preop_date": "2022-02-25", "sp_v2_6wk_date": "2022-04-15", "sp_v3_3mo_date": "2022-06-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40481": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt declined participation due to distance to travel", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40482": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much of a time commitment for patient, lives further north", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40483": {"age": "55", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10303", "obtain_date": "2022-02-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-03", "sp_v1_preop_date": "2022-02-28", "sp_v2_6wk_date": "2022-04-14", "sp_v3_3mo_date": "2022-06-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40484": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40485": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10296", "obtain_date": "2022-02-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-02-25", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40486": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not want to participate as he is getting two knees done very close together and has a lot going on. May be interested in study for his second knee.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40487": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40488": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too busy between now and surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40489": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "\"Not something I am interested in spending my time doing\"", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40490": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40491": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being in too much pain and still working", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40492": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10298", "obtain_date": "2022-02-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-17", "sp_v1_preop_date": "2022-03-07", "sp_v2_6wk_date": "2022-04-28", "sp_v3_3mo_date": "2022-06-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40493": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt declined participation due to his wife just having shoulder surgery and can't be away from home that much", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40494": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too busy and not having time for the testing.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40495": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40496": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40497": {"age": "38", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10297", "obtain_date": "2022-02-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-08", "sp_v1_preop_date": "2022-03-08", "sp_v2_6wk_date": "2022-04-19", "sp_v3_3mo_date": "2022-06-08", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40498": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia with the MRI.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40499": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10305", "obtain_date": "2022-02-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-17", "sp_v1_preop_date": "2022-03-11", "sp_v2_6wk_date": "2022-04-28", "sp_v3_3mo_date": "2022-06-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40500": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to too bus working to take the time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40501": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too busy to take the time and travel to Evanston", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40502": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40503": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40504": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40505": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working and cannot take the time off before his surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40506": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being interested.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40507": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Her daughter answered the phone and indicated her mother was very limited in English, a bit older, and would probably not be a good candidate for the study.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40508": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After discussing it and clarifying what was involved, the patient declined participation due to it being too much for her.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40509": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The patient declined participation due to it being too much for her.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40510": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40511": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.\r\n\u00a0", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40512": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40513": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " the patient declined participation due to being the sole caregiver for his disabled wife and not being able to take the time to leaver her alone.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40514": {"age": "80", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10314", "obtain_date": "2022-03-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-28", "sp_v1_preop_date": "2022-03-18", "sp_v2_6wk_date": "2022-05-09", "sp_v3_3mo_date": "2022-06-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40515": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10319", "obtain_date": "2022-03-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-29", "sp_v1_preop_date": "2022-03-24", "sp_v2_6wk_date": "2022-05-10", "sp_v3_3mo_date": "2022-06-29", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40516": {"age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "2|5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10318", "obtain_date": "2022-03-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-30", "sp_v1_preop_date": "2022-03-25", "sp_v2_6wk_date": "2022-05-11", "sp_v3_3mo_date": "2022-06-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40517": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being that interested ", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40518": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40519": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10312", "obtain_date": "2022-03-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-23", "sp_v1_preop_date": "2022-03-16", "sp_v2_6wk_date": "2022-05-04", "sp_v3_3mo_date": "2022-06-23", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40520": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives too far from Evanston", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40521": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40522": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40523": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40524": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too many appointments leading up to his surgery, does not have time", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40525": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40526": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not have time before surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40527": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40528": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40529": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40530": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40531": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40532": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting anyone to look at her brain.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40533": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40534": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "5", "ethnic": "1", "ewcomments": "surgery was canceled. ", "ewdateterm": "2022-09-22", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "2", "main_record_id": "10322", "obtain_date": "2022-03-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-03-30", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40535": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being able to take time off from work.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40536": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too busy at work.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40537": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40538": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40539": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance and an aversion to an hour in the MRI machine.\r\n\u00a0", "reason_not_interested": "4|3", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40540": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to needing to concentrate on a non-healing leg wound before surgery and not enough time. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40541": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10330", "obtain_date": "2022-04-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-14", "sp_v1_preop_date": "2022-04-04", "sp_v2_6wk_date": "2022-05-26", "sp_v3_3mo_date": "2022-07-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40542": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40543": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance to Evanston from Palos.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40544": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being our of town for the 3 month followup period.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40545": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40546": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not having the time for the testing.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40547": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to her husband being blind and not able to be away from him.\r\n\u00a0", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40548": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to to busy to take the time before surgery due to work and all the other activities.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40549": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance and time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40550": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40551": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40552": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40553": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40554": {"age": "46", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10333", "obtain_date": "2022-04-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-18", "sp_v1_preop_date": "2022-04-06", "sp_v2_6wk_date": "2022-05-30", "sp_v3_3mo_date": "2022-07-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40555": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not driving any distance and not using e-mail.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40556": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40557": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being too overwhelmed by everything else going on in her life.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40558": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-03 11:51:27", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None.", "erep_protdev_desc": "Participant came one day outside of protocol range due to scheduling. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10334", "obtain_date": "2022-04-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-18", "sp_v1_preop_date": "2022-04-07", "sp_v2_6wk_date": "2022-05-30", "sp_v3_3mo_date": "2022-07-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40559": {"age": "53", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10340", "obtain_date": "2022-04-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-20", "sp_v1_preop_date": "2022-04-11", "sp_v2_6wk_date": "2022-06-01", "sp_v3_3mo_date": "2022-07-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40560": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40561": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She is not interested in participating in the study.", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40562": {"age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10328", "obtain_date": "2022-03-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-12", "sp_v1_preop_date": "2022-04-04", "sp_v2_6wk_date": "2022-05-24", "sp_v3_3mo_date": "2022-07-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40563": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too busy remodelling condo.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40564": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to no longer driving and not wanting to participate.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40565": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40566": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40567": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40568": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance from Evanston to Oak Lawn.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40569": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " patient declined participation due to multiple trips out of town prior to surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40570": {"adverse_effects": {"1": {"erep_action_taken": "No MRI with cuff was done. ", "erep_ae_date": "", "erep_ae_desc": "Patient reported at 3 month study visit that the cuff from his baseline visit was very uncomfortable and caused the veins in his legs to bulge out. He is not in any pain. He did not mention this at his 6 week follow up visit or on any follow up phone calls.", "erep_ae_relation": "2", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-08-03 13:23:51", "erep_onset_date": "2022-04-18 13:24", "erep_outcome": "No MRI was done. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-25", "dem_race": "2", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10345", "obtain_date": "2022-04-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "5", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-26", "sp_v1_preop_date": "2022-04-18", "sp_v2_6wk_date": "2022-06-07", "sp_v3_3mo_date": "2022-07-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40571": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40572": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40573": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to working and not having time before her surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40574": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too much involvement.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40575": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10342", "obtain_date": "2022-04-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-26", "sp_v1_preop_date": "2022-04-12", "sp_v2_6wk_date": "2022-06-07", "sp_v3_3mo_date": "2022-07-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40576": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being in Florida until just before her surgery. Also somewhat claustrophobic and nervous about MRI.\r\n", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40577": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being busy working and claustrophobia about the MRI.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "41", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40578": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being a tax accountant with surgery scheduled on 4/18/22.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40579": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to working full time up until his surgery.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40580": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to working full time up until her surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40581": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40582": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10352", "obtain_date": "2022-04-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-26", "sp_v1_preop_date": "2022-04-21", "sp_v2_6wk_date": "2022-06-07", "sp_v3_3mo_date": "2022-07-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40583": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40584": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40585": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to travel that far.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40586": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "She is a physician; Interested in participating and will call back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40587": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too much of a commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40588": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40589": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Never heard back from patient.", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40590": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to claustrophobia with MRI. Otherwise, would have participated.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40591": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "declined participation due to being too busy taking care of her grandchildren.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40592": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to distance and time to travel to Evanston Hospital.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40593": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "2", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10353", "obtain_date": "2022-04-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-03", "sp_v1_preop_date": "2022-04-27", "sp_v2_6wk_date": "2022-06-14", "sp_v3_3mo_date": "2022-08-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40594": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "2|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10348", "obtain_date": "2022-04-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-05", "sp_v1_preop_date": "2022-05-02", "sp_v2_6wk_date": "2022-06-16", "sp_v3_3mo_date": "2022-08-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40595": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40596": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "0", "erep_local_dtime": "2022-04-28 14:56:20", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Patient will not be scanned at the 3 month visit.", "erep_protdev_desc": "Patient was unable to complete the MRI. He has severe spinal stenosis and the MRI technologist was unable to snap head coil on due to the spine issues. He was unable to be positioned and the technologist could not complete the scan.", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "2022-09-22", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "1", "main_record_id": "10351", "obtain_date": "2022-04-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-04-28", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40597": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to do it.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40598": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10357", "obtain_date": "2022-04-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-09", "sp_v1_preop_date": "2022-05-03", "sp_v2_6wk_date": "2022-06-20", "sp_v3_3mo_date": "2022-08-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40599": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being sure he is even going to go ahead with the surgery.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40600": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Seemed interested but then stated it was too much. Requested more info, which I sent via NSC. Advised him how to contact us if he changes his mind. ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40601": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too much of a commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40602": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40603": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40604": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being in Florida until just before his ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40605": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being able to take time off from work as a teacher.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40606": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not have time before her surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40607": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "40", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40608": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40609": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too much of a commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40610": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40611": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "She had not reviewed the information brochure but requested more information and will get back to us if interested. A2CPS info sent via NSConnect.\r\n\u00a0", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40612": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient called and canceled baseline visit, he does not have time for it before his surgery", "ewdateterm": "2022-05-09", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "1", "main_record_id": "10374", "obtain_date": "2022-05-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-13", "sp_v1_preop_date": "2022-05-09", "sp_v2_6wk_date": "2022-06-24", "sp_v3_3mo_date": "2022-08-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40613": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40614": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia with the MRI.\r\n\u00a0", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40615": {"age": "80", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10375", "obtain_date": "2022-05-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-17", "sp_v1_preop_date": "2022-05-11", "sp_v2_6wk_date": "2022-06-28", "sp_v3_3mo_date": "2022-08-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40616": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10366", "obtain_date": "2022-05-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-17", "sp_v1_preop_date": "2022-05-06", "sp_v2_6wk_date": "2022-06-28", "sp_v3_3mo_date": "2022-08-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40617": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to make that commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40618": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to talk about it.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40619": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "the patient is interested but somewhat concerned about MRI. Also has small veins that roll with blood draws always a problem. Wants to think about it. Will call again on Thursday.\r\n\u00a0Interested but somewhat concerned about MRI. Also has small veins that roll with blood draws always a problem. Wants to think about it. Will call again on Thursday. ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40620": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to go up to Evanston.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40621": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40622": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40623": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10364", "obtain_date": "2022-05-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-23", "sp_v1_preop_date": "2022-05-10", "sp_v2_6wk_date": "2022-07-04", "sp_v3_3mo_date": "2022-08-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40624": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40625": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is too busy watching his grandchildren during the day", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40626": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having to take care of grandchildren every day.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40627": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40628": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40629": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10376", "obtain_date": "2022-05-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-16", "sp_v1_preop_date": "2022-05-12", "sp_v2_6wk_date": "2022-06-27", "sp_v3_3mo_date": "2022-08-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40630": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed before her surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40631": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "5", "ethnic": "4", "ewcomments": "Day of appointment patient called and said it was too overwhelming. ", "ewdateterm": "2022-05-18", "ewdisreasons": "6", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10381", "obtain_date": "2022-05-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-23", "sp_v1_preop_date": "2022-05-18", "sp_v2_6wk_date": "2022-07-04", "sp_v3_3mo_date": "2022-08-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40632": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40633": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "concerns about pressure on varicose veins in calf and generally being overwhelmed preparing for the surgery.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40634": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working and too busy to participate with the time needed for the study.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40635": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10382", "obtain_date": "2022-05-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-25", "sp_v1_preop_date": "2022-05-19", "sp_v2_6wk_date": "2022-07-06", "sp_v3_3mo_date": "2022-08-25", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40636": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation without specifying a reason.", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40637": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40638": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40639": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40640": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40641": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "working full time, moving and distance to Evanston.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40642": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to having a bone anchored ear implant as a contradiction to the high intensity research MRI.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40643": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10388", "obtain_date": "2022-05-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40644": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40645": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient's cat is having surgery and she is overwhelmed before her surgery and can no longer participate. ", "ewdateterm": "2022-07-13", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "10379", "obtain_date": "2022-05-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-10", "sp_v1_preop_date": "2022-05-16", "sp_v2_6wk_date": "2022-09-21", "sp_v3_3mo_date": "2022-11-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40646": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40647": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to now living in Kentucky.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40648": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being a private person and not wanting to be involved in any research.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40649": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "\r\nHe is intereted but wants to discuss with wife and children. Sent info via NSC. I will re-contact next week.\r\n\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40650": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.\r\n\u00a0", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40651": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40652": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After discussing it and clarifying what was involved, the patient declined participation due to having changed surgeons to avoid preop MRI for knee that was to be used for creating patient specific instruments.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40653": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40654": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10394", "obtain_date": "2022-05-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-07", "sp_v1_preop_date": "2022-05-31", "sp_v2_6wk_date": "2022-07-19", "sp_v3_3mo_date": "2022-09-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40655": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to busy to take the time for the testing.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40656": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to concerns about claustrophobia with the MRI.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40657": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having a two day old granddaughter she has to help take care of.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40658": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to anxiety about upcoming surgery and too much going on in her family life. Scheduled for 2nd TKA 3 months and one week after the 1st knee and willing to consider participating at that time.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40659": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "clarifying what was involved, the patient declined participation due to not wanting to travel to Evanston.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40660": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She was not interested in the study and was frustrated that she could not find a doctor for pre-op medical clearance.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40661": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10380", "obtain_date": "2022-05-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-09", "sp_v1_preop_date": "2022-06-02", "sp_v2_6wk_date": "2022-07-21", "sp_v3_3mo_date": "2022-09-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40662": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient's husband passed away decided it was too much on her plate", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40663": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40664": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to needing to care for grandchildren.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40665": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40666": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10385", "obtain_date": "2022-05-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-10", "sp_v1_preop_date": "2022-05-24", "sp_v2_6wk_date": "2022-07-22", "sp_v3_3mo_date": "2022-09-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "40667": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to participate and distance to Evanston.'", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40668": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40669": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40670": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " the patient declined participation due to being in Oak Brook and doesn't have time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40671": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10386", "obtain_date": "2022-05-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-13", "sp_v1_preop_date": "2022-06-06", "sp_v2_6wk_date": "2022-07-25", "sp_v3_3mo_date": "2022-09-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40672": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "the patient wants to think about it.\r\n\u00a0", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40673": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia and time/distance to Evanston form NW suburbs.", "reason_not_interested": "4|3", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40674": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to be bothered.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40675": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40676": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working and no time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40677": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40678": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10383", "obtain_date": "2022-05-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-15", "sp_v1_preop_date": "2022-06-09", "sp_v2_6wk_date": "2022-07-27", "sp_v3_3mo_date": "2022-09-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40679": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40680": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to claustrophobia and thinking about the study would make her too anxious.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40681": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40682": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40683": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40684": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40685": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "he requested information in writing and to be called again. Sent A2CPS info via NSC.\r\nI will contact again.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40686": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40687": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10387", "obtain_date": "2022-05-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-20", "sp_v1_preop_date": "2022-06-07", "sp_v2_6wk_date": "2022-08-01", "sp_v3_3mo_date": "2022-09-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40688": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40689": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to severe Benign paroxysmal positional vertigo (BPPV) where she is unable to lay supine for more than a few minutes, which is the position in the MRI scanner.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40690": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40691": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being too busy and not having reliable transportation. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40692": {"age": "79", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10402", "obtain_date": "2022-06-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-22", "sp_v1_preop_date": "2022-06-15", "sp_v2_6wk_date": "2022-08-03", "sp_v3_3mo_date": "2022-09-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40693": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working full time up until surgery.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40694": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10432", "obtain_date": "2022-07-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-01", "sp_v1_preop_date": "2022-07-25", "sp_v2_6wk_date": "2022-09-12", "sp_v3_3mo_date": "2022-11-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40695": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40696": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to taking too much time.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40697": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " patient declined participation due to having read the information brochure and decided to not do it.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40698": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being comfortable with her genetic material being part of the study and in a repository.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40699": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not having or using e-mail.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40700": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to still working and no time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40701": {"age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10401", "obtain_date": "2022-06-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-22", "sp_v1_preop_date": "2022-06-16", "sp_v2_6wk_date": "2022-08-03", "sp_v3_3mo_date": "2022-09-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "40702": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being a single mom and working full time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40703": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40704": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being interested.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40705": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to no time, busy with 15 grandchildren and still working.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40706": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to it being too much of a commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40707": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-13", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10406", "obtain_date": "2022-06-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-12", "sp_v1_preop_date": "2022-06-27", "sp_v2_6wk_date": "2022-08-23", "sp_v3_3mo_date": "2022-10-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40708": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40709": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not wanting to experience any of the discomfort associated with the testing.\r\n\u00a0", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40710": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to distance to Evanston from Southside and hates e-mails.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40711": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10407", "obtain_date": "2022-06-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-14", "sp_v1_preop_date": "2022-06-23", "sp_v2_6wk_date": "2022-08-25", "sp_v3_3mo_date": "2022-10-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40712": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to time commitment.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40713": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40714": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined due to being too busy. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40715": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Had insurance issues getting everything approved and now no longer has time. ", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40716": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "She is willing to participate but planning on re-scheduling surgery in the Fall and will call me back at that time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40717": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40718": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40719": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40720": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to already having too many doctor appointments.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40721": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40722": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10415", "obtain_date": "2022-06-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-05", "sp_v1_preop_date": "2022-06-29", "sp_v2_6wk_date": "2022-08-16", "sp_v3_3mo_date": "2022-10-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40723": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40724": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10414", "obtain_date": "2022-06-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "3", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-20", "sp_v1_preop_date": "2022-07-07", "sp_v2_6wk_date": "2022-08-31", "sp_v3_3mo_date": "2022-10-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40725": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40726": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10427", "obtain_date": "2022-07-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-21", "sp_v1_preop_date": "2022-07-13", "sp_v2_6wk_date": "2022-09-01", "sp_v3_3mo_date": "2022-10-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40727": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having a ton of health problems, too many CTs and MRIs and not up for it.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40728": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40729": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40730": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40731": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10428", "obtain_date": "2022-07-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-19", "sp_v1_preop_date": "2022-07-14", "sp_v2_6wk_date": "2022-08-30", "sp_v3_3mo_date": "2022-10-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40732": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40733": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having some medical appointment or test nearly every day until surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40734": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10419", "obtain_date": "2022-07-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-27", "sp_v1_preop_date": "2022-07-18", "sp_v2_6wk_date": "2022-09-07", "sp_v3_3mo_date": "2022-10-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40735": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Wants to discuss with husband; Sent info via NSC; Will call back next week", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40736": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance and too involved.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40737": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to living in Wisconsin.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40738": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40739": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40740": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40741": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40742": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40743": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40744": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40745": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40746": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40747": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40748": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40749": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40750": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "declined participation due to not seeing the need to go to Evanston Hospital if surgery is at Skokie Hospital.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40751": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10433", "obtain_date": "2022-07-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-02", "sp_v1_preop_date": "2022-07-26", "sp_v2_6wk_date": "2022-09-13", "sp_v3_3mo_date": "2022-11-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40752": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10430", "obtain_date": "2022-07-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-03", "sp_v1_preop_date": "2022-07-27", "sp_v2_6wk_date": "2022-09-14", "sp_v3_3mo_date": "2022-11-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40753": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After discussing her history and reviewing the record, she has multiple auto-immune conditions including inflammatory arthritis which is an exclusion for this study.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40754": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance and difficulty getting to Evanston Hospital.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40755": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40756": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40757": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40758": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40759": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40760": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40761": {"age": "79", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10429", "obtain_date": "2022-07-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-10", "sp_v1_preop_date": "2022-08-03", "sp_v2_6wk_date": "2022-09-21", "sp_v3_3mo_date": "2022-11-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40762": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40763": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40764": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40765": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40766": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient declined participation due to being sole caregiver for her husband and not having time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40767": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40768": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40769": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40770": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40771": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40772": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't want an MRI", "reason_not_interested": "4|3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40773": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10431", "obtain_date": "2022-07-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-08", "sp_v1_preop_date": "2022-07-28", "sp_v2_6wk_date": "2022-09-19", "sp_v3_3mo_date": "2022-11-08", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "40774": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "the patient felt it was too involved to participate but will discuss it with her husband.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40775": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40776": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to baby sits grandchildren full time until surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40777": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10437", "obtain_date": "2022-07-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-16", "sp_v1_preop_date": "2022-08-10", "sp_v2_6wk_date": "2022-09-27", "sp_v3_3mo_date": "2022-11-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40778": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40779": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to distance and care for 90 yo mother.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40780": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40781": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt has claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40782": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40783": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40784": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40785": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10434", "obtain_date": "2022-07-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-18", "sp_v1_preop_date": "2022-08-08", "sp_v2_6wk_date": "2022-09-29", "sp_v3_3mo_date": "2022-11-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40786": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40787": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40788": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40789": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "62", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40790": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40791": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40792": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40793": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having to answer a lot of questionnaires and being subjected to a lot of discomfort sounds like what they do to you in prison.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40794": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40795": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40796": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40797": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40798": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40799": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40800": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "\r\nIs getting a 2nd opinion and will decide next week. Described study fully and sent him the info brochure via NSC. He indicated he would call back but if he does not, call and see if he is interested. I specified testing would need to be done before 8/12 \r\n\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40801": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40802": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.\r\n\u00a0", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40803": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40804": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10460", "obtain_date": "2022-08-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-13", "sp_v1_preop_date": "2022-09-06", "sp_v2_6wk_date": "2022-10-25", "sp_v3_3mo_date": "2022-12-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40805": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The patient declined participation due to already having too much on her plate.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40806": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40807": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40808": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The patient indicated she was claustrophobic but could do an MRI with valium. I explained that we could not do that and she may not be eligible. She is going to think about it, review the material and may get back to us if she is interested and thinks she can have a brain MRI and stay still inside the tube for nearly an hour.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40809": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to being an accountant and needing to get all the tax work due on 9/15 done before her surgery", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "2", "screening_gender": "N/A", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40810": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4|1", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40811": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10468", "obtain_date": "2022-09-08", "participation_interest": "1", "ptinterest_comment": "Retired physician. Understood elements of study. For next five days will be on a bike trip in Appalachian mountains, unable to answer phone. She will be able to answer texts or e-mails. Prefers to not have to use NSConnect. Tue or Fri after Labor day would work out the best. ", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-14", "sp_v1_preop_date": "2022-09-09", "sp_v2_6wk_date": "2022-10-26", "sp_v3_3mo_date": "2022-12-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40812": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to already being a nervous wreck.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "3", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40813": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having too many other issues going on.\r\n\u00a0", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40814": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40815": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40816": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40817": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40818": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient stated they have too much pain to be able to participate.", "reason_not_interested": "5", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40819": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to no available time between work and taking grandkids to Disney.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40820": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10471", "obtain_date": "2022-09-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-20", "sp_v1_preop_date": "2022-09-12", "sp_v2_6wk_date": "2022-11-01", "sp_v3_3mo_date": "2022-12-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40821": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being interested.", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40822": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10472", "obtain_date": "2022-09-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-21", "sp_v1_preop_date": "2022-09-19", "sp_v2_6wk_date": "2022-11-02", "sp_v3_3mo_date": "2022-12-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40823": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40824": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to having too much else to do preparing for surgery.\r\n\u00a0", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40825": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to not being available at 3 month visit due to going to Fla for winter.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40826": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Followed up with the patient about the study who now recalls she had spine neurostimulator that was removed but left with broken wires and advised to not have an MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40827": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to time and distance to Evanston.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40828": {"age": "83", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10474", "obtain_date": "2022-09-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-27", "sp_v1_preop_date": "2022-09-20", "sp_v2_6wk_date": "2022-11-07", "sp_v3_3mo_date": "2022-12-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "40829": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40830": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40831": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40832": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40833": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40834": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "73", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40835": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40836": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "the patient declined participation due to owning his own business and not being able to take time off from work.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40837": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After discussing it and clarifying what was involved, the patient declined participation due to still working full time until just before the surgery.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40838": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40839": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The patient declined participation due to not having time and not being interested.", "reason_not_interested": "4|0", "redcap_data_access_group": "northshore", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40840": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40841": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40842": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "northshore", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40843": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": " The patient declined participation due to still working and does not have the time.", "reason_not_interested": "4", "redcap_data_access_group": "northshore", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40844": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40845": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "The patient declined participation due to claustrophobia.", "reason_not_interested": "3", "redcap_data_access_group": "northshore", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "40846": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "northshore", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She's concerned about how her recovery will go ", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "needs an LAR", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50010": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-05-25 09:53", "date_of_contact": "2021-05-24", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10036", "obtain_date": "2021-05-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-06-29", "sp_v1_preop_date": "2021-06-22", "sp_v2_6wk_date": "2021-08-10", "sp_v3_3mo_date": "2021-09-29", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "51", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't want to do MRI", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives far away. Doesn't want to drive", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "50", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Hung up phone during call", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Hung up phone during study description ", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-05-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Indicated during screening call that revision is for possible infection that cannot be cultured until after surgery. Confirmed with surgeon. ", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50029": {"age": "49", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 11:27", "date_of_contact": "2021-06-02", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10040", "obtain_date": "2021-06-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-18", "sp_v1_preop_date": "2021-08-12", "sp_v2_6wk_date": "2021-09-29", "sp_v3_3mo_date": "2021-11-18", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50030": {"age": "61", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 11:17", "date_of_contact": "2021-06-29", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10064", "obtain_date": "2021-07-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-16", "sp_v1_preop_date": "2021-07-20", "sp_v2_6wk_date": "2021-09-27", "sp_v3_3mo_date": "2021-11-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Asked to be re called in 10 minutes. Declined all calls after ", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50034": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-09", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10399", "obtain_date": "2022-06-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-19", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-08-30", "sp_v3_3mo_date": "2022-10-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study visits take too long", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50037": {"age": "39", "consent_process_form_complete": "2", "date_and_time": "2021-06-14 10:07", "date_of_contact": "2021-06-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10055", "obtain_date": "2021-06-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "39", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-06", "sp_v1_preop_date": "2021-07-06", "sp_v2_6wk_date": "2021-09-17", "sp_v3_3mo_date": "2021-11-06", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "call when anesthesia appt is scheduled", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50042": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 12:43", "date_of_contact": "2021-06-10", "dem_race": "3", "ethnic": "2", "ewcomments": "Subject has missed standard of care appointments and no contact with research via phone or email. Last contact was 10/18/2021 surgical follow-up with her surgeon. ", "ewdateterm": "2022-01-26", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "2", "main_record_id": "10046", "obtain_date": "2021-06-11", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-22", "sp_v1_preop_date": "2021-07-13", "sp_v2_6wk_date": "2021-09-02", "sp_v3_3mo_date": "2021-10-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50044": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 13:26", "date_of_contact": "2021-06-24", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10058", "obtain_date": "2021-06-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-27", "sp_v1_preop_date": "2021-07-14", "sp_v2_6wk_date": "2021-09-07", "sp_v3_3mo_date": "2021-10-27", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "57", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50046": {"age": "48", "consent_process_form_complete": "2", "date_and_time": "2022-02-16 09:30", "date_of_contact": "2022-02-01", "dem_race": "3", "ethnic": "2", "ewcomments": "Subject no called/no showed to the first visit. Study staff attempted to reschedule the visit but were not able to contact the subject. Surveys were completed for V1 but no other procedures. ", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "2", "main_record_id": "10290", "obtain_date": "2022-02-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-08", "sp_v1_preop_date": "2022-02-16", "sp_v2_6wk_date": "2022-04-19", "sp_v3_3mo_date": "2022-06-08", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "38", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Just not interested in research", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50054": {"age": "80", "consent_process_form_complete": "2", "date_and_time": "2021-06-24 12:10", "date_of_contact": "2021-06-14", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10049", "obtain_date": "2021-06-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-11", "sp_v1_preop_date": "2021-07-16", "sp_v2_6wk_date": "2021-09-22", "sp_v3_3mo_date": "2021-11-11", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50058": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Will not have time to do the daily surveys", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50064": {"age": "44", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 11:28", "date_of_contact": "2021-06-30", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10067", "obtain_date": "2021-07-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-20", "sp_v1_preop_date": "2021-07-13", "sp_v2_6wk_date": "2021-08-31", "sp_v3_3mo_date": "2021-10-20", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Might go to another hospital because of insurance problems ", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "82", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50066": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 12:52", "date_of_contact": "2021-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10065", "obtain_date": "2021-07-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-08", "sp_v1_preop_date": "2021-08-03", "sp_v2_6wk_date": "2021-12-20", "sp_v3_3mo_date": "2022-02-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50070": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "2021-07-01 11:30", "date_of_contact": "2021-06-30", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10066", "obtain_date": "2021-07-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-10", "sp_v1_preop_date": "2021-08-06", "sp_v2_6wk_date": "2021-09-21", "sp_v3_3mo_date": "2021-11-10", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Transportation", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50072": {"age": "63", "consent_process_form_complete": "2", "date_and_time": "2021-07-22 11:50", "date_of_contact": "2021-07-22", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10083", "obtain_date": "2021-07-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-09", "sp_v1_preop_date": "2021-08-03", "sp_v2_6wk_date": "2021-09-20", "sp_v3_3mo_date": "2021-11-09", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50073": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Cannot get MRI due to defibrillator", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50076": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-07-06 12:19", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10069", "obtain_date": "2021-07-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "47", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She's in too much pain to partake in the tests. ", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50080": {"age": "71", "consent_process_form_complete": "2", "date_and_time": "2021-07-06 12:11", "date_of_contact": "2021-07-06", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10068", "obtain_date": "2021-07-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-14", "sp_v1_preop_date": "2021-07-09", "sp_v2_6wk_date": "2021-08-25", "sp_v3_3mo_date": "2021-10-14", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50081": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10363", "obtain_date": "2022-05-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-04", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-06-15", "sp_v3_3mo_date": "2022-08-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50082": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No transportation to main campus ", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50085": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50086": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50087": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50088": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50091": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50092": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50093": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50094": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50095": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Extremely claustrophobic ", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50096": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50097": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50098": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50099": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50100": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50101": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much time for baseline visit", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50102": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke with family and declined after ", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50103": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Is uncomfortable with getting an MRI", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50104": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50105": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "2021-09-16 10:37", "date_of_contact": "2021-07-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10143", "obtain_date": "2021-09-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-07", "sp_v1_preop_date": "2021-09-16", "sp_v2_6wk_date": "2021-11-17", "sp_v3_3mo_date": "2022-01-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50106": {"age": "N/A", "consent_process_form_complete": "0", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject had personal issues and feeling overwhelmed. She was willing to do it after her surgery but per study protocol that would exclude her. ", "ewdateterm": "2021-08-31", "ewdisreasons": "1|5", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10096", "obtain_date": "2021-08-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-02", "sp_v1_preop_date": "2021-08-31", "sp_v2_6wk_date": "2021-10-14", "sp_v3_3mo_date": "2021-12-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50107": {"age": "75", "consent_process_form_complete": "2", "date_and_time": "2021-08-19 08:23", "date_of_contact": "2021-08-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10098", "obtain_date": "2021-08-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-03", "sp_v1_preop_date": "2021-08-18", "sp_v2_6wk_date": "2021-10-15", "sp_v3_3mo_date": "2021-12-03", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50108": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Paper copy given in clinic", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50109": {"age": "69", "consent_process_form_complete": "2", "date_and_time": "2021-08-19 08:19", "date_of_contact": "2021-08-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10102", "obtain_date": "2021-08-11", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-07", "sp_v1_preop_date": "2021-08-24", "sp_v2_6wk_date": "2021-10-19", "sp_v3_3mo_date": "2021-12-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50110": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50111": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50112": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50113": {"age": "71", "consent_process_form_complete": "2", "date_and_time": "2021-09-09 15:45", "date_of_contact": "2021-08-09", "dem_race": "2", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10103", "obtain_date": "2021-10-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-14", "sp_v1_preop_date": "2021-10-11", "sp_v2_6wk_date": "2021-11-24", "sp_v3_3mo_date": "2022-01-13", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50114": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-28 11:41:37", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Research staff had a brief retraining session on the importance of screening questions before study procedures. ", "erep_protdev_desc": "Study staff conducted imaging and cuff procedures without asking the subject the contraindication questions. After the imaging was completed, research staff asked the question regarding contraindication of cuff. Subject reported having a history of neuropathy. Study staff had a conversation with the subject about the increased risk of complication from the cuff. Study staff asked if the subject had any questions. Subject reported no. Study staff asked if the subject would like to speak to a physician/PI. Subject reported no. Study staff asked if the subject was comfortable continuing with study procedures. Subject reported yes. Study staff informed subject that if they had any change to their health at any point now or in the future to please contact the research team. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "60", "consent_process_form_complete": "2", "date_and_time": "2022-04-07 11:58", "date_of_contact": "2021-08-09", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10341", "obtain_date": "2022-04-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-11", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-05-23", "sp_v3_3mo_date": "2022-07-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50115": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50116": {"age": "62", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2021-08-09", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10133", "obtain_date": "2021-09-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-10", "sp_v1_preop_date": "2021-09-07", "sp_v2_6wk_date": "2021-10-22", "sp_v3_3mo_date": "2021-12-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50117": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50118": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "call monday", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50119": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2021-08-31 10:51", "date_of_contact": "2021-08-16", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10120", "obtain_date": "2021-08-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-11", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2021-12-23", "sp_v3_3mo_date": "2022-02-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50120": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50121": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-08-25 09:35", "date_of_contact": "2021-08-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject was enrolled in the study, but elected to get the second knee done within three months after she had signed consent. No study related procedures were preformed. ", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "2", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10114", "obtain_date": "2021-08-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50122": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50123": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-09-13 14:34", "date_of_contact": "2021-08-20", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10136", "obtain_date": "2021-09-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-20", "sp_v1_preop_date": "2021-09-14", "sp_v2_6wk_date": "2021-11-01", "sp_v3_3mo_date": "2021-12-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50124": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50125": {"age": "56", "consent_process_form_complete": "2", "date_and_time": "2021-09-09 12:13", "date_of_contact": "2021-08-26", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10147", "obtain_date": "2021-09-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-25", "sp_v1_preop_date": "2021-10-20", "sp_v2_6wk_date": "2021-12-05", "sp_v3_3mo_date": "2022-01-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50126": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50127": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2021-09-02 10:20", "date_of_contact": "2021-08-30", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10119", "obtain_date": "2021-08-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-05", "sp_v1_preop_date": "2021-10-01", "sp_v2_6wk_date": "2021-11-15", "sp_v3_3mo_date": "2022-01-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50128": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "said will call us if interested ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50129": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Said will call office if interested ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50130": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Cannot get MRI", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50131": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-09-08 14:31", "date_of_contact": "2021-09-02", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10135", "obtain_date": "2021-09-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-30", "sp_v1_preop_date": "2021-09-21", "sp_v2_6wk_date": "2021-11-10", "sp_v3_3mo_date": "2021-12-30", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50132": {"age": "68", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2021-09-07", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10132", "obtain_date": "2021-09-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-20", "sp_v1_preop_date": "2021-09-17", "sp_v2_6wk_date": "2021-11-01", "sp_v3_3mo_date": "2021-12-20", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50133": {"age": "57", "consent_process_form_complete": "2", "date_and_time": "2021-11-23 13:51", "date_of_contact": "2021-09-14", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10153", "obtain_date": "2021-09-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-30", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-01-11", "sp_v3_3mo_date": "2022-03-01", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50134": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50135": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50136": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50137": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not answer follow-up calls after repeated tries", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50138": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not comfortable with information shared at the federal government level", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50139": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50140": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50141": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophbic ", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50142": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Already had surgery ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50143": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50144": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50145": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50146": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4|3", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50147": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50148": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50149": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50150": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50151": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Subject has a metal insert in her lumbar region that prevents her from getting MRIs", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50152": {"age": "55", "consent_process_form_complete": "2", "date_and_time": "2021-09-30 16:00", "date_of_contact": "2021-09-21", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10152", "obtain_date": "2021-09-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-27", "sp_v1_preop_date": "2021-09-23", "sp_v2_6wk_date": "2021-11-07", "sp_v3_3mo_date": "2021-12-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50153": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50154": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50155": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50157": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic ", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50158": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "will call if interested ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50159": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic ", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50160": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Subject in too much pain and doesn't have anyone to help her get about. ", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50161": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic ", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50162": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "No surgery ", "ewdateterm": "2022-08-24", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10186", "obtain_date": "2021-10-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "0", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50163": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50164": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Not ready for surgery yet", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50165": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50166": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No transportation ", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50167": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Will call us", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50168": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Will call us", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50169": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-10-20 08:06", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10193", "obtain_date": "2021-10-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-19", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-03-02", "sp_v3_3mo_date": "2022-04-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50170": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2021-10-25 16:53", "date_of_contact": "2021-10-19", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10201", "obtain_date": "2021-10-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-03", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2021-12-15", "sp_v3_3mo_date": "2022-02-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "50171": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50172": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Subject now wants to be called in the first week o January because she's unsure if she wants to maintain the surgery date or push it to spring", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50173": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50174": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50175": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50176": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50177": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No transportation, coming from suburb", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50178": {"age": "69", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 10:16", "date_of_contact": "2021-11-02", "dem_race": "5", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10244", "obtain_date": "2021-12-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-15", "sp_v1_preop_date": "2022-02-22", "sp_v2_6wk_date": "2022-04-26", "sp_v3_3mo_date": "2022-06-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50179": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 10:14", "date_of_contact": "2021-11-03", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10235", "obtain_date": "2021-11-30", "participation_interest": "2", "ptinterest_comment": "Before first study visit", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-15", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-04-26", "sp_v3_3mo_date": "2022-06-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50180": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Wrong entry. Subject's surgery occurred in October", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50181": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Never showed up for in-person visit. Surgery already occurred", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50182": {"age": "74", "consent_process_form_complete": "2", "date_and_time": "2022-04-04 12:08", "date_of_contact": "2021-11-10", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10331", "obtain_date": "2022-04-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-12", "sp_v1_preop_date": "2022-04-04", "sp_v2_6wk_date": "2022-05-24", "sp_v3_3mo_date": "2022-07-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50183": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She will contact us", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50184": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50185": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject no called/no showed to the first visit. Study staff attempted to reschedule the visit but were not able to make contact with the subject before their surgery. No study related procedures were completed. ", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10229", "obtain_date": "2021-11-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50186": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50187": {"age": "N/A", "consent_process_form_complete": "0", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject was not able to schedule a visit before their surgery. No study related tasks were completed.", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10228", "obtain_date": "2021-11-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50188": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Subject never returned calls or answered follow up call. Surgery occurred", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50189": {"age": "58", "consent_process_form_complete": "2", "date_and_time": "2021-12-01 08:01", "date_of_contact": "2021-11-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10237", "obtain_date": "2021-12-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-27", "sp_v1_preop_date": "2021-12-01", "sp_v2_6wk_date": "2022-02-07", "sp_v3_3mo_date": "2022-03-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50190": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50191": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50192": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50193": {"age": "54", "consent_process_form_complete": "2", "date_and_time": "2021-12-17 08:00", "date_of_contact": "2021-12-02", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10256", "obtain_date": "2021-12-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-21", "sp_v1_preop_date": "2021-12-17", "sp_v2_6wk_date": "2022-02-01", "sp_v3_3mo_date": "2022-03-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50194": {"age": "52", "consent_process_form_complete": "2", "date_and_time": "2021-12-06 15:58", "date_of_contact": "2021-12-03", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10245", "obtain_date": "2021-12-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-24", "sp_v1_preop_date": "2022-03-23", "sp_v2_6wk_date": "2022-05-05", "sp_v3_3mo_date": "2022-06-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50195": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-12-06 16:00", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject elected to withdraw from the study due to COVID and time constraints. ", "ewdateterm": "2022-02-08", "ewdisreasons": "1|4|6", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "10242", "obtain_date": "2021-12-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-11", "sp_v1_preop_date": "2022-01-07", "sp_v2_6wk_date": "2022-02-22", "sp_v3_3mo_date": "2022-04-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50196": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50197": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50198": {"age": "78", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 09:51", "date_of_contact": "2021-12-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10243", "obtain_date": "2021-12-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-04", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-02-15", "sp_v3_3mo_date": "2022-04-04", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50199": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50200": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50201": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50202": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-05-05 08:28", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject Signed consent 12/15/2021with a surgery date of 1/25/2022, and then canceled surgery on 12/20/202. Subject has not called to reschedule or returned to joints clinic since. ", "ewdateterm": "2022-05-20", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10365", "obtain_date": "2021-12-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50203": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 10:06", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject was not able to find time before surgery to schedule their visit. No study related procedures were completed. ", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10259", "obtain_date": "2021-12-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50204": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50205": {"age": "62", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 10:09", "date_of_contact": "2021-12-13", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10252", "obtain_date": "2021-12-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-25", "sp_v1_preop_date": "2022-01-05", "sp_v2_6wk_date": "2022-04-08", "sp_v3_3mo_date": "2022-05-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50206": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2021-12-20 10:11", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject signed up for the study, but study staff was unable to schedule a visit that would work with the subject schedule prior to surgery. No study related procedures were completed. ", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10254", "obtain_date": "2021-12-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-28", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-05-09", "sp_v3_3mo_date": "2022-06-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50207": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Subject lives in the suburb. She was willing to do it if the study occurred in the Orland Park campus. ", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50208": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50209": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4|1", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50210": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Will call when she picks a surgery date ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50211": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50212": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50213": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50214": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Drive is too far", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50215": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Subject stopped answering phone ", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50216": {"adverse_effects": {"1": {"erep_action_taken": "Research MRI halted and not resumed", "erep_ae_date": "", "erep_ae_desc": "While subject was undergoing research MRI as a part of her\r\nBaseline A2CPS visit she reported feeling short of breath and\r\n\"having trouble breathing\" and asked to be removed from\r\nthe scanner. After being removed from the scanner the\r\nsubject reported she had experienced claustrophobia during\r\npast MRI's requiring sedation. She reported feeling better as\r\nsoon as she was out of the MRI and no further symptoms.\r\nShe was seen by multiple providers from her clinical care\r\nteam throughout the rest of the day as a part of her preoperative SOC visit.", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-05-19 09:51:11", "erep_onset_date": "2022-03-01 10:00", "erep_outcome": "Recovered without sequelae", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-03-01 10:10", "erep_visit_inv": "2"}}, "age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-02-11 13:05", "date_of_contact": "2022-01-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject had V1 and all pre-op appointments on the same day with the intention of doing everything in one day. The visit started with the MRI. A few minutes into the MRI the subject asked to be removed and brought to her appointments. She did not complete anything related to the study after that. ", "ewdateterm": "2022-05-12", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10286", "obtain_date": "2022-02-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-15", "sp_v1_preop_date": "2022-03-01", "sp_v2_6wk_date": "2022-04-26", "sp_v3_3mo_date": "2022-06-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50217": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50218": {"age": "59", "consent_process_form_complete": "2", "date_and_time": "2022-02-16 14:31", "date_of_contact": "2022-02-03", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10291", "obtain_date": "2022-02-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50219": {"age": "56", "consent_process_form_complete": "2", "date_and_time": "2022-04-15 14:55", "date_of_contact": "2022-02-07", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10327", "obtain_date": "2022-03-30", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-21", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-06-02", "sp_v3_3mo_date": "2022-07-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50220": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50221": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-03-03 08:34", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject no called/no showed to the first visit. Study team attempted to reschedule but no contact was made. No study related procedures were completed. ", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10306", "obtain_date": "2022-03-03", "participation_interest": "2", "ptinterest_comment": "Spoke with again, still thinking about it ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50222": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50223": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Stopped answering phone", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50224": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Travel issues ", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50225": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50226": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50227": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50228": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50229": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50230": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Potential subject is interested in doing study but lives in Indiana and will have trouble with transportation so she declined. ", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50231": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50232": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Is ruled out for wanting second knee done ASAP", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50233": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50234": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50235": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50236": {"age": "78", "consent_process_form_complete": "2", "date_and_time": "2022-03-03 14:39", "date_of_contact": "2022-03-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10307", "obtain_date": "2022-03-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-16", "sp_v1_preop_date": "2022-03-07", "sp_v2_6wk_date": "2022-04-27", "sp_v3_3mo_date": "2022-06-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50237": {"age": "63", "consent_process_form_complete": "2", "date_and_time": "2022-03-04 13:05", "date_of_contact": "2022-03-02", "dem_race": "3", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10309", "obtain_date": "2022-03-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-29", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-05-10", "sp_v3_3mo_date": "2022-06-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50238": {"age": "72", "consent_process_form_complete": "2", "date_and_time": "2022-03-04 10:49", "date_of_contact": "2022-03-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10308", "obtain_date": "2022-03-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-09", "sp_v1_preop_date": "2022-05-04", "sp_v2_6wk_date": "2022-06-20", "sp_v3_3mo_date": "2022-08-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50239": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50240": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50241": {"age": "67", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:21", "date_of_contact": "2022-02-28", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10350", "obtain_date": "2022-04-20", "participation_interest": "1", "ptinterest_comment": "Wants to meet in person to discuss further ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-28", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-06-09", "sp_v3_3mo_date": "2022-07-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50242": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50243": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2022-04-05 13:40", "date_of_contact": "2022-03-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10332", "obtain_date": "2022-04-05", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-20", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-06-01", "sp_v3_3mo_date": "2022-07-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50244": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50245": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-10 14:48:47", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "New plan to allowed one business day between enrollment and visit one must occur now to prevent this from occurring again. ", "erep_protdev_desc": "Subject was enrolled the night of March 9th, 2022. During their visit on March 10th, study staff realized that only 86 days had elapsed between the first TKA and the second TKA. Visit was conducted as normal. ", "erep_protdev_type": "1", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "1"}}, "age": "61", "consent_process_form_complete": "2", "date_and_time": "2022-03-10 07:23", "date_of_contact": "2022-03-09", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10310", "obtain_date": "2022-03-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-16", "sp_v1_preop_date": "2022-03-10", "sp_v2_6wk_date": "2022-04-27", "sp_v3_3mo_date": "2022-06-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50246": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:22", "date_of_contact": "2022-03-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10371", "obtain_date": "2022-05-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-19", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-06-30", "sp_v3_3mo_date": "2022-08-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50247": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2022-03-16 10:11", "date_of_contact": "2022-03-10", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10315", "obtain_date": "2022-03-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-18", "sp_v1_preop_date": "2022-03-16", "sp_v2_6wk_date": "2022-04-29", "sp_v3_3mo_date": "2022-06-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50248": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50250": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-03-28 13:55", "date_of_contact": "2022-03-17", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10325", "obtain_date": "2022-03-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-06", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-05-18", "sp_v3_3mo_date": "2022-07-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50251": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject was unable to schedule baseline before surgery ", "ewdateterm": "2022-08-24", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10456", "obtain_date": "2022-08-24", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50252": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "2022-03-24 08:23", "date_of_contact": "2022-03-17", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10321", "obtain_date": "2022-03-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-11", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-05-23", "sp_v3_3mo_date": "2022-07-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50253": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "MRI", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50254": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50255": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50256": {"age": "60", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:19", "date_of_contact": "2022-03-22", "dem_race": "1", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10378", "obtain_date": "2022-05-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "N/A", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-27", "sp_v1_preop_date": "2022-05-24", "sp_v2_6wk_date": "2022-07-08", "sp_v3_3mo_date": "2022-08-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50257": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject was not able to schedule baseline before surgery ", "ewdateterm": "2022-08-24", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10455", "obtain_date": "2022-08-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50258": {"age": "59", "consent_process_form_complete": "2", "date_and_time": "2022-03-25 08:54", "date_of_contact": "2022-03-24", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10323", "obtain_date": "2022-03-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-04", "sp_v1_preop_date": "2022-03-15", "sp_v2_6wk_date": "2022-05-16", "sp_v3_3mo_date": "2022-07-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50259": {"age": "62", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:25", "date_of_contact": "2022-03-29", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10329", "obtain_date": "2022-04-01", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-12", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-05-24", "sp_v3_3mo_date": "2022-07-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50260": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50261": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "MRI", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50262": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50263": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50264": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50265": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50266": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10377", "obtain_date": "2022-05-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-25", "sp_v1_preop_date": "2022-08-12", "sp_v2_6wk_date": "2022-10-06", "sp_v3_3mo_date": "2022-11-25", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50267": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50268": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-08 12:34:15", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Research assistant wrote in permanent marker \"Ask History\" on the cuff and added a checkbox to the checklist to make sure history is assessed before QSTs are started. ", "erep_protdev_desc": "Cuff was applied to the subject during QST assessment. Research staff inflated the cuff to baseline and then assessed the prior history contraindications. Subject reported a history of blood clots. Cuff was removed and assessment was stopped. Cuff was applied the MRI but not inflated. Subject was informed that this increased their risk and was offered an opportunity to speak with a physician or PI. Subject declined. Subject was instructed to monitor their health and notify the research team if anything changes. Subject agreed to continue the remaining portion of the visit. ", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "55", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:30", "date_of_contact": "2022-03-31", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10335", "obtain_date": "2022-04-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-22", "sp_v1_preop_date": "2022-04-15", "sp_v2_6wk_date": "2022-06-03", "sp_v3_3mo_date": "2022-07-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50269": {"age": "68", "consent_process_form_complete": "2", "date_and_time": "2022-04-15 11:43", "date_of_contact": "2022-04-05", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10338", "obtain_date": "2022-04-06", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-25", "sp_v1_preop_date": "2022-04-21", "sp_v2_6wk_date": "2022-06-06", "sp_v3_3mo_date": "2022-07-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50270": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50271": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50272": {"age": "58", "consent_process_form_complete": "2", "date_and_time": "2022-04-27 16:21", "date_of_contact": "2022-04-18", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10360", "obtain_date": "2022-04-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-13", "sp_v1_preop_date": "2022-05-05", "sp_v2_6wk_date": "2022-06-24", "sp_v3_3mo_date": "2022-08-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50273": {"age": "73", "consent_process_form_complete": "2", "date_and_time": "2022-04-26 12:47", "date_of_contact": "2022-04-19", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10354", "obtain_date": "2022-04-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-13", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-06-24", "sp_v3_3mo_date": "2022-08-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50274": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50275": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50276": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50277": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50278": {"age": "69", "consent_process_form_complete": "2", "date_and_time": "2022-04-25 10:49", "date_of_contact": "2022-04-25", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10356", "obtain_date": "2022-04-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-09", "sp_v1_preop_date": "2022-06-29", "sp_v2_6wk_date": "2022-09-20", "sp_v3_3mo_date": "2022-11-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50279": {"age": "80", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:32", "date_of_contact": "2022-04-26", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10403", "obtain_date": "2022-06-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-23", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-08-04", "sp_v3_3mo_date": "2022-09-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50280": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4|3", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50281": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "2022-04-27 15:37", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Upon further review, the PI could not rule out revision for infection for this subject. They decided to end their enrollment in the study before any study related activities could occur. ", "ewdateterm": "2022-05-03", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10359", "obtain_date": "2022-04-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "1", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "0", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50282": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10373", "obtain_date": "2022-05-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50283": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50284": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2022-07-12 14:43", "date_of_contact": "2022-04-29", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10426", "obtain_date": "2022-07-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-18", "sp_v1_preop_date": "2022-07-12", "sp_v2_6wk_date": "2022-08-29", "sp_v3_3mo_date": "2022-10-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50285": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10442", "obtain_date": "2022-08-02", "participation_interest": "0", "ptinterest_comment": "After expressing interest, subject did not return calls after several tries. ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-13", "sp_v1_preop_date": "2022-08-18", "sp_v2_6wk_date": "2022-10-25", "sp_v3_3mo_date": "2022-12-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50286": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50287": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50288": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2022-05-23 12:42", "date_of_contact": "2022-05-03", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10389", "obtain_date": "2022-05-23", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-07", "sp_v1_preop_date": "2022-06-05", "sp_v2_6wk_date": "2022-07-19", "sp_v3_3mo_date": "2022-09-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50289": {"age": "76", "consent_process_form_complete": "2", "date_and_time": "2022-05-05 12:29", "date_of_contact": "2022-05-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10369", "obtain_date": "2022-05-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-05-11", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50290": {"age": "50", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:34", "date_of_contact": "2022-05-04", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10370", "obtain_date": "2022-05-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-05", "sp_v1_preop_date": "2022-06-08", "sp_v2_6wk_date": "2022-08-16", "sp_v3_3mo_date": "2022-10-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50291": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50292": {"age": "66", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:36", "date_of_contact": "2022-05-05", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10372", "obtain_date": "2022-05-06", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-21", "sp_v1_preop_date": "2022-06-10", "sp_v2_6wk_date": "2022-08-02", "sp_v3_3mo_date": "2022-09-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "50293": {"age": "81", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:40", "date_of_contact": "2022-05-10", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10411", "obtain_date": "2022-06-23", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-07", "sp_v1_preop_date": "2022-07-06", "sp_v2_6wk_date": "2022-08-18", "sp_v3_3mo_date": "2022-10-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50294": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50295": {"age": "N/A", "consent_process_form_complete": "0", "date_and_time": "2022-07-11 15:43", "date_of_contact": "2022-05-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject missed two appointments for baseline and was unable to reschedule before he surgery. ", "ewdateterm": "2022-08-24", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10410", "obtain_date": "2022-06-23", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50296": {"age": "80", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 15:17", "date_of_contact": "2022-05-16", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10409", "obtain_date": "2022-06-23", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-01", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-09-12", "sp_v3_3mo_date": "2022-11-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50297": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50298": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Surgeon mentioned study prior to a member of the research team entering the room and reported they declined before research approached. ", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50299": {"age": "62", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 10:06", "date_of_contact": "2022-05-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10392", "obtain_date": "2022-05-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-03", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-09-14", "sp_v3_3mo_date": "2022-11-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50300": {"age": "48", "consent_process_form_complete": "2", "date_and_time": "2022-07-11 11:39", "date_of_contact": "2022-05-26", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10393", "obtain_date": "2022-05-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-18", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-08-29", "sp_v3_3mo_date": "2022-10-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50301": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50302": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50303": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50304": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50305": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50306": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50307": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Surgery cancelled till further notice", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50308": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50309": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50310": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50311": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Subject signed consent on 6/3/2022 before PI review. PI assessed eligibility on 6/23/2022 and reported the subject has rheumatoid arthritis. Subject was notified and withdrawn. ", "ewdateterm": "2022-06-23", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "10412", "obtain_date": "2022-06-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "1", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "1", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50312": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50313": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50314": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Subject said she'll call back when she decides ", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50315": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50316": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too close to surgery", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50317": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Will contact us", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50318": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50319": {"age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10413", "obtain_date": "2022-06-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-21", "sp_v1_preop_date": "2022-07-18", "sp_v2_6wk_date": "2022-09-01", "sp_v3_3mo_date": "2022-10-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50320": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50321": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50322": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50323": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50324": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50325": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10418", "obtain_date": "2022-06-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-23", "sp_v1_preop_date": "2022-07-19", "sp_v2_6wk_date": "2022-10-04", "sp_v3_3mo_date": "2022-11-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50326": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50327": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50328": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50329": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50330": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-23", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10416", "obtain_date": "2022-06-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-06", "sp_v1_preop_date": "2022-07-05", "sp_v2_6wk_date": "2022-08-17", "sp_v3_3mo_date": "2022-10-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50331": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50332": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50333": {"age": "56", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10439", "obtain_date": "2022-07-29", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-09", "sp_v1_preop_date": "2022-08-26", "sp_v2_6wk_date": "2022-10-21", "sp_v3_3mo_date": "2022-12-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50334": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "5", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10440", "obtain_date": "2022-07-29", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-09", "sp_v1_preop_date": "2022-09-01", "sp_v2_6wk_date": "2022-10-21", "sp_v3_3mo_date": "2022-12-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50335": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50336": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50337": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50338": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50339": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-24 13:33:59", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Research staff discussed the importance of withdrawing subjects in a timely manner. ", "erep_protdev_desc": "Subject completed surveys but was not eligible for the study. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "3", "ethnic": "N/A", "ewcomments": "Subject was identified as having RA by the PI. Subject completed baseline surveys before being withdrawn. Study staff discussed the importance of withdrawing ineligible subjects in a timely manner. ", "ewdateterm": "2022-08-24", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "2", "main_record_id": "10422", "obtain_date": "2022-07-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-27", "sp_v1_preop_date": "2022-07-19", "sp_v2_6wk_date": "2022-09-07", "sp_v3_3mo_date": "2022-10-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50340": {"adverse_effects": {"1": {"erep_action_taken": "Subject will stay in study but does not wish to complete MRI.", "erep_ae_date": "", "erep_ae_desc": "Subject reported no history of claustrophobia and marked \"no\" to claustrophobia on MRI screening form. 15 minutes into the MRI the subject asked to be removed and reported feeling anxious and being out of breath. Subject immediately removed from MRI and all symptoms resolved within a few minutes. Subject reported that they had just learned they were claustrophobic. Subject declined to continue MRI.", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-07-28 13:03:03", "erep_onset_date": "2022-07-19 10:00", "erep_outcome": "Recovered without sequelae", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-07-19 10:15", "erep_visit_inv": "2"}}, "age": "56", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10423", "obtain_date": "2022-07-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-20", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-08-31", "sp_v3_3mo_date": "2022-10-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50341": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10425", "obtain_date": "2022-07-11", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-19", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-10-31", "sp_v3_3mo_date": "2022-12-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50342": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50343": {"age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10424", "obtain_date": "2022-07-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-02", "sp_v1_preop_date": "2022-07-26", "sp_v2_6wk_date": "2022-09-13", "sp_v3_3mo_date": "2022-11-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50344": {"age": "77", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10436", "obtain_date": "2022-07-27", "participation_interest": "N/A", "ptinterest_comment": "vm", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-23", "sp_v1_preop_date": "2022-08-15", "sp_v2_6wk_date": "2022-10-04", "sp_v3_3mo_date": "2022-11-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50345": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50346": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50347": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50348": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "no contact", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50349": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50350": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10443", "obtain_date": "2022-08-02", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-29", "sp_v1_preop_date": "2022-08-19", "sp_v2_6wk_date": "2022-10-10", "sp_v3_3mo_date": "2022-11-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50351": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10441", "obtain_date": "2022-08-02", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50352": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "2022-07-29 13:37", "date_of_contact": "2022-07-27", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "10438", "obtain_date": "2022-07-29", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-01", "sp_v1_preop_date": "2022-07-29", "sp_v2_6wk_date": "2022-09-12", "sp_v3_3mo_date": "2022-11-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "50353": {"age": "55", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-04", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10446", "obtain_date": "2022-08-05", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-08-26", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50354": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50355": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50356": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50357": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "5", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10450", "obtain_date": "2022-08-19", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-03", "sp_v1_preop_date": "2022-09-21", "sp_v2_6wk_date": "2022-11-13", "sp_v3_3mo_date": "2023-01-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50358": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10465", "obtain_date": "2022-09-06", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50359": {"age": "77", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "3", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10448", "obtain_date": "2022-08-16", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-14", "sp_v1_preop_date": "2022-09-22", "sp_v2_6wk_date": "2022-11-24", "sp_v3_3mo_date": "2023-01-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50360": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50361": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50362": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10454", "obtain_date": "2022-08-24", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50363": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50364": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No contact", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50365": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50366": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Transportation", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50367": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50368": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50369": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50370": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50371": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50372": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50373": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50374": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10462", "obtain_date": "2022-08-26", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "54", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50375": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "10463", "obtain_date": "2022-08-30", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-14", "sp_v1_preop_date": "2022-09-06", "sp_v2_6wk_date": "2022-10-26", "sp_v3_3mo_date": "2022-12-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50376": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10461", "obtain_date": "2022-08-26", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-17", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-11-27", "sp_v3_3mo_date": "2023-01-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50377": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50378": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "42", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50379": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Can't get time off from work before surgery", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50380": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50381": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50382": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "10466", "obtain_date": "2022-09-06", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "50383": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "uchicago", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50384": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50385": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50386": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50387": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50388": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50389": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50390": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50391": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50392": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50393": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50394": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50395": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50396": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50397": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50398": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50399": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "uchicago", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "50400": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance", "reason_not_interested": "4", "redcap_data_access_group": "uchicago", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}}, "2": {"1": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined because there is a lot going on before surgery and surgery is coming up.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient was unavailable and would like to talk about the study the following Monday at a.m. (10 a.m.)", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "No answer. Contacted pt again on 3/9/22, no answer.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "No answer. Contacted pt on 3/9/2022. Patient would like a call back in the afternoon on 3/10/2022. Pt declined the study.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "On day of baseline visit, pt. had flu and said that they weren't able to come for a baseline visit before surgery. So patient decided to stop further participation with the study. ", "ewdateterm": "2022-04-18", "ewdisreasons": "6", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20082", "obtain_date": "2022-03-21", "participation_interest": "2", "ptinterest_comment": "Spoke with pt on 3/14/22 at 2:03 p.m. Pt is still interested in participating, but he hasn't had the time to go over the e-consent. A follow-up phone call is scheduled for 3/21/22 afternoon.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-25", "sp_v1_preop_date": "2022-04-18", "sp_v2_6wk_date": "2022-06-06", "sp_v3_3mo_date": "2022-07-25", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "100008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "25", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was sleeping. Wife has asked us to call around 1-2 p.m. Pt is interested and agreed to receive study information in his email.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100010": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20087", "obtain_date": "2022-03-24", "participation_interest": "2", "ptinterest_comment": "3/23/22 3:30 p.m. No answer", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-06", "sp_v1_preop_date": "2022-03-30", "sp_v2_6wk_date": "2022-05-18", "sp_v3_3mo_date": "2022-07-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "100011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "WLC called on 3/24/22, no answer\r\n2nd attempt on 3/28/22 at 11:28 a.m., pt was with two nurses, asked to call back in half an hour.\r\n3/31: Pt stated that he spoke to Dr. Kulkarni's nurse and that he can't travel. Therefore, he declined to participate.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt prefers to do visits at Jackson. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "3/29/22 09:04 NA\r\n3/31 10:36 NA\r\n4/5 15:48 Declined", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "36", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient doesn't drive.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance-related concern - too far from patient's home", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobia ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "WLC: 4/6 No answer\r\nWLC: 4/7 Left voicemail\r\nAJ: 4/12 \r\n5/23 WLC updated record - Surgery has passed. No return calls from the patient.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "37", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/15: AJ left voicemail\r\n4/18: AJ left voicemail\r\n4/19: AJ spoke with patient; she wants to think about it. Will call back on 4/20 at 2:30pm\r\n4/20: AJ called back for answer. Patient still has not signed consent, but says she will do it when she gets home. Will call back on 4/21 @ 10AM\r\n4/21: AJ left voicemail for patient to call back\r\n4/22: AJ left final voicemail for patient to call back to join. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "AJ 4/18: Wife answered phone and says he has dementia and may not comply.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "AJ 4/19: Declined; won't have time to travel due to work.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "AJ 4/20: Left voicemail.\r\nAJ 4/21: Left voicemail. Patient called back on 4/21. Wants to think about joining. Email link with ICF sent. AJ will call back on 4/22 for decision.\r\nAJ 4/22: Left voicemail for patient to call back", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance-related issue or concern", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/26 WLC: Interested, requested study documents\r\n5/2 WLC: Pt is not feeling well. The study trips are too much for her. Therefore, patient declined.", "reason_not_interested": "4|0", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "4/27: Went straight to voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/27 WLC: pt needs to take care of granddaughter and sounds interested. Pt was offered study information in the mail.\r\n5/3/22: Pt stated that she has a cochlear implant and won't be able to get an MRI.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "5/5: Follow up with patient. Patient stated that he is not feeling well and plan to sign consent today.\r\n5/9: Pt stated that he will get to it. It has been a crazy week.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/9: Pt can't drive ", "reason_not_interested": "4|0", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "5/3 WLC: Left voicemail\r\n5/9, 5/12 WLC: Directed straight to voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "5/9 WLC: Left voicemail to patient\r\n5/12: No Answer", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/12: No Answer\r\n5/13: Buying a house in Florida. Will be travelling back and forth.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/18 WLC: Interested, Sent study information to pt's email\r\n5/23 WLC: Distance-related issue or concern. UM Ann Arbor is the closest to pt's house, but it is too far.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/19 WLC: Left VM\r\n5/23 WLC: Pt just wanted to wait for and complete surgery.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "5/23 WLC: Left voicemail\r\n5/25 WLC: Pt was at work, and asked to be called back at 4 p.m. Called back, but no answer.\r\n6/2 WLC: Declined", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "6/9 WLC: Left voicemail\r\n6/10: Sent study info. to pt for review\r\n6/20: No answer\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/25 WLC: money concerns especially the current inflation and increasing gas prices", "reason_not_interested": "2|0", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/25 WLC: Left Voicemail\r\n6/2 WLC: Declined", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "6/3 WLC: Daughter stated that the patient cannot read or write, experienced no pain\r\nExcluded based on the inability to read English", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/3 WLC: Too much is going on, not interested at this time", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/3 WLC: Too much is going on", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/3 12:13 p.m. WLC: Concerns about long commitment. Wants to think about it and agrees to receive study info via email. Email is sent.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100042": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "6/9 WLC: Left voicemail\r\n6/14: No answer\r\nPt cannot be reached and surgery has passed.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "6/9 WLC: No Answer\r\n6/17: Left VM\r\n6/20: No answer", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/20: No answer\r\n6/22: Not interested due to travel-related issue/concern, but was open for discussion with Dr. Kulkarni. Notified Dr. Kulkarni. \r\n6/24: Followed up with Dr. Kulkarni and Tess. According to Tess, pt declined due to travel and extra testing.\r\n", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/27: Pt expressed interest in joining the study.\r\n7/1 & 7/8: Followed up with the patient and left voice messages\r\n7/5: No answer", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "The patient would not answer and never returned calls.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "33", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "The patient became ineligible during screening.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "The patient became ineligible during screening.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100058": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100062": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "20155", "obtain_date": "2022-08-31", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-16", "sp_v1_preop_date": "2022-09-13", "sp_v2_6wk_date": "2022-10-28", "sp_v3_3mo_date": "2022-12-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "100063": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20160", "obtain_date": "2022-09-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-19", "sp_v1_preop_date": "2022-09-13", "sp_v2_6wk_date": "2022-10-31", "sp_v3_3mo_date": "2022-12-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "100064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4|0", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100070": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "100071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Interested, but the patient has concerns about traveling to either WSU or UM.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "The patient never answered calls and did not return messages.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Participant said they have \"too many things going on\" and would not be able to continue with the study.", "ewdateterm": "2022-09-07", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20157", "obtain_date": "2022-09-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-16", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-10-28", "sp_v3_3mo_date": "2022-12-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "110006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "No answer/wasn't able to get ahold of the patient.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "110009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt lives 4.5 hours away and is does not want to travel for visits -MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Spoke with pt on the phone and he said not for this knee as he is not sure how it is going to go, but plans to have second knee done in 3-4 months. Asked to be re-contacted at time of second knee replacement if eligible 6/27/22- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120003": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-11 10:25:15", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Expectation Items completed on DOS.", "erep_protdev_desc": "Expectation Items not completed within time frame.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-27", "dem_race": "5", "ethnic": "2", "ewcomments": "Pt emailed expressing that she wished to stop participation, did not name any specific reason why. Said we could keep data already collected.", "ewdateterm": "2022-08-09", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "25002", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "LVM and emailed 6/27- MD\r\nLVM 6/29- MD\r\nVerbal yes, would like call after 2PM today to get enrolled 7/5-MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-11", "sp_v1_preop_date": "2022-07-07", "sp_v2_6wk_date": "2022-08-22", "sp_v3_3mo_date": "2022-10-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM and emailed 6/29- MD\r\nDOS moved up, unable to attempt contact again, no response 8/3- MD\r\nLVM 8/8- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM and emailed 6/29- MD\r\nPt called back, MD spoke with pt and after reading email, pt decided they did not want to participate 6/30- MD", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt has extreme claustrophobia and would not be willing to do MRI 6/30- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM and emailed 6/30- MD\r\nSpoke with pt at work, would like additional info emailed and for a call back on Thursday (7/7) 7/5- MD\r\nDeclined- time 7/7- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM and emailed 6/30- MD\r\nPt did not want to come in for visits, says he spends too much time coming to the hospital for appointments already 7/6- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt would not be willing to go into MRI without taking Valium- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120010": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25001", "obtain_date": "2022-08-08", "participation_interest": "2", "ptinterest_comment": "Verbal yes after approached in clinic. Asked for call 7/1 afternoon to go through enrollment process- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-08-11", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt very interested, but needs to make sure she would have a ride. Pt will call me back with answer 7/6- MD\r\nPt concerned with MRI as she has had many in the past, would like to defer for now, but is ok if we re-approach if she comes in for other knee in the future 7/7- MD\r\nPt was re-scheduled for 8/24, called to touch base. Might be trying to move appts around. Call 8/9 morning to see what she's thinking 8/5- MD\r\nLVM 8/9- MD\r\nSpoke with pt. Still wants to defer to other knee as she lives far away and wants definitive dates for possible BL visit 8/12- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Spoke with pt's husband who said pt stepped out for a while, asked for me to email the pt some details. Emailed 7/6- MD\r\nPt would like to defer, too close to surgery date for her to feel comfortable committing at this time 7/7- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is claustrophobic and will not do MRI 7/7- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120014": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25003", "obtain_date": "2022-07-07", "participation_interest": "2", "ptinterest_comment": "LVM and emailed 7/7- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-18", "sp_v1_preop_date": "2022-07-12", "sp_v2_6wk_date": "2022-08-29", "sp_v3_3mo_date": "2022-10-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "120015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too involved for the given time frame 7/11- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was in the middle of a workout. Asked for emailed information and follow-up call later this week 7/11- MD\r\nPt is claustrophobic and would require sedation for MRI 7/15- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt gets frequent MRIs and they cause him anxiety. Also, the distance is too far to come for research visits on top of other visits in Ann Arbor- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spoke with pt in clinic, would like to think about study, will reach out closer to DOS- 7/14- MD\r\n\r\nPt declined- stated he did not remember expressing interest in the study and does not want to participate 8/30 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120019": {"age": "62", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "25009", "obtain_date": "2022-08-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-15", "sp_v1_preop_date": "2022-08-10", "sp_v2_6wk_date": "2022-09-26", "sp_v3_3mo_date": "2022-11-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is nervous about doing the MRIs and decided not to participate 7/18- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120021": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25004", "obtain_date": "2022-07-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-25", "sp_v1_preop_date": "2022-07-21", "sp_v2_6wk_date": "2022-09-05", "sp_v3_3mo_date": "2022-10-25", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "120022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt concerned with time/holiday weekend- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt would like to participate, but is traveling and would like call Thursday (7/21) afternoon to go through consent process 7/18- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120024": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "25005", "obtain_date": "2022-07-18", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-27", "sp_v1_preop_date": "2022-07-25", "sp_v2_6wk_date": "2022-09-07", "sp_v3_3mo_date": "2022-10-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "120025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is claustrophobic and would require sedation for MRI- 7/18 MD\r\n", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is having a very hard time ambulating and is concerned that she would not be able to make it into the study visits/would be \"wiped out\" for a whole day afterwards. 7/20- MD", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is still teaching and could not commit to coming in for study visits 7/22-MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt lives multiple hours away and is not willing to travel for study visits 7/21- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120031": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "25007", "obtain_date": "2022-07-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-02", "sp_v1_preop_date": "2022-07-30", "sp_v2_6wk_date": "2022-09-13", "sp_v3_3mo_date": "2022-11-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "120032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25006", "obtain_date": "2022-07-25", "participation_interest": "2", "ptinterest_comment": "Pt is interested in participating. Would like call Monday morning (7/25) around 9AM to go through consent. 7/22- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt unwilling to do MRI 7/22- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not have time before surgery to come in for a visit 7/27- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not have access to a car and would have a very difficult time getting to Ann Arbor for study visits 7/28- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is unwilling to do MRI 8/3- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120042": {"age": "55", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25008", "obtain_date": "2022-08-05", "participation_interest": "2", "ptinterest_comment": "Pt is unsure if she is having surgery or not. Asked for additional info to be emailed and a call back next Wednesday 8/3. 7/28 - MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-10", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-11-20", "sp_v3_3mo_date": "2023-01-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not want to come in for any study visits 7/28- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too many appointments already, does not want to come in extra for research 8/8- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM and emailed 8/8- MD\r\nLVM 8/9- MD\r\nPt returned call and LVM, called back, no answer 8/9- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not want to come in for MRIs or any other extra visits 8/8- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is isolating prior to surgery and does not want to come in for visits 8/9- MD", "reason_not_interested": "1", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt interested, but unsure if she'd be able to come in for a visit. Can call later today to check in. Also OK with being re-approached for other knee (after new year) 8/9- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM and emailed 8/9-MD\r\nPt lives in the UP and would be willing to do virtual visits but not travel to Ann Arbor 8/12- MD\r\n", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM and emailed 8/9- MD\r\nSpoke with family member who said he was not there. Not sure a good time to call back 8/12- MD\r\nDOS moved to 9/13/22, not interested in research 9/2- MD\r\n", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt goes to Florida 7 months of the year and will be leaving before 3 month visit time. He said he thinks he'll be too busy recovering/ prepping to leave and decided to decline 8/12- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt said he is still working and watching grandkids. Feels like too much to add to his plate 8/12- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120056": {"age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25010", "obtain_date": "2022-08-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-22", "sp_v1_preop_date": "2022-08-17", "sp_v2_6wk_date": "2022-10-03", "sp_v3_3mo_date": "2022-11-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt states that she does not live near the university and it would be difficult for her to get to Ann Arbor for the visits 8/15- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120058": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt said he has a lot going on and does not want to add this to his plate 8/16- MD", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120059": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25011", "obtain_date": "2022-08-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-26", "sp_v1_preop_date": "2022-08-24", "sp_v2_6wk_date": "2022-10-07", "sp_v3_3mo_date": "2022-11-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was driving and asked for info to be emailed. Emailed 8/16- MD\r\nLVM 8/18- SL", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Patient admitted he is very claustrophobic. Exclude. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120062": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-29 10:45:30", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Will make sure patients understand when baseline surveys are due and that due date listed on MDH app is automatically generated and not always correct (if sent within 2 weeks of surgery date). Explain to patient that surveys will close at correct timepoint. Also, will make sure to continue to do reminder calls or emails to ask patients to finish baseline surveys . ", "erep_protdev_desc": "Patient finished baseline surveys on day of surgery. Patient did not realize she needed to do these surveys before her surgery. RA had discussed with patient at baseline visit that surveys were due day before surgery but patient forgot. The due date listed on the MDH app was 9/8. Apologized and explained to patient this due date is not always correct. Patient was amicable and finished surveys today while waiting to be taken back.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-18", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25012", "obtain_date": "2022-08-19", "participation_interest": "2", "ptinterest_comment": "Enroll tomorrow at 10:30am, SL 8/18", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-29", "sp_v1_preop_date": "2022-08-24", "sp_v2_6wk_date": "2022-10-10", "sp_v3_3mo_date": "2022-11-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt was interested in participating, but is very claustrophobic and unwilling to try MRI8/19- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt said Ann Arbor is too far to come for him for the study visits. Would be interested otherwise 8/19- MD", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Emailed 8/19- MD\r\nPt declined MRI, claustrophobic- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120067": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25013", "obtain_date": "2022-08-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-30", "sp_v1_preop_date": "2022-08-25", "sp_v2_6wk_date": "2022-10-11", "sp_v3_3mo_date": "2022-11-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt declined as it is too involved for what he would want to do right now 8/24- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested in undergoing the MRI", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120070": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Emailed 8/23- MD\r\nParticipant asked for table with breakdown of events and will think about it. He will reach out with interest. Sent another email 8/24- MD\r\nPatient did not reach out, no response. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25018", "obtain_date": "2022-09-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-13", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-10-25", "sp_v3_3mo_date": "2022-12-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Exclude- patient extremely claustrophobic", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120073": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-09-12 09:30:26", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Pt completed Expectation Items on DOS. Completed in Coordinator Mode in MDH.", "erep_protdev_desc": "Pt did not complete Expectation Items before they were due.", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25017", "obtain_date": "2022-08-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-12", "sp_v1_preop_date": "2022-09-09", "sp_v2_6wk_date": "2022-10-24", "sp_v3_3mo_date": "2022-12-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient going out of town until right before surgery 8/30 SL\r\n\r\nDeferred participation\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM 8/30 SL\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120076": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM 8/30 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt's phone was going in and out, will email info and try again 9/1- MD\r\n\r\nPatient would like to discuss with husband (forgot about the study) and will cb tomorrow. If would like to enroll will do visit this Friday since surgery is Monday. 9/7 SL\r\n\r\nPatient very overwhelmed with current surgery, declined 9/11 SL", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Would be more interested if visits could be done closer to home- 9/1 MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120079": {"age": "53", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25019", "obtain_date": "2022-09-01", "participation_interest": "2", "ptinterest_comment": "LVM and emailed 9/1- MD\r\nPt called back, verbal yes. Will call when she gets to her office", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-13", "sp_v1_preop_date": "2022-09-09", "sp_v2_6wk_date": "2022-10-25", "sp_v3_3mo_date": "2022-12-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt was very confused and thought that this was required for surgery. Wanted me to talk to her son. I will email information for them to review, but I think enrolling would confuse the patient more 9/1- MD\r\nNo response prior to DOS- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120081": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt said he would not be able to come in for extra in person visits 9/2- MD", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120082": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt was at work, asked for emailed info 9/2- MD\r\n\r\nSpoke to patient and her surgery was moved up from 9/20 to 9/14. Patient did not have time for baseline visit. However, hopes to get other knee done in future and ok being contacted again for this surgery. Deferred participation for this surgery. 9/7/22 SL\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM and emailed- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120085": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "25022", "obtain_date": "2022-09-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-19", "sp_v1_preop_date": "2022-09-14", "sp_v2_6wk_date": "2022-10-31", "sp_v3_3mo_date": "2022-12-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120086": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Emailed 9/8- MD\r\nLVM 9/9- SL\r\n", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120087": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25021", "obtain_date": "2022-09-09", "participation_interest": "2", "ptinterest_comment": "Emailed 9/8- MD\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-19", "sp_v1_preop_date": "2022-09-16", "sp_v2_6wk_date": "2022-10-31", "sp_v3_3mo_date": "2022-12-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120088": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25024", "obtain_date": "2022-09-19", "participation_interest": "2", "ptinterest_comment": "Spoke with pt in clinic. Definitely interested. Contact as soon as she gets on OR schedule 9/8- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-27", "sp_v1_preop_date": "2022-09-26", "sp_v2_6wk_date": "2022-11-07", "sp_v3_3mo_date": "2022-12-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Emailed 9/12- MD\r\nLVM 9/14- MD\r\nLVM 9/15- MD\r\nNo Response prior to DOS", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Emailed 9/12- MD\r\nPt asked for additional emailed info and I will check in later this week 9/14- MD\r\nLVM with cb number 9/16 SL\r\nNo Response prior to DOS", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120091": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Time commitment/ too much additional imaging- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120092": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "25023", "obtain_date": "2022-09-16", "participation_interest": "2", "ptinterest_comment": "Emailed 9/12- MD\r\nVerbal yes, want to go through consent at 7:30 AM Friday, 9/16 with visit first thing Monday morning (9/19) 9/15- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-26", "sp_v1_preop_date": "2022-09-19", "sp_v2_6wk_date": "2022-11-06", "sp_v3_3mo_date": "2022-12-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120093": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No reason, said \"it's not for me\" 9/15- MD", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120094": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt was busy and asked for a call back later today (2PM) 9/15- MD\r\nLVM 9/15- SL\r\nPt did not call back prior to DOS", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120095": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt very interested, call as soon as on OR schedule 9/15- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120096": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too involved", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120097": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25028", "obtain_date": "2022-09-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-28", "sp_v1_preop_date": "2022-09-21", "sp_v2_6wk_date": "2022-11-08", "sp_v3_3mo_date": "2022-12-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120098": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt cannot miss any work prior to surgery. Taking off a lot of time after 9/22- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120099": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt will be out of town until 2 days prior to surgery and does not feel that she could fit a baseline visit in 9/22- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120100": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not able to commit to this 9/22- MD", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120101": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120102": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Would like to defer until other knee as pt does not have any availability prior to DOS", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120103": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25033", "obtain_date": "2022-09-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "120104": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not want to do an MRI. Has never had one but sates she is claustrophobic. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120105": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120106": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM and emailed 9/23- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "120107": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt was busy, but willing to participate. Emailed additional info and will reach back out to patient later today or Monday 9/23- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient stated will contact research staff if changed mind", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want MRI", "reason_not_interested": "3", "redcap_data_access_group": "spectrum_health", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/19/22 Voicemail Left\r\n5/23/22 Spoke with subject- declines participation", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "5/19/22 LVM\r\n5/23/22 LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/19 LVM\r\n5/23 Declined", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/24 Consents and brochure sent via email.\r\n6/1 LVM\r\n6/6 Declines participation", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130007": {"age": "56", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20108", "obtain_date": "2022-05-24", "participation_interest": "2", "ptinterest_comment": "Consent completed in office at visit", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-14", "sp_v1_preop_date": "2022-06-09", "sp_v2_6wk_date": "2022-07-26", "sp_v3_3mo_date": "2022-09-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "130008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Information provided at clinic visit. Would like follow up end of next week (6/2 or 6/3)\r\n6/1: Declined", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/26 left voicemail\r\n5/31 Spoke with patient, information/consents emailed\r\n6/2 Declined", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "38", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "6/2 LVM\r\n6/6 LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives too far away- worried about additional drives into Grand Rapids", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130013": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20124", "obtain_date": "2022-06-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-08", "sp_v1_preop_date": "2022-06-23", "sp_v2_6wk_date": "2022-08-19", "sp_v3_3mo_date": "2022-10-08", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "130014": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20127", "obtain_date": "2022-06-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "59", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-11", "sp_v1_preop_date": "2022-06-30", "sp_v2_6wk_date": "2022-08-22", "sp_v3_3mo_date": "2022-10-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "130015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "MRI", "reason_not_interested": "3", "redcap_data_access_group": "spectrum_health", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Traveling from home, about 60 miles away.", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Still working full time, has already missed 3 days of work", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "33", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "worried about missing work", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130022": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20135", "obtain_date": "2022-07-05", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-26", "sp_v1_preop_date": "2022-07-07", "sp_v2_6wk_date": "2022-09-06", "sp_v3_3mo_date": "2022-10-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "130023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Attempted consent over the phone; signature not working on patient's phone. Patient interested, but spine stimulator unknown during screening- visit 1 canceled and will not enroll.", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130024": {"adverse_effects": {"1": {"erep_action_taken": "Subject will remain in the study but will be unable to have follow-up MRI", "erep_ae_date": "", "erep_ae_desc": "Subject became claustrophobic as soon as the MRI table rolled into position. MRI could not be completed.", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-07-25 09:38:56", "erep_onset_date": "2022-07-21 09:38", "erep_outcome": "Subject was fine as soon as they were off the MRI table.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-07-21 09:38", "erep_visit_inv": "2"}}, "age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20137", "obtain_date": "2022-07-12", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-27", "sp_v1_preop_date": "2022-07-21", "sp_v2_6wk_date": "2022-09-07", "sp_v3_3mo_date": "2022-10-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "130025": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20138", "obtain_date": "2022-07-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-01", "sp_v1_preop_date": "2022-07-28", "sp_v2_6wk_date": "2022-09-12", "sp_v3_3mo_date": "2022-11-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "130026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "spectrum_health", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "feeling overwhelmed ", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130030": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20146", "obtain_date": "2022-08-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-16", "sp_v1_preop_date": "2022-08-25", "sp_v2_6wk_date": "2022-10-28", "sp_v3_3mo_date": "2022-12-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Spends winter in Florida- will not be around for 3 month visit", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Childcare and transportation", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Transportation- lives over an hour away and does not want extra trips to Grand Rapids", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "40", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to come in for baseline visit before surgery", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "25", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130038": {"age": "55", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20153", "obtain_date": "2022-08-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-19", "sp_v1_preop_date": "2022-09-15", "sp_v2_6wk_date": "2022-10-31", "sp_v3_3mo_date": "2022-12-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130039": {"age": "58", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20154", "obtain_date": "2022-08-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-20", "sp_v1_preop_date": "2022-09-15", "sp_v2_6wk_date": "2022-11-01", "sp_v3_3mo_date": "2022-12-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Unable to Reach", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130042": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Will be in Florida after surgery", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130043": {"age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20158", "obtain_date": "2022-09-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-16", "sp_v1_preop_date": "2022-09-14", "sp_v2_6wk_date": "2022-10-28", "sp_v3_3mo_date": "2022-12-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130044": {"age": "25", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20156", "obtain_date": "2022-08-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "25", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-26", "sp_v1_preop_date": "2022-09-01", "sp_v2_6wk_date": "2022-11-06", "sp_v3_3mo_date": "2022-12-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130045": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20159", "obtain_date": "2022-09-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-11", "sp_v1_preop_date": "2022-09-22", "sp_v2_6wk_date": "2022-11-21", "sp_v3_3mo_date": "2023-01-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Claustrophobic, not willing to complete MRI", "reason_not_interested": "3", "redcap_data_access_group": "spectrum_health", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "33", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed with amount of medical appointments already", "reason_not_interested": "5", "redcap_data_access_group": "spectrum_health", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "20164", "obtain_date": "2022-09-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-14", "sp_v1_preop_date": "2022-10-06", "sp_v2_6wk_date": "2022-11-24", "sp_v3_3mo_date": "2023-01-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has had an MRI in the past and \"I won't ever do one of those again\"", "reason_not_interested": "3", "redcap_data_access_group": "spectrum_health", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130052": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20165", "obtain_date": "2022-09-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "3", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-28", "sp_v1_preop_date": "2022-09-22", "sp_v2_6wk_date": "2022-11-08", "sp_v3_3mo_date": "2022-12-28", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "130053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "spectrum_health", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "already feeling overwhelmed, do not feel they can add anything else right now", "reason_not_interested": "4", "redcap_data_access_group": "spectrum_health", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "130056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "spectrum_health", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt does not know if he is having the surgery due to other medical issues. ", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt lives in Gaylord, too far of a drive ", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt's husband has cancer and so she has too much to deal with at the moment ", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "70", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt said that she would be willing to do surveys but not the in-person visits as they would be too inconvenient. So pt is ineligible. ", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "left pt a voicemail on 8/24/22. Spoke to pt on 8/25/22, he wants to read the consent form and think about it. 8/26/22 pt declined, said he didn't want to deal with it. ", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt wants to read the consent form. Will follow-up with her in a few days. 8/26/22 pt declined, does not want to do MRI", "reason_not_interested": "3", "redcap_data_access_group": "N/A", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/26/22 left voicemail. 8/30/2022 left voicemail. pt called back and wants to review consent form. 9/1/2022 pt declined, too many tasks", "reason_not_interested": "4|3", "redcap_data_access_group": "N/A", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/26/22 left voicemail. 8/30/2022 left voicemail. 9/7/2022 left voicemail", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/26/22 pt said she wanted to join, e-consent sent. 8/30/2022 left voicemail because pt has not signed consent form. 9/7/2022 e-consent not signed yet, left pt a voicemail to remind her. 9/8/2022 have not heard back from patient, she changed her mind about joining.", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/30/2022 left voicemail. 9/7/2022 left voicemail. 9/8/2022 left voicemail", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150014": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "25014", "obtain_date": "2022-08-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "1", "sp_data_site": "2", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-15", "sp_v1_preop_date": "2022-09-12", "sp_v2_6wk_date": "2022-10-27", "sp_v3_3mo_date": "2022-12-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150015": {"age": "48", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25015", "obtain_date": "2022-08-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "2", "sp_data_site": "2", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-15", "sp_v1_preop_date": "2022-09-06", "sp_v2_6wk_date": "2022-10-27", "sp_v3_3mo_date": "2022-12-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/1/2022 Wanted to initially enroll but changed his mind when he read the consent form ", "reason_not_interested": "3", "redcap_data_access_group": "N/A", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/31/2022 patient lost her husband less than a week ago so she does not want to do the study ", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/31/2022 tried to leave a voicemail but pt's mailbox is full. 9/7/2022 wants to read consent form and wants to meet me to discuss at her appointment tomorrow", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/31/2022 left voicemail. 8/31.2022 pt wants to read the consent form and think about it", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "67", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/31/2022 left voicemail. 9/7/2022 declined", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/31/2022 pt was too busy to talk and will call me back another time. 9/7/2022 left voicemail. 9/8/2022 left voicemail. 9/9/2022 pt called back and wants to join the study. 9/12/2022 pt let me know that her surgery date changed to december but she wants to join when she's eligible", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/31/2022 left voicemail. 9/7/2022 left voicemail. 9/8/2022 cannot reach patient, voicemail unavailable", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/31/2022 left voicemail", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150024": {"age": "65", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25016", "obtain_date": "2022-08-31", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "65", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-29", "sp_v1_preop_date": "2022-09-15", "sp_v2_6wk_date": "2022-11-09", "sp_v3_3mo_date": "2022-12-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "does not want to deal with parking or driving", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "left voicemail. pt called back and decline, does not want to deal with in person visits", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/2/2022 left voicemail. Pt called back and declined, does not have time for in person visits", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "59", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150028": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "25020", "obtain_date": "2022-09-08", "participation_interest": "2", "ptinterest_comment": "9/2/2022 left voicemail. 9/7/2022 left voicemail. 9/8/2022 left voicemail ", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-12", "sp_v1_preop_date": "2022-09-09", "sp_v2_6wk_date": "2022-10-24", "sp_v3_3mo_date": "2022-12-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 left voicemail. 9/12/2022 left voicemail. 9/13/2022 left voicemail", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 unable to reach pt, does not have a voicemail. 9/12/2022 declined", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 left voicemail. 9/12/2022 left voicemail. 9/13/2022 left voicemail", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 left voicemail. 9/12/2022 declined", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 declined, does not want to take a half day off off from work to go to the in person visits", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/9/2022 left voicemail. 9/12/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/9/2022 left voicemail. 9/12/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 declined, does not want to take time off to come for in person visits", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150042": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 left voicemail. 9/9/2022 declined, pt is very claustrophobic", "reason_not_interested": "3", "redcap_data_access_group": "N/A", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/9/2022 unable to reach pt, no voicemail. 9/12/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/9/2022 left voicemail. 9/12/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/9/2022 left voicemail. 9/12/2022 left voicemail. 9/13/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "9/12/2022 left voicemail. 9/12/2022 pt wants to join, will sign the consent form once she is back from vacation ", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "3", "redcap_data_access_group": "N/A", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/13/2022 declined, does not have time for in person visits", "reason_not_interested": "3", "redcap_data_access_group": "N/A", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/13/2022 declined ", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/13/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 pt was too busy to talk and will give me a call later", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 unable to reach pt, phone not ringing and no voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/14/2022 declined", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150058": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/14/2022 declined", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 unable to reach pt, phone not ringing and no voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150061": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25025", "obtain_date": "2022-09-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-06", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-11-16", "sp_v3_3mo_date": "2023-01-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/14/2022 declined, does not want to do in person visits", "reason_not_interested": "3", "redcap_data_access_group": "N/A", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "72", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/15/2022 pt sent me an email to let me know she can't participate", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/14/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150068": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25026", "obtain_date": "2022-09-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-12", "sp_v1_preop_date": "2022-10-07", "sp_v2_6wk_date": "2022-11-22", "sp_v3_3mo_date": "2023-01-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/16/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150070": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25027", "obtain_date": "2022-09-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "0", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-06", "sp_v1_preop_date": "2022-09-23", "sp_v2_6wk_date": "2022-11-16", "sp_v3_3mo_date": "2023-01-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/20/2022 no voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150073": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "N/A", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/20/2022 phone not ringing", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150076": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25030", "obtain_date": "2022-09-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-10", "sp_v1_preop_date": "2022-09-28", "sp_v2_6wk_date": "2022-11-20", "sp_v3_3mo_date": "2023-01-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/20/2022 pt in appointment, wants me to call her back in 30 mins. 9/20/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150078": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25029", "obtain_date": "2022-09-20", "participation_interest": "2", "ptinterest_comment": "9/20/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-11", "sp_v1_preop_date": "2022-09-28", "sp_v2_6wk_date": "2022-11-21", "sp_v3_3mo_date": "2023-01-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "9/20/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/21/2022 left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "82", "screening_ethnicity": "0", "screening_gender": "N/A", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150081": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25031", "obtain_date": "2022-09-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-13", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-11-23", "sp_v3_3mo_date": "2023-01-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150082": {"age": "N/A", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "25032", "obtain_date": "2022-09-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "N/A", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "0", "sp_exclbilkneerep": "0", "sp_exclinfdxjoint": "0", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-18", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-11-28", "sp_v3_3mo_date": "2023-01-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "150083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "does not want to do in-person visits", "reason_not_interested": "3", "redcap_data_access_group": "N/A", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/23/2022 declined", "reason_not_interested": "5", "redcap_data_access_group": "N/A", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "150085": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Will be in Florida when 3 month follow up with occur", "reason_not_interested": "4", "redcap_data_access_group": "N/A", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives in Saginaw and will have difficulty commuting to Ann Arbor for study visits", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "41", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not want to do MRI, concerned with their health ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt asked to be called 6/28 in the afternoon, pt didn't know about sx date or pre-op visit on 6/29. Will try to approach in person on 6/29\r\n6/29 Unable to reach at appt, attempted call that went to VM\r\n7/1: Pt sounded like he was interested, but hung up and return call went to VM, left VM\r\n7/6: not sure if pt clear for MRI, but interested in participating\r\n7/8: No available documentation of removal of metal from eye, excluded from study", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Called 3 times, no answer\r\n6/28- spoke with patient, said to call back in afternoon\r\n6/28- called back in afternoon, no answer\r\n6/30- called in afternoon, no answer", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "7/1 sx cancelled, re-contact when scheduled as very interested in participating", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60010": {"age": "42", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20001", "obtain_date": "2021-06-28", "participation_interest": "2", "ptinterest_comment": "Will see patient in clinic today 6/28", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "42", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-20", "sp_v1_preop_date": "2022-01-17", "sp_v2_6wk_date": "2022-03-03", "sp_v3_3mo_date": "2022-04-20", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Pt. is overwhelmed with the possibility of needing to go under cancer treatment and so they do not want to commit to the extra study activities. ", "ewdateterm": "2021-07-01", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20003", "obtain_date": "2021-06-30", "participation_interest": "2", "ptinterest_comment": "Will email consent form and schedule a later date to complete enrollment\r\nConfirm BV time: Currently available for 10:30am w/ imaging at 13:15", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-15", "sp_v1_preop_date": "2021-07-12", "sp_v2_6wk_date": "2021-08-26", "sp_v3_3mo_date": "2021-10-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined via email 7/1 SL", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined on 6/29\r\nToo far to commute for study visits", "reason_not_interested": "4|2", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study visits too long", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Left VM on 6/28 and emailed study information\r\nNA @ 12:23 7/1\r\nNA @ 11:28 7/6 and VM full", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient has been in and out of the hospital and does not want to come in for study visits. ", "reason_not_interested": "5|0", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Already had several MRIs this year", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60019": {"age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20002", "obtain_date": "2021-06-29", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-23", "sp_v1_preop_date": "2021-07-14", "sp_v2_6wk_date": "2021-09-03", "sp_v3_3mo_date": "2021-10-23", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60020": {"age": "36", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20008", "obtain_date": "2021-07-22", "participation_interest": "2", "ptinterest_comment": "Patient interested, filled out MRI form, waiting to hear back about possible imaging appt on 8/05 ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "36", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-24", "sp_v1_preop_date": "2021-08-05", "sp_v2_6wk_date": "2021-10-05", "sp_v3_3mo_date": "2021-11-24", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60021": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-07-15 10:08:15", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "To confirm with patients which hand they write with (dominant hand) instead of asking about dominant leg. ", "erep_protdev_desc": "Used dominant leg for cuff rather than non-dominant leg. To be consistent, same leg (dominant) was used for imaging. ", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-06-30", "dem_race": "2|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20004", "obtain_date": "2021-06-30", "participation_interest": "2", "ptinterest_comment": "Call back 6/30 4pm", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-07-15", "sp_v1_preop_date": "2021-07-14", "sp_v2_6wk_date": "2021-08-26", "sp_v3_3mo_date": "2021-10-15", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient is extremely claustrophobic and needs medication prior to MRI. Also requested open MRI, which is not available for this study. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient not interested in research at this time. Was involved in another research project and does not want to be in another at the moment. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Pt's surgery was postponed after enrollment and following up we found that the patient was deceased on 8/11/21.", "ewdateterm": "2021-09-01", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "4", "genident": "N/A", "main_record_id": "20005", "obtain_date": "2021-07-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient would like to be met with in clinic on 7/6\r\nPer patient does not want to drive to U of M for study visit- too far 7/6 ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has sever claustrophobia and will not agree to MRI scans ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient was interested, but cannot image due to permanent body piercing 7/20\r\n\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "36", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Memory issues to the point of potentially not remembering that they signed a consent form.\r\nThe sternotomy is planned for but not necessarily going to happen.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to come in for baseline visit due to distance and needing to take care of children", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "33", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5|0", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60032": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-26 15:11:55", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Patient's 6 week surveys were manually delivered and they completed them 5 days outside of window.", "erep_protdev_desc": "Patient's 6 week surveys were not delivered to the patient, so they did not complete them in the approved window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "48", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20006", "obtain_date": "2021-07-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-02", "sp_v1_preop_date": "2021-08-27", "sp_v2_6wk_date": "2021-10-14", "sp_v3_3mo_date": "2021-12-02", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Over 300 mile commute and inconvenient trip as they live on an island ", "reason_not_interested": "2", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "No response but was interested, contact in future if possible \r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60035": {"age": "58", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-09", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20007", "obtain_date": "2021-07-16", "participation_interest": "2", "ptinterest_comment": "Emailed information will follow up next week\r\nWill call patient after 3pm today 7/13", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-09", "sp_v1_preop_date": "2021-08-02", "sp_v2_6wk_date": "2021-09-20", "sp_v3_3mo_date": "2021-11-09", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient too overwhelmed, states she wants to focus just on healing, not interested in research at this time- declined 7/19", "reason_not_interested": "3|0", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient emailed and said no thank you ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was very overwhelmed with upcoming surgery- no interested in research at this time. ", "reason_not_interested": "4|0", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. disliked the wording of the consent form such as \"What if I am Injured as a Result of Participation in This Study?\" and \"We will tell you about new information that may affect your willingness to stay in this study.\" The patient was also not willing to consent to the possible physical risks as he is cannot be sure his insurance will cover it. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient wanted her results from the imaging and testing. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60042": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-26 15:20:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Surveys were manually delivered to the patient and the patient completed them 4 days outside of the visit window.", "erep_protdev_desc": "Patient's 6 week surveys were not delivered to patient, therefore they did not complete them within the approved window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "55", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-14", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20009", "obtain_date": "2021-07-23", "participation_interest": "2", "ptinterest_comment": "Patient interested, making sure cleared for imaging prior to full consent 7/14\r\nCleared for imaging, will fully consent soon 7/15\r\nNo answer 7/19\r\nSeeing if can image 7/22 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-03", "sp_v1_preop_date": "2021-08-20", "sp_v2_6wk_date": "2021-10-15", "sp_v3_3mo_date": "2021-12-03", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives too far and not enough travel compensation", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "32", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined 7/19- patient does not want to make the drive", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60046": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-20", "dem_race": "5", "ethnic": "2", "ewcomments": "Pt. asked to be withdrawn from the study because they began to feel overwhelmed with their surgery approaching and the study team calling to set up and confirm their baseline visit. Unfortunately, their appointment had to be scheduled last minute because of the study team receiving the MRI schedule only 1 week before the patients surgery date. The patient stated they just \"didn't want to do it anymore\" they wanted to focus on their surgery. ", "ewdateterm": "2021-07-30", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "20010", "obtain_date": "2021-07-23", "participation_interest": "2", "ptinterest_comment": "Cleared for imaging 7/22 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-04", "sp_v1_preop_date": "2021-08-02", "sp_v2_6wk_date": "2021-09-15", "sp_v3_3mo_date": "2021-11-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "60047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Exclude patient- cannot have an MRI per patient ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt. currently overwhelmed with upcoming procedure and wants to pass on enrolling this time around but has expressed that it was bad timing and would potentially enroll if eligible in the future.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much extra work ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60050": {"adverse_effects": {"1": {"erep_action_taken": "Patient will continue in the study.", "erep_ae_date": "2021-08-02", "erep_ae_desc": "Patient became claustrophobic upon entering the scanner. ", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-01 12:51:41", "erep_onset_date": "2021-08-02 15:30", "erep_outcome": "Patient will not do the 3 month scan, but will continue with other study activities.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2021-08-02 15:45", "erep_visit_inv": "2"}}, "age": "53", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "1", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20011", "obtain_date": "2021-07-28", "participation_interest": "2", "ptinterest_comment": "Interested in participating, but only if can image on 8/2 or 8/3 (with a hotel stay), will f/u when imaging schedule available \r\nInterested 7/27 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-05", "sp_v1_preop_date": "2021-08-02", "sp_v2_6wk_date": "2021-09-16", "sp_v3_3mo_date": "2021-11-05", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "chronic back pain and unable to do consecutive MRI scans. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Excluded- hx of metal in eye w/o documentation, cant image", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient cancelled his surgery, exclude for now 7/28 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. periodically gets MRIs as part of their healthcare maintenance, so they were unwilling to go through extra MRI scans. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient was interested, but cant image due to very sever claustrophobia (due to an incident as a child)", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "No answer x 3", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60057": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-13 13:54:54", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "We created a segment that RAs to see when a patient has not completed their 6wk surveys. This will let the RAs check when surveys are not filled out by patients in time. ", "erep_protdev_desc": "Patient answered 6wks surveys at 8wks after surgery. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-04 13:05:48", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No action plan at this time.", "erep_protdev_desc": "Patient completed their 6-month day 14 daily survey on 6-month day 15.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "5"}}, "age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-27", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20013", "obtain_date": "2021-07-30", "participation_interest": "2", "ptinterest_comment": "Patient is interested, waiting to be cleared for imaging 7/27 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-19", "sp_v1_preop_date": "2021-08-12", "sp_v2_6wk_date": "2021-09-30", "sp_v3_3mo_date": "2021-11-19", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60058": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-27", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient declined having their scheduled procedure as they would rather deal with their current symptoms than the painful recovery process. So their surgery was canceled without being rescheduled.", "ewdateterm": "2021-09-20", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "1", "main_record_id": "20012", "obtain_date": "2021-07-29", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-15", "sp_v1_preop_date": "2021-09-03", "sp_v2_6wk_date": "2021-10-27", "sp_v3_3mo_date": "2021-12-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "60059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "potentially interested but did not want to commit as there future healthcare plan is dependent on the results of their biopsy being performed on 8/4. Will re-contact after 3 months. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined, no reason", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60061": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-08-27 07:38:19", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Performed the baseline blood draw, current medications, and breathing and coughing test with patient in Pre-Op day of surgery. ", "erep_protdev_desc": "Patient was unable to make it to schedule baseline visit and was unable to reschedule one before surgery. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-07-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20015", "obtain_date": "2021-08-09", "participation_interest": "2", "ptinterest_comment": "Interested, cleared for imaging", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-27", "sp_v1_preop_date": "2021-08-20", "sp_v2_6wk_date": "2021-10-08", "sp_v3_3mo_date": "2021-11-27", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVm x 3", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "31", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not want to commit to extra visit outside of their usual health plan. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60064": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-09-16 09:46:11", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient being scheduled for another thoracic procedure on 10/5 within 6 months due to an unexpected pathology result", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20016", "obtain_date": "2021-08-10", "participation_interest": "2", "ptinterest_comment": "Patient is interested but was too busy to go over MRI screening/enrollment, cb tomorrow 8/10", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "0", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-24", "sp_v1_preop_date": "2021-08-12", "sp_v2_6wk_date": "2021-10-05", "sp_v3_3mo_date": "2021-11-24", "start_12mo": 1, "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60065": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20014", "obtain_date": "2021-08-07", "participation_interest": "2", "ptinterest_comment": "Patient is very interested, waiting to be cleared for MRI 8/5", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-08-25", "sp_v1_preop_date": "2021-08-13", "sp_v2_6wk_date": "2021-10-06", "sp_v3_3mo_date": "2021-11-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient is interested in study, but cannot get a ride down to U of M (lives in Grayling, MI 3 hours away). She is not comfortable with ride service, but would be willing to participate in the future if possible. Wil exclude patient for now. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient does not want to do follow up visits. Overwhelmed right now and just wants to \"get back to normal life\" after the surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "37", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Excluded from study- extreme claustrophobia and cannot image unless medicated prior, bad experience as a child, 8/24", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60070": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient surgery was moved back due to positive covid test, asked patient if he was interested in possibly participating now that he is not out of town, was overwhelmed and said he would pass", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient is sole caregiver for husband can only participate if visit can be done the day before her surgery (which is a sunday). Recontact in future if eligible", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM x 3", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "37", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60073": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient did not want to image and thought the study was too involved. ", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "No response x 3 ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Wanted to focus on surgery but did not decline, so emailed information and if pt. wants to participate, they will reach out.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60076": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. was very distressed with their upcoming procedure and said that they could not handle anything extra on top of their surgery.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Cannot image, found out patient has a metal plate in jaw", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Due to age and needing hearing implants, pt. doesn't want to do anything extra outside of her required treatment.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined immediately, no reason", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Interested in study but cannot come in for baseline visit before upcoming sx. Will approach after 3 months if pt. has another eligible procedure.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60081": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient gets frequent MRIs due to a health condition and did not want another. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60082": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient cannot image due to cervical vertebrae fusion", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient overwhelmed with current surgery but willing to possibly participate in the future if eligible 8/23", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "43", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Excluded from imaging- surgery on cervical vertebrae", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60085": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-18", "dem_race": "1|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20018", "obtain_date": "2021-08-30", "participation_interest": "2", "ptinterest_comment": "Consent at clinic visit on ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-27", "sp_v1_preop_date": "2021-09-03", "sp_v2_6wk_date": "2021-11-07", "sp_v3_3mo_date": "2021-12-27", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60086": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Pt's pre op visit is during scanner time, unable to schedule a baseline visit, ok to approach in the future if eligible 8/19 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60087": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient stated he is much sicker than he has been, was in the hospital up until yesterday, per patient too sick to participate", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60088": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Waiting to be cleared for imaging - patient is going to try and find information on cardiac stents- still waiting to hear as of 9/7\r\nPatient excluded- could not obtain information on multiple different stents from different providers in Indiana", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt seen in clinic. Scheduled for week after next and only available imaging slot did not work for their schedule. Also of note, does not have own transportation so it is difficult for him to sign up for study visits.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient excluded due to claustrophobia from head cage- had previous MRI of the brain and was not able to scan with head cage, required open MRI, otherwise patient was very interested in participating", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60091": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-13 12:06:14", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No corrective action needed, as this was due to patient's availability. ", "erep_protdev_desc": "Patient's 3 month visit is 1 day outside of window. Window expired on 1/11 but patient wasn't able to come till 1/12 ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20017", "obtain_date": "2021-08-25", "participation_interest": "2", "ptinterest_comment": "Interested, waiting to be cleared for imaging, consent in a couple days ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-09-28", "sp_v1_preop_date": "2021-09-14", "sp_v2_6wk_date": "2021-11-08", "sp_v3_3mo_date": "2021-12-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60092": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient cannot come in before surgery for baseline, cannot take more time off work, open imaging slot does not work for him, would be willing to enroll in future if eligible ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60093": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient does not have time for a baseline visit prior to surgery, cannot take time off of work, ok being approach in the future 8/24", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "36", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60094": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient would have a hard time making baseline visit prior to surgery and also does not want to do another MRI of the brain- had one in the last 2mo for diagnostic purposes", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60095": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Cluster phobic to the point of needing an open MRI or medication.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60096": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient does not have time for baseline visit, ok being called again in the future if eligible 9/2", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60097": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM x 2", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "26", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60098": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Cannot come in for a visit before surgery but was intersted", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60099": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined, no reason given", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60100": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Excluded from imaging- cervical fusion", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60101": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested in coming in for optional study visits as they have almost a 4 hour drive one way to the hospital.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60102": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient was interested but surgery scheduled very quickly (cancellation slot), no real time for imaging ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60103": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60104": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-11-10 09:13:43", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "When calling patients to do surveys, we will make sure to check the due date of the surveys prior to filling them out over the phone in coordinator mode. Also, we will try to fill out the other day 28 surveys on day 28 instead of day 29 and this will ensure we are not calling patients on day 29 and risk this mistake again. ", "erep_protdev_desc": "Research assistant (myself) was calling patient to do daily surveys. Filled out last daily Acute Daily Trajectory Items survey on day 29 instead of day 28. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-11-29 15:33:31", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No further actions required as this was upon the patient's request", "erep_protdev_desc": "6 week blood draw will not be performed as pt. is unable to find transportation ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "3": {"erep_action_taken": "Patient is continuing in the study.", "erep_ae_date": "2021-09-22", "erep_ae_desc": "Patient completed the baseline MRI, but asked not to do the 3-month scan when we reached out to schedule their visit because the noise was too loud and they feel like their hearing has been \"off\" since then. They \"don't know how much\", they \"just know they couldn't do it again\".", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "2", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-01 12:43:29", "erep_onset_date": "2021-09-22 13:30", "erep_outcome": "Patient will not do the 3 month scan, but will continue with other study activities.", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "4": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-04 14:43:53", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "More firmly schedule date and time when need to do surveys over the phone with patient. ", "erep_protdev_desc": "Filled out surveys with patient 4 days late. The patient did not want to use the app, so RA were doing surveys over the phone with patient. RA's called patient 3-4 times over the course of 2 weeks and patient asked to do surveys at later times. Patient was able to do surveys on 1/27/22, 4 days outside of window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "5": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-04-25 09:54:54", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Last daily acute 6mo survey filled out 1 day past window. Patient did not answer yesterday when called for last daily survey over the phone. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "5"}}, "age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-02", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20024", "obtain_date": "2021-09-22", "participation_interest": "2", "ptinterest_comment": "Cleared for imaging, LVM x 2", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-11", "sp_v1_preop_date": "2021-09-22", "sp_v2_6wk_date": "2021-11-21", "sp_v3_3mo_date": "2022-01-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60105": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-11-10 09:09:53", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "When calling patients to do surveys, we will make sure to check the due date of the surveys prior to filling them out over the phone in coordinator mode. Also, we will try to fill out the other day 28 surveys on day 28 instead of day 29 and this will ensure we are not calling patients on day 29 and risk this mistake again. ", "erep_protdev_desc": "Research assistant (myself) was calling patient to do daily surveys. Filled out last daily Acute Daily Trajectory Items survey on day 29 instead of day 28. ", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}}, "age": "56", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-02", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20019", "obtain_date": "2021-09-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-11", "sp_v1_preop_date": "2021-09-22", "sp_v2_6wk_date": "2021-11-21", "sp_v3_3mo_date": "2022-01-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60106": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20020", "obtain_date": "2021-09-10", "participation_interest": "2", "ptinterest_comment": "Waiting to be cleared for imaging 9/7 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-18", "sp_v1_preop_date": "2021-09-14", "sp_v2_6wk_date": "2021-11-28", "sp_v3_3mo_date": "2022-01-17", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60107": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt's mother-in-law just passed away, so trying to plan a funeral between now and DOS.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60108": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt has a fear of MRI.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "27", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60109": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Surgery got moved, trying to schedule possibly", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "48", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60110": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Can not get time off for baseline visit, approachable in the future.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60112": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient wants \"no bad luck and this is like a black cat\" and declined 9/9", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60113": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance and unable to lay flat in an MRI", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60114": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60115": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "History of metal in the eye without removal documentation, have to exclude from study", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60116": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Wants to pass on enrolling at this time due to having another surgery planned in the next couple months", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60117": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient she cannot have blood drawn- only R arm is available due to tumor on left and she has to save available blood draw sites for surgery", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "41", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60118": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Excluded due to surgery on neck as a child in the 1950s and no documentation", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60119": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Excluded- patient with regurgitation and can possibly aspirate if this happens while laying flat- cannot image due to safety concern", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60120": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM 9/14 @ 10:10- MD\r\nDeclined- per patient he is \"sick of going in and out in and out of the hospital\" and is not willing to come in before surgery ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60121": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Talked to Pt's spouse and notified about the recruitment email. Patient will reach out if interested\r\n\r\nPatient never reached back out, considered no response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60122": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2021-10-27 14:28:45", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "We will ensure patient has enough time to get blood drawn with baseline visit. For patients who need to finish their baseline surveys at their visits, we will factor in an extra half hour to ensure we have enough time for all study activities. ", "erep_protdev_desc": "Patient blood was drawn on DOS rather than baseline. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20025", "obtain_date": "2021-09-23", "participation_interest": "2", "ptinterest_comment": "Patient is interested, waiting to see if cleared for imaging ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-14", "sp_v1_preop_date": "2021-10-06", "sp_v2_6wk_date": "2021-11-24", "sp_v3_3mo_date": "2022-01-13", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60123": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much travel time", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60124": {"age": "28", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-16", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20021", "obtain_date": "2021-09-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "28", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-07", "sp_v1_preop_date": "2021-09-29", "sp_v2_6wk_date": "2021-11-17", "sp_v3_3mo_date": "2022-01-06", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60125": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "No response from patient or patient's daughter. Spoke to in person for a third time, said would call if if interested after holiday ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60126": {"age": "45", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20023", "obtain_date": "2021-09-20", "participation_interest": "2", "ptinterest_comment": "Consent after approved for imaging", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-04", "sp_v1_preop_date": "2021-09-29", "sp_v2_6wk_date": "2021-11-14", "sp_v3_3mo_date": "2022-01-03", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60127": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-17", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20022", "obtain_date": "2021-09-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-12", "sp_v1_preop_date": "2021-10-04", "sp_v2_6wk_date": "2021-11-22", "sp_v3_3mo_date": "2022-01-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60128": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient doesn't want to commit to research study .", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60129": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60130": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60131": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient cannot take any time off of work before surgery and does not want to make long drive, reiterated increased compensation and travel compensation but politely declined", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60132": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined, had seen in clinic previously and was somewhat interested. Would not allow me to continue phone conversation after decline. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60133": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Spoke to patient 3-4 times in last 1-2 weeks. Patient was interested but unsure if could come in for visits prior to surgery depending on work schedule. Emailed patient last week again asking about possible availability for baseline visit, explained could work around their schedule. No response, spoke to patient again today and patient deferred participation. Stated unable to get time off work prior to surgery next week. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "25", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60134": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Sx was moved up to 10/14, which is 3 weeks earlier than patient was scheduled for originally, per patient too much going on with sooner surgery date and feels too overwhelmed to do study 10/11 SL\r\n", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60135": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient spoke with patient's daufther and she decided not to enroll. Per patient and her daughter she gets \"very tired very easily\" and could not make the drive to U of M and home. Patient stated she would not have anyone to driver her to an appt before surgery (daughter cannot) and did not want to use a ride sharing app even if reimbursed ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60136": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-28", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20026", "obtain_date": "2021-09-30", "participation_interest": "2", "ptinterest_comment": "Interested will cb after talking to husband", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-26", "sp_v1_preop_date": "2021-10-18", "sp_v2_6wk_date": "2021-12-06", "sp_v3_3mo_date": "2022-01-25", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60137": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient worried about driving for appointment- lives 3 hours away- reiterated travel compensation but still declined ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60138": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much going on per patient just very overwhelmed with surgery etc\r\n", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60139": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient was at U of M for a second opinion, decided to have surgery at hospital closer to home in grand rapids area, will be excluded since surgery not at a qualifying hospital", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60140": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Would feel too overwhelmed if he participated", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60141": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Surgery will be bilateral lung reduction, exclude", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60142": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient he is extremely overwhelmed before surgery. Stated he has \"a lot to take care of\" and cannot commit to a study visit. Reiterated compensation etc, pt still politely declined. ", "reason_not_interested": "5|4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60143": {"age": "53", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20038", "obtain_date": "2021-11-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-29", "sp_v1_preop_date": "2021-11-24", "sp_v2_6wk_date": "2022-01-10", "sp_v3_3mo_date": "2022-02-28", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60144": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20027", "obtain_date": "2021-10-07", "participation_interest": "2", "ptinterest_comment": "LVM and sent recruitment email", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-04", "sp_v1_preop_date": "2021-10-18", "sp_v2_6wk_date": "2021-12-16", "sp_v3_3mo_date": "2022-02-03", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60145": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined due to traveling distance- reiterated compensation but says due to time and traveling, also her husband is currently sick, if closer she would \"do it in a heartbeat\", declined 10/11", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60146": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient read over information and would like to decline, patient is very overwhelmed with surgery and wants to only focus on surgery, does not wany any extra appts or calls", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60147": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Excluded due to implant in patient's neck; she really wanted to be in study, told her would call her if anything changes 10/11", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60148": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient is excluded, microblading of eyebrows", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60149": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to image, ear implants", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60150": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "had a sternotomy within the last 3 months", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60151": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "New MS diagnosis just a couple months ago (patient is having a hard time walking), very overwhelmed and surgery was scheduled very quickly (1wk from when the patient had first visit with thoracic surgeon) declined at this time but was very sweet and said would enroll if different life circumstances", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60152": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Last minute patient's work scheduled changed. Patient is a corrections officer and now has to work every day until day before surgery. Is not able to come in for a visit but willing in future if eligible. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60153": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined, too overwhelmed at the moment and does not want to do any more testing\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "45", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60154": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Patient has tattoo behind ear, excluded from MRI and study", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "25", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60155": {"age": "44", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20031", "obtain_date": "2021-11-03", "participation_interest": "2", "ptinterest_comment": "Patient very interested in participating and no major contraindications in MRI screening. Hopefully can consent the patient once they get scheduled for Sx.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-09", "sp_v1_preop_date": "2021-11-19", "sp_v2_6wk_date": "2022-01-20", "sp_v3_3mo_date": "2022-03-10", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60156": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Cancelled surgery, contact in future if scheduled again", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60157": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to come for baseline visit ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "22", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60158": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "deferred participation due to drive, maybe enroll in future if eligible", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "39", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60159": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not willing to drive 5 hours 1 way for study activity", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60160": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "patient is to be excluded, surgery is no longer necessary and will be canceled by the doctor.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "37", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60161": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. unwilling to travel for study especially when winter is coming up ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60162": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not willing to travel, lives 5 hours away ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60163": {"age": "58", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-19", "dem_race": "5|6", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20028", "obtain_date": "2021-10-20", "participation_interest": "2", "ptinterest_comment": "Cb tomorrow", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-10-28", "sp_v1_preop_date": "2021-10-21", "sp_v2_6wk_date": "2021-12-08", "sp_v3_3mo_date": "2022-01-27", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60164": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60165": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": " patient scheduled w/in 2wks of clinic visit, felt too overwhelmed since surgery was so soon and not able to find a time to come in, also had to have transportation and was not comfortable with uber etc. and did not have a ride next week- deferred participation", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60166": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Physician advised against participating in research due to prevent them from being overwhelmed. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60167": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60168": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-21 14:44:02", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Proceeded 3 month visit with using the left side as surgical side for all testing. ", "erep_protdev_desc": "On day of surgery, doctors deviated from the original sternotomy approach and went with a clamshell incision which would have been an excluded approach.", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "35", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20030", "obtain_date": "2021-10-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "35", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-22", "sp_v1_preop_date": "2021-11-10", "sp_v2_6wk_date": "2022-01-03", "sp_v3_3mo_date": "2022-02-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60169": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Patient excluded from MRI/study due to pacemaker", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60170": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "No response from patient after tried contacting again 3x. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60171": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM x 3 No response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60172": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "BMI 55, weight 360lbs", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60173": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "The patient's original surgery was postponed and now they are scheduled for a procedure that is exclusionary. ", "ewdateterm": "2021-12-07", "ewdisreasons": "N/A", "ewpireason": "5", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "20032", "obtain_date": "2021-11-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-16", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-01-27", "sp_v3_3mo_date": "2022-03-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60174": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient's surgery got changed to a non-qualifying procedure, exclude for now", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60175": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Deferred participation for this surgery. patient was scheduled within 2wks of new patient appointment. Had to take care of many things with work, no time to take off. Would be willing to participate in future if more time before surgery and eligible again", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60176": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20034", "obtain_date": "2021-11-10", "participation_interest": "2", "ptinterest_comment": "Phone is patient's wife mobile;\r\nPer patient's wife could do visit on 11/22 or 11/23, will call in a few days once scheduled for pre op testing and talk to patient (patient was not home before)", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-24", "sp_v1_preop_date": "2021-11-22", "sp_v2_6wk_date": "2022-01-05", "sp_v3_3mo_date": "2022-02-23", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60177": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60178": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too overwhelmed with surgery etc", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60179": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much of an extra commitment ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60180": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5|0", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60181": {"age": "54", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20033", "obtain_date": "2021-11-05", "participation_interest": "2", "ptinterest_comment": "Patient interested, waiting to get cleared for imaging ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-21", "sp_v1_preop_date": "2021-11-15", "sp_v2_6wk_date": "2022-02-01", "sp_v3_3mo_date": "2022-03-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60182": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM x 3\r\nNo response from patient after 3 calls and recruitment email\r\nMD spoke with pt, declined as visits would be too far away from home 11/18", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60183": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Want to know if there have bene studies linking prolonged pressure exposure to things like DVT\r\n\r\nPatient did not respond", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60184": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient's cancer is terminal, stated only a little while to live after surgery, very overwhelmed, no time for research ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60185": {"age": "77", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "7", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20036", "obtain_date": "2021-11-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-24", "sp_v1_preop_date": "2021-11-23", "sp_v2_6wk_date": "2022-01-05", "sp_v3_3mo_date": "2022-02-23", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60186": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined- does not want to drive to extra appointments or do extra testing as she needs her daughter to driver her. Offered baseline on same day as other appts but patient still declined. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60187": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Metallic fragment in eye excludes pt. for imaging", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "38", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60188": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60189": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-01-11 15:29:00", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient came in on 12/17/21 for their baseline visit and then their surgery was pushed back to 2/2/22 due to illness which will make their visit 5 days outside the 6-week window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-18 14:45:21", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "RA will make a better schedule to ensure a daily patient call for surveys is not missed. ", "erep_protdev_desc": "Filled out Opioid Use Acute Follow Up Day 14 on day 16 with patient. Patient has not been using app to do surveys after surgery, so RA has been calling them. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}, "3": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-21 10:07:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient went out of town (1month in Florida) and was not able to come in for 6wk blood draw. Was also sick the week prior to leaving. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-11", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20037", "obtain_date": "2021-11-16", "participation_interest": "2", "ptinterest_comment": "Home # preferred\r\nInterested, cb next week", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-02", "sp_v1_preop_date": "2021-12-17", "sp_v2_6wk_date": "2022-03-16", "sp_v3_3mo_date": "2022-05-02", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60190": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Excluded- spinal cord stimulator, cannot image", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60191": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Travel", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60192": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "No response from patient after a few voicemails after initial call", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60193": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "research wasn't related to their diagnosis", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60194": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20039", "obtain_date": "2021-11-24", "participation_interest": "2", "ptinterest_comment": "Home # is spouse's phone\r\nLVM x 1", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-17", "sp_v1_preop_date": "2021-12-03", "sp_v2_6wk_date": "2022-01-28", "sp_v3_3mo_date": "2022-03-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60195": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too short of a notice and won't be able to come in for baseline visit", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60196": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too overwhelmed with cancer etc", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60197": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Lives too far, nervous about time commitment", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60198": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Excluded- tattoo on neck", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60199": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unwilling to do MRI", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60200": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient has been \"poked and prodded\" enough ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60201": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "did not respond", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60202": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-04-06 09:05:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No corrective plan needed. Patient's illness unrelated to study. Noted in QST document as well. ", "erep_protdev_desc": "Patient developed blood clots a week before 3mo visit. Unable to do cuff or CPM for safety reasons.\r\n", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-04-06 09:11:39", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "RA will attempt to schedule 3mo visits earlier in window if there is availability in case patient needs to reschedule. ", "erep_protdev_desc": "Patient 2 days outside of 3mo window. Patient cancelled appointment last week and rescheduled for this week. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "73", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20042", "obtain_date": "2021-12-02", "participation_interest": "2", "ptinterest_comment": "Wanted more information.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-21", "sp_v1_preop_date": "2021-12-15", "sp_v2_6wk_date": "2022-02-01", "sp_v3_3mo_date": "2022-03-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60203": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "No response from patient \r\nExpressed interest but then did not answer after 3 more calls", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60204": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20040", "obtain_date": "2021-12-01", "participation_interest": "2", "ptinterest_comment": "Only will enroll if they can do baseline visit on 1/12/22", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-13", "sp_v1_preop_date": "2022-01-02", "sp_v2_6wk_date": "2022-02-24", "sp_v3_3mo_date": "2022-04-13", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60205": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient's wife called and expressed that he would like to decline", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60206": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed by study ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60207": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60208": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM x 3 ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60209": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient was interested if did not enroll in a clinical trial. Patient had to do mutation testing to see if eligible for clinical trial. These results did not come back until very close to patient's surgery date. No time to schedule a patient visit. Deferred participation.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60210": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "declined- too overwhelmed by surgery and diagnosis", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60211": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60212": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20045", "obtain_date": "2021-12-10", "participation_interest": "2", "ptinterest_comment": "No Response emailed info", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-27", "sp_v1_preop_date": "2022-01-06", "sp_v2_6wk_date": "2022-03-10", "sp_v3_3mo_date": "2022-04-27", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60213": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "2022-06-08", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "20044", "obtain_date": "2021-12-08", "participation_interest": "2", "ptinterest_comment": "cb tomorrow 12/8 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60214": {"adverse_effects": {"1": {"erep_action_taken": "Patient did not ask to withdraw or any similar action. Patient wished to finish QST testing and went to do MRI as well. ", "erep_ae_date": "", "erep_ae_desc": "Patient had her 3mo visit on 4/19/20221. Patient stated she has had a lot of pain since surgery. Patient also has fibromyalgia and pain in her R arm (previous injury). After CPM in QST testing, patient stated she still felt the pressure/pain from the algometer still about 5 minutes after the test was completed. ", "erep_ae_relation": "2", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-04-20 14:42:24", "erep_onset_date": "2022-04-19 13:30", "erep_outcome": "Patient had discomfort through most of the QST testing. RA made sure to ask patient if she was ok proceeding prior to every test at 3mo visit. Patient was happy at end of visit and no follow up was needed. Patient's arm pain/pressure from the PPTs had dulled by the time she was leaving. No further follow up was conducted. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-04-20 13:40", "erep_visit_inv": "4"}}, "age": "44", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20046", "obtain_date": "2021-12-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-19", "sp_v1_preop_date": "2022-01-04", "sp_v2_6wk_date": "2022-03-02", "sp_v3_3mo_date": "2022-04-19", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60215": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Home # preferred\r\n\r\nSpoke with pt, interested if surgery still occurs, cb in a few weeks at PET scan on 12/21\r\n\r\nPatient very interested but unable to make baseline visit before surgery, deferred participation", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60216": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient's husband answered and patient cannot consent for herself. Per husband patient has short term memory loss and he is advocate and handles all medical decisions. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60217": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not willing to make extra trips into Ann Arbor", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60218": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20049", "obtain_date": "2021-12-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-19", "sp_v1_preop_date": "2022-01-04", "sp_v2_6wk_date": "2022-03-02", "sp_v3_3mo_date": "2022-04-19", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60219": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No specific reason for decline, patient just stated he was not interested on the phone", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60220": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60221": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM x 3 and emailed no response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "6", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60222": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-02-18 14:04:35", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "6wk blood draw completed 6 days outside of window. Patient did not want to come in extra for blood work, so scheduled with one of her appointments on 2/21/22, 6 days outside of window.", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-04-11 13:00:06", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No corrective action needed. ", "erep_protdev_desc": "Patient's 3mo visit ended up being 29 days outside of window. Patient was ill when called to confirm 3mo visit the day before. Rescheduled for the following week and then patient had a conflict with new doctor appointment. Had to then look for a new appointment/MRI opening for patient. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "51", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20050", "obtain_date": "2021-12-15", "participation_interest": "2", "ptinterest_comment": "Interested, cb tomorrow", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-28", "sp_v1_preop_date": "2021-12-17", "sp_v2_6wk_date": "2022-02-08", "sp_v3_3mo_date": "2022-03-29", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60223": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient just stated he is not interested. No further explanation given", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60224": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "2022-07-07", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "2", "main_record_id": "20052", "obtain_date": "2021-12-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2021-12-23", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "60225": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt lives far away and thought the visits would take too much time, especially with tax season coming up 12/16- MD", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60226": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not have a car, daughter must driver her. Lives over 2 hours away and cannot make a baseline visit before her surgery since it is right around the holiday. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60227": {"age": "82", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-17", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20054", "obtain_date": "2021-12-23", "participation_interest": "2", "ptinterest_comment": "Interested, sign consent form at baseline visit (patient has a trach and hard to talk)", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-07", "sp_v1_preop_date": "2021-12-23", "sp_v2_6wk_date": "2022-02-18", "sp_v3_3mo_date": "2022-04-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60228": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No time for baseline visit right now- surgery on 1/3 and only imaging slots available are on 12/23 and patient is busy with holiday. MRI not open week of 12/27, so just no time for visit. Patient interested but deferred participation for now. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60229": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Wanted to read information on the study, pt. will reach out if they are interested and have been notified that there might be a tight scheduling timeline due to the holidays. \r\n\r\nDid not reach back out, no response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60230": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Unable to reach patient before holiday and cannot scheduled baseline visit in time", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60231": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient said they've gotten really overwhelmed with surgery/scared with cancer diagnosis and didn't want to commit to the study.", "ewdateterm": "2021-12-23", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20053", "obtain_date": "2021-12-21", "participation_interest": "2", "ptinterest_comment": "Interested- consent later today", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-04", "sp_v1_preop_date": "2021-12-23", "sp_v2_6wk_date": "2022-02-15", "sp_v3_3mo_date": "2022-04-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60232": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60233": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20056", "obtain_date": "2022-01-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-12", "sp_v1_preop_date": "2022-01-07", "sp_v2_6wk_date": "2022-02-23", "sp_v3_3mo_date": "2022-04-12", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60234": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "84", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60235": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60236": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60237": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Just had a procedure and wasn't feeling well enough to talk\r\nLVM for patient\r\nNo response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60238": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60239": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "has difficulty with winter travel ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60240": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "not interested in doing in person visits", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60241": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient not interested in doing any of the testing", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60242": {"age": "58", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20057", "obtain_date": "2022-01-10", "participation_interest": "2", "ptinterest_comment": "Interested cb monday", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-03", "sp_v1_preop_date": "2022-01-11", "sp_v2_6wk_date": "2022-03-17", "sp_v3_3mo_date": "2022-05-03", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60243": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed with surgery, this was patient's second try as first surgery they reacted bad to anesthesia and surgery was not able to be completed. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60244": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not want to do \"all the testing\" ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "23", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60245": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient is claustrophobic but maybe willing to try, emailed info and will f/u early next week\r\n\r\nLVM x 2 after initial contact no response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60246": {"age": "49", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20062", "obtain_date": "2022-01-21", "participation_interest": "2", "ptinterest_comment": "LVM x 3 no response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "49", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-31", "sp_v1_preop_date": "2022-01-28", "sp_v2_6wk_date": "2022-03-14", "sp_v3_3mo_date": "2022-05-01", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60247": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined- patient did not to do MRI and states he lives in Ohio so it is a burden to travel to Michigan for study visits", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60248": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Need sedation for MRI", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60249": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Excluded- extreme claustrophobia in addition to special needs son, so hard to schedule a time for BL visit", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60250": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient was scheduled for baseline visit tomorrow. With inclement weather suspected for the area tomorrow, patient wished to cancel baseline visit. I spoke to the patient and offered other times later in the week or early next week prior to the patient's surgery on 2/10 but patient declined. Patient asked to not continue study procedures, stated she was stressed before surgery. ", "ewdateterm": "2022-02-01", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "2", "main_record_id": "20063", "obtain_date": "2022-01-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-10", "sp_v1_preop_date": "2022-02-02", "sp_v2_6wk_date": "2022-03-24", "sp_v3_3mo_date": "2022-05-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "60251": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed by upcoming surgery and doesn't want to add anything more. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60252": {"age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20067", "obtain_date": "2022-02-01", "participation_interest": "2", "ptinterest_comment": "Cb this evening", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-14", "sp_v1_preop_date": "2022-02-11", "sp_v2_6wk_date": "2022-03-28", "sp_v3_3mo_date": "2022-05-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60253": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-16 08:51:08", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient's baseline visit is 5 days over 6 week window due to surgery being rescheduled several times. \r\n\r\nAlso, we have collected expectation responses from the patient based off their original surgery date and do to the last minute rescheduling of the patient's surgery, we were unable to collect a new set of expectation data. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20059", "obtain_date": "2022-01-14", "participation_interest": "2", "ptinterest_comment": "Need to clear a potential conflict of interest with another study.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-16", "sp_v1_preop_date": "2022-01-25", "sp_v2_6wk_date": "2022-04-27", "sp_v3_3mo_date": "2022-06-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60254": {"age": "53", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20061", "obtain_date": "2022-01-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-14", "sp_v1_preop_date": "2022-02-22", "sp_v2_6wk_date": "2022-04-25", "sp_v3_3mo_date": "2022-06-14", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60255": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Exclude- patient willing gave info about sacral nerve stimulator, must exclude from MRI and study", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60256": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60257": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Cannot travel by themselves and on 24h O2", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60258": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Surgery has not been scheduled as of 8/24/22. Patient ended up deferring participation for now. Will contact in future possibly if they do get scheduled. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60259": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "spinal cord stimulator not compatible with 3T MRI", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60260": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. wants to focus on sx and recovery so that they can get get back to work as soon as they can.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "28", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60261": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "26", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60262": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed by all study activities.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60263": {"adverse_effects": {"1": {"erep_action_taken": "Patient was removed from the scanner when requested and felt better afterwards. ", "erep_ae_date": "", "erep_ae_desc": "Patient became claustrophobic in the scanner. Per patient was unable to get comfortable and obtain good positioning the scanner due to height/weight. After a few minutes of trying patient became claustrophobic/nervous and asked to be removed from the scanner and did not want to continue.", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-05-10 12:51:40", "erep_onset_date": "2022-05-10 10:30", "erep_outcome": "Patient did not scan at 3mo. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-05-10 10:45", "erep_visit_inv": "4"}}, "age": "44", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20066", "obtain_date": "2022-01-28", "participation_interest": "2", "ptinterest_comment": "Patient is interested, schedule once get pre-op scheduled", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-11", "sp_v1_preop_date": "2022-02-10", "sp_v2_6wk_date": "2022-03-25", "sp_v3_3mo_date": "2022-05-11", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60264": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient overwhelmed and potentially joining a a clinical trial. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60265": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Severely clusterphobic and unwilling to do MRI for study. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "3", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60266": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM x 3 \r\n\r\nSaw patient in clinic and they declined, no time for BL appt prior to surgery, was not able to get ahold of him on phone so talked to him in clinc at pre op appt 1wk before surgery", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60267": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-05-13 18:29:58", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None needed as deviation was due to accommodating the patient's schedule. ", "erep_protdev_desc": "Patient had to reschedule 6 week blood draw due to testing positive for covid and was not able to come in until after the visit window. Patient was 2 days past window (7 weeks and 2 days). ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "58", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20072", "obtain_date": "2022-02-14", "participation_interest": "2", "ptinterest_comment": "Cb next wednesday \r\nLVM", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-23", "sp_v1_preop_date": "2022-03-17", "sp_v2_6wk_date": "2022-05-04", "sp_v3_3mo_date": "2022-06-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60268": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient has a brain tumor, must be excluded from study", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60269": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Surgery never scheduled as on 8/24/22. Patient deferred participation for now. will reach out if surgery does get scheduled. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60270": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Exclude- Patient had a hard time understanding description of study over the phone, and staff was working remote on his clinic visit day, so we could not meet with him in person. Patient also needed his daughter present for explanation with medical topics. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60271": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too overwhelmed with study commitment", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60272": {"age": "54", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-25", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20068", "obtain_date": "2022-02-02", "participation_interest": "2", "ptinterest_comment": "Maybe interested cb in 1wk", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-21", "sp_v1_preop_date": "2022-02-15", "sp_v2_6wk_date": "2022-05-02", "sp_v3_3mo_date": "2022-06-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60273": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed by study and does not have the mental capacity to handle it along with their sx. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60274": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Out of State residence, unable to come in for in person visits. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60275": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM x 3 and email x 1\r\nNo response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "42", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60276": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Deferred participation, would participate in future, but patient lives 3 hours away and cant make baseline appt, also in processing of redoing his home before surgery", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60277": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "2022-02-28", "ewdisreasons": "N/A", "ewpireason": "1", "ewprimaryreason": "2", "genident": "1", "main_record_id": "20070", "obtain_date": "2022-02-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-10", "sp_v1_preop_date": "2022-03-01", "sp_v2_6wk_date": "2022-04-21", "sp_v3_3mo_date": "2022-06-10", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60278": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "felt overwhelmed if they did study on top of their cancer", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "6", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60279": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance and swamped with other pre-op visits", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60280": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60281": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "needs general anesthesia for all MRI", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "37", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60282": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not want to travel to U of M for extra appts", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60283": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60284": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "RA initiated withdrawal. Patient's surgery was originally scheduled for 3/24/22 and baseline visit was scheduled for 3/14/22. There was a cancellation, so patient's surgery was changed to 2/17/22 on 2/15/22. Team became aware of this change on 2/16/22 and there was no time to conduct baseline visit prior to patient's surgery. ", "ewdateterm": "2022-02-16", "ewdisreasons": "N/A", "ewpireason": "3", "ewprimaryreason": "2", "genident": "N/A", "main_record_id": "20069", "obtain_date": "2022-02-07", "participation_interest": "2", "ptinterest_comment": "call tomorrow", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-24", "sp_v1_preop_date": "2022-03-14", "sp_v2_6wk_date": "2022-05-05", "sp_v3_3mo_date": "2022-06-24", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60285": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20073", "obtain_date": "2022-02-15", "participation_interest": "2", "ptinterest_comment": "Consent later today", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-04", "sp_v1_preop_date": "2022-04-01", "sp_v2_6wk_date": "2022-05-16", "sp_v3_3mo_date": "2022-07-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60286": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-24 14:48:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No action plan needed", "erep_protdev_desc": "Day 21 opioid use acute followup and deep breathing and coughing surveys were collected 1 day out of window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-31 10:22:03", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None needed", "erep_protdev_desc": "Day 28 Acute trajectory survey was collected on day 29 due to staff's inability to follow up on day 28", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}}, "age": "78", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-08", "dem_race": "N/A", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20071", "obtain_date": "2022-02-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-01", "sp_v1_preop_date": "2022-02-21", "sp_v2_6wk_date": "2022-04-12", "sp_v3_3mo_date": "2022-06-01", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60287": {"adverse_effects": {"1": {"erep_action_taken": "Patient stated she is still willing to participate in the study. She was not concerned about the bumps since they dissipated quickly. ", "erep_ae_date": "2022-02-25", "erep_ae_desc": "After use of the neuropen during the temporal summation test, the patient had small red bumps on her arm and chest (more prominent on the arm) where the pen had been used. The bumps did not appear until a few minutes after the test was complete. Patient stated these did not hurt and that she just has \"sensitive skin. \" Bumps were almost completely resolved by the end of QST testing. Only a small amount of redness left. ", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-02-28 13:01:51", "erep_onset_date": "2022-02-25 09:45", "erep_outcome": "Patient was happy to continue with the rest of testing and later study visits. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-02-25 10:10", "erep_visit_inv": "2"}}, "age": "27", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20075", "obtain_date": "2022-02-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "27", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-16", "sp_v1_preop_date": "2022-02-25", "sp_v2_6wk_date": "2022-04-27", "sp_v3_3mo_date": "2022-06-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60288": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Deferred participation or now. Patient had hard time making decision before surgery and surgery date was moved a couple times. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60289": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60290": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "cannot commit to the time commitment.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60291": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Voicemail full, sent email\r\nSurgeon talked to pt, not a good candidate and declined 2/17", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60292": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient's daughter wanted to know about the study as well. Spoke iwth her and patient. Emailed and was told would follow up. Followed up with patient's daughter and she asked for protocol to be sent (she is a research coordinator at UM as well). Explained to daughter we cannot send full protocol as this time. After this no response from patient or daughter.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60293": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Due to low energy, patient wanted to prioritize it to be with family rather than on study visits.", "ewdateterm": "2022-02-17", "ewdisreasons": "5|1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20074", "obtain_date": "2022-02-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-24", "sp_v1_preop_date": "2022-02-21", "sp_v2_6wk_date": "2022-04-07", "sp_v3_3mo_date": "2022-05-24", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60294": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "short term memory loss", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60295": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Deferred participation at this time. Patient unsure when will get surgery, in the running for a new job. Will contact later on if does get scheduled. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "38", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60296": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much to add onto their schedule. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60297": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60298": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much travel", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60299": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "wants to focus on sx", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60300": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "extreme claustrophobia to the point of needing sedation ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60301": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient states he does not have time for a visit prior to surgery. Still working and already overwhelmed with surgery etc. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60302": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed by surgery", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60303": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt. unable to come in before sx for baseline visit.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60304": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-21 10:38:00", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "none needed", "erep_protdev_desc": "Expectation Survey was collected day of surgery", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20076", "obtain_date": "2022-02-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-18", "sp_v1_preop_date": "2022-03-07", "sp_v2_6wk_date": "2022-04-29", "sp_v3_3mo_date": "2022-06-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60305": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Spoke to patient in clinic, wanted more time to think/email with information.\r\n\r\nLVM \r\n\r\nDid not respond", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60306": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient got nervous about driving 2 hours for the baseline visit. Decline due to travel distance. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60307": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient was running errands, asked to be called back the next day\r\n\r\nPatient surgery's got moved up (surgeon had to move it), no time for baseline visit. Deferred participation. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60308": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too big of a travel commitment ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60309": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20078", "obtain_date": "2022-02-28", "participation_interest": "2", "ptinterest_comment": "Yes- enroll next week on 2/28", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "3", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-18", "sp_v1_preop_date": "2022-03-17", "sp_v2_6wk_date": "2022-04-29", "sp_v3_3mo_date": "2022-06-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60310": {"age": "64", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20081", "obtain_date": "2022-03-11", "participation_interest": "2", "ptinterest_comment": "Cb next week, patient lives 7 hours away", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-06", "sp_v1_preop_date": "2022-04-05", "sp_v2_6wk_date": "2022-05-18", "sp_v3_3mo_date": "2022-07-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60311": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Pt. noted that they didn't want to go through with the study as they already couldn't image to begin with. ", "ewdateterm": "2022-04-06", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20079", "obtain_date": "2022-03-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-21", "sp_v1_preop_date": "2022-04-07", "sp_v2_6wk_date": "2022-06-02", "sp_v3_3mo_date": "2022-07-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60312": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient overwhelmed with surgery and chemotherapy at the moment. Also, patient stated they will not have time for visits after surgery- will be back to work \"6 days a week from dawn to dark as soon as I can\"\r\n", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60313": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. can't fit study visits in their schedule", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60314": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Per patient extremely claustrophobic (gave this information when mentioned MRI)- will exclude", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "6", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60315": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not want to do MRI and bloodwork- per patient just had these 2 things done for pre-surgical workout and does not want to do again", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60316": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient deferred participation for now. Very overwhelmed with current appointments, upcoming surgery, and cancer diagnosis. Stated that he may have another surgery in the future and would be willing to be approached again if he qualifies. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60317": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient does not want to drive again for BL visit (lives 3.5 hrs away and with gas prices). Offered patient day before surgery but did not want this either. Stated they are likely driving down day of surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60318": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient very overwhelmed with surgery and current situation. Stated research study would add too much on his plate.\r\n\r\nAlso, patient was see on 3/11/22 and surgery was scheduled for 3/22/22, less than 2wks ok. So, also a very quick turn around and hard for patient to have time for baseline visit.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60319": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient was see on 3/11/22 and surgery was scheduled on 3/25/22 only 2 weeks out.\r\n\r\nAlso, patient just had a death in the family and does not have time for a baseline visit before surgery. Wished patient the best and let her know we will defer participation for now. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60320": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient stated she is overwhelmed with surgery and does not want to do any more tests etc before surgery. ", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60321": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient does not want to travel for study visits (>1hr away). Offered have visits same day as other appt and patient still declined. Patient said she also does not want to do any more testing. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60322": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60323": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Deferred participation", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60324": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60325": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "Deferred participation- patient unable to come in for BL visit on the day she planned (lives 150 miles away) because she has more appts than expected", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60326": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient lives 3 hours away and stated she will not be coming to Ann Arbor unless for medical reasons. Did not let me finish explaining study/compensation. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60327": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "scheduled very quickly for surgery (w/in 2wks) and lives 150 miles away, no time for BL visit\r\n", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60328": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient surgery was scheduled w/in 2wks of appearing on OR schedule. Surgery scheduled on 3/14 and surgery on 3/31. Patient in Florida until 3/26 and then has other appts on 3/28 and 3/29 and unable to come in for baseline appt (only 1 open day for patient to prep for surgery). ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60329": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-04-21 12:52:40", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "none needed", "erep_protdev_desc": "Baseline surveys were completed day of surgery", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "25", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "1|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "3", "main_record_id": "20084", "obtain_date": "2022-03-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "24", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-21", "sp_v1_preop_date": "2022-04-12", "sp_v2_6wk_date": "2022-06-02", "sp_v3_3mo_date": "2022-07-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60330": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVm x 3\r\nEmailed recruitment info\r\n\r\nNo response", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60331": {"age": "26", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "1|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20088", "obtain_date": "2022-03-25", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "26", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-18", "sp_v1_preop_date": "2022-04-07", "sp_v2_6wk_date": "2022-06-29", "sp_v3_3mo_date": "2022-08-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60332": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "has stainless implants ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60333": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "5", "ethnic": "2", "ewcomments": "Patient unfortunately passed shortly after surgery due to complications after procedure. ", "ewdateterm": "2022-04-06", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "4", "genident": "1", "main_record_id": "20085", "obtain_date": "2022-03-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-01", "sp_v1_preop_date": "2022-03-31", "sp_v2_6wk_date": "2022-05-13", "sp_v3_3mo_date": "2022-07-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60334": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-05-10 13:27:35", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None at this time. ", "erep_protdev_desc": "Patient was exposed to covid 2 days before surgery on 5/5/22. So, patient's surgery was postponed to 6/9/2022. Will be 1 week outside of baseline window (baseline completed 7wks before surgery). ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20086", "obtain_date": "2022-03-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-05", "sp_v1_preop_date": "2022-04-21", "sp_v2_6wk_date": "2022-06-16", "sp_v3_3mo_date": "2022-08-05", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60335": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-28 10:37:56", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Date was corrected in RK studios. 6wk visit/surveys and all upcoming visits and surveys will not be affected. \r\nTeam will make sure to check all participants' surgery date the week of surgery to ensure we don't miss these last minute scheduling changes. ", "erep_protdev_desc": "Patient's visit date was wrong in RK studios. Expectation items were filled out after surgery and all acute daily surveys (3d-28d post op) are 7 days late. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-10 08:31:08", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "I (RA) will make sure to check entire CRF to make sure all fields are filled out. Blood pressure is listed first on our paper CRF, so checking back will allow the RA to see if something is missing. ", "erep_protdev_desc": "Blood pressure machine glitched when took patient's blood pressure at beginning of QST. Planned to take blood pressure again prior to cuff, but I (RA) forgot to take blood pressure again. ", "erep_protdev_type": "4", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "42", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20093", "obtain_date": "2022-04-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-12", "sp_v1_preop_date": "2022-04-19", "sp_v2_6wk_date": "2022-06-23", "sp_v3_3mo_date": "2022-08-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60336": {"adverse_effects": {"1": {"erep_action_taken": "Patient did not ask to withdraw or discontinue participation. Patient stated she will do all other study procedures besides MRI. ", "erep_ae_date": "2022-04-21", "erep_ae_desc": "Patient was claustrophobic once in the MRI and having head cage put on. Patient tried a couple times with head cage but stated \"this would not work\" and decided not to do scan. Was too claustrophobic with head cage. Patient never had an MRI before and when enrolled stated she was willing to try. ", "erep_ae_relation": "1", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-04-22 09:21:41", "erep_onset_date": "2022-04-21 15:00", "erep_outcome": "Patient will continue with study but will not image at 3mo visit. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-04-21 15:10", "erep_visit_inv": "2"}}, "age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-29", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20095", "obtain_date": "2022-04-11", "participation_interest": "2", "ptinterest_comment": "Potentially interested, emailed info, follow up in a couple of days.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "4", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-04", "sp_v1_preop_date": "2022-04-21", "sp_v2_6wk_date": "2022-06-15", "sp_v3_3mo_date": "2022-08-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60337": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed and too far. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60338": {"age": "65", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20092", "obtain_date": "2022-03-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-14", "sp_v1_preop_date": "2022-04-04", "sp_v2_6wk_date": "2022-05-26", "sp_v3_3mo_date": "2022-07-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60339": {"age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20096", "obtain_date": "2022-04-15", "participation_interest": "2", "ptinterest_comment": "Wants to finalize all surgical detail before considering research. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-22", "sp_v1_preop_date": "2022-04-19", "sp_v2_6wk_date": "2022-06-03", "sp_v3_3mo_date": "2022-07-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60340": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "MRI images can't be read unless contrast is used.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60341": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Interested but too tight of a time frame for them to come in for baseline visit. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60342": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too busy for research study.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60343": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient lives alone and doesn't drive much, son is coming from California to take care of him, does not want to \"run his son around\" politely declined\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60344": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No time before surgery per patient. Patient states she will be very busy before surgery. Surgery was scheduled quickly within 2-3 wks of appearing on OR schedule", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60345": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient scheduled for surgery on 4/18 from appointment on 4/5 (only 13 days between scheduling and surgery). Per patient unable to make baseline visit with personal commitments and work before surgery. Declined at this time. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60346": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient does not want to do any more tests before surgery ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60347": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient stated he is not really interested in research and is going to be \"too busy\" after surgery", "reason_not_interested": "4|0", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60348": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-06-06 14:51:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient not able to come in for 6wk visit. Patient lives on other side of the state and unable to come in until after 8wks post-op, outside of 6wk window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "46", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20098", "obtain_date": "2022-04-18", "participation_interest": "2", "ptinterest_comment": "F/U in 1wk", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-26", "sp_v1_preop_date": "2022-04-21", "sp_v2_6wk_date": "2022-06-07", "sp_v3_3mo_date": "2022-07-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60349": {"age": "55", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20097", "obtain_date": "2022-04-15", "participation_interest": "2", "ptinterest_comment": "LVm and emailed", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-11", "sp_v1_preop_date": "2022-04-25", "sp_v2_6wk_date": "2022-06-22", "sp_v3_3mo_date": "2022-08-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60350": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient unable to make baseline visit but potentially interested in future. Patient was scheduled for surgery very quickly (12 days) and lives about 2 hours away. Coming down day before surgery and considered this, but was told he now has to have a bronchial scope the day before surgery. So, declined participation at this time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60351": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient will talk to husband and f/u- starting chemo and radiation and then has a lot of appts coming up", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60352": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient very overwhelmed at the moment and does not want to participant in research. Just finished chemo, been very sick, and likely having bladder surgery 2wks prior to thoracic surgery. ", "reason_not_interested": "5|0", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60353": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-28 08:23:03", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None at this time. Due to patient changing availability. ", "erep_protdev_desc": "Patient was going to come in around 6wks post-op for clinic appointment. Patient's appointment was cancelled and moved to a virtual one, so patient could not longer come in. Patient came in yesterday 7/27 for lab draw and we did 6wk draw concurrently with this. 1 week outside of window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "36", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20104", "obtain_date": "2022-05-18", "participation_interest": "2", "ptinterest_comment": "F/U after CT scan in early May patient not yet officially scheduled for surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "36", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-01", "sp_v1_preop_date": "2022-05-20", "sp_v2_6wk_date": "2022-07-13", "sp_v3_3mo_date": "2022-09-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60354": {"age": "42", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20099", "obtain_date": "2022-04-20", "participation_interest": "2", "ptinterest_comment": "Ready to enroll at 14:00 on 4/20", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "42", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-15", "sp_v1_preop_date": "2022-05-13", "sp_v2_6wk_date": "2022-07-27", "sp_v3_3mo_date": "2022-09-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60355": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "28", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60356": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Deferred participation. Willing to maybe be talked to again in future. Right now patient just wants to focus on surgery and healing. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60357": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Issues with transportation and too short of a window. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60358": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient's reply email, has been at \"facility enough\" with recent surgery and upcoming surgery. Does not want to do anything extra. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60359": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient was overwhelmed with surgery to begin with, was unsure if she wanted to have it. Would like to focus on diagnosis and surgery at this time and not add \"anything extra to her plate.\"", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60360": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Relies on someone else for transportation and would require things to be scheduled a couple weeks in advance. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60361": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20101", "obtain_date": "2022-04-28", "participation_interest": "2", "ptinterest_comment": "email and follow up on 4/27", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-11", "sp_v1_preop_date": "2022-05-02", "sp_v2_6wk_date": "2022-06-22", "sp_v3_3mo_date": "2022-08-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60362": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "unable to make time commitment for things like the baseline visit. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60363": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "F/U Friday- surgery scheduled w/in 8 days, lives 3 hours away\r\n\r\nDeferred participation, timeline to short with surgery and distance to U of M, willing to be re-contacted in the future", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60364": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM x 2\r\nSent recruitment email x 1", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60365": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient's surgery was cancelled. Did not contact patient again. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "35", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60366": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Surgery being moved to October 2022. Will contact closer to then. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60367": {"age": "59", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-04", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20102", "obtain_date": "2022-05-04", "participation_interest": "2", "ptinterest_comment": "Cb later today to consent ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-07", "sp_v1_preop_date": "2022-05-16", "sp_v2_6wk_date": "2022-07-19", "sp_v3_3mo_date": "2022-09-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60368": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much of a commitment and relies on other for rides into Ann Arbor. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60369": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No reliable transport and feel like it's too much on their plate. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60370": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-05-10 17:38:16", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "none needed as deviation was due to adjusting baseline visit to accommodate patient's schedule. ", "erep_protdev_desc": "Due to baseline visit after typical business hours, blood draw couldn't be performed. Blood will be collected on day of surgery. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "41", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20103", "obtain_date": "2022-05-07", "participation_interest": "2", "ptinterest_comment": "Interested cb tomorrow to consent", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "41", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-12", "sp_v1_preop_date": "2022-05-10", "sp_v2_6wk_date": "2022-06-23", "sp_v3_3mo_date": "2022-08-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60371": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested in research that doesn't have a positive benefit. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60372": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "MRI\r\n\r\nPatient was going to enroll but had head MRI prior to enrollment phone call. Per patient had a bad experience with MRI and was too scared/did not want to do this MRI. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60373": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60374": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60375": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Don't want medically unnecessarily scans. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60376": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "overwhelmed with medical visit for multiple family members currently.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60377": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "40", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60378": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not willing to commit due to travel ", "reason_not_interested": "2", "redcap_data_access_group": "university_of_mich", "screening_age": "42", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60379": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "3", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60380": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "7", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20107", "obtain_date": "2022-05-23", "participation_interest": "2", "ptinterest_comment": "Call next week to consent", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-03", "sp_v1_preop_date": "2022-05-25", "sp_v2_6wk_date": "2022-07-15", "sp_v3_3mo_date": "2022-09-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60381": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60382": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "20114", "obtain_date": "2022-05-27", "participation_interest": "2", "ptinterest_comment": "Saw in clinic, consent next week", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60383": {"age": "34", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "2", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20105", "obtain_date": "2022-05-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "34", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-27", "sp_v1_preop_date": "2022-05-24", "sp_v2_6wk_date": "2022-07-08", "sp_v3_3mo_date": "2022-08-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60384": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60385": {"age": "54", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20109", "obtain_date": "2022-05-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-03", "sp_v1_preop_date": "2022-09-22", "sp_v2_6wk_date": "2022-11-13", "sp_v3_3mo_date": "2023-01-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60386": {"age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20113", "obtain_date": "2022-05-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-03", "sp_v1_preop_date": "2022-06-09", "sp_v2_6wk_date": "2022-09-14", "sp_v3_3mo_date": "2022-11-03", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60387": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-01 11:40:14", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None needed", "erep_protdev_desc": "Pt. 6-week blood draw occurred 2 weeks and 2 days after surgery. Pt. has a long commute and was only in the area at that time", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-20", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20106", "obtain_date": "2022-05-23", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-15", "sp_v1_preop_date": "2022-06-14", "sp_v2_6wk_date": "2022-07-27", "sp_v3_3mo_date": "2022-09-15", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60388": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Deferred participation", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60389": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Never responded ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60390": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20118", "obtain_date": "2022-06-06", "participation_interest": "2", "ptinterest_comment": "LVM ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-21", "sp_v1_preop_date": "2022-06-17", "sp_v2_6wk_date": "2022-08-02", "sp_v3_3mo_date": "2022-09-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60391": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has to have diagnostic MRI and would not want to do another one with study ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60392": {"age": "22", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "5", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20115", "obtain_date": "2022-05-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "22", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-20", "sp_v1_preop_date": "2022-06-13", "sp_v2_6wk_date": "2022-08-01", "sp_v3_3mo_date": "2022-09-20", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60393": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient not interested in the \"chronic pain study.\" Did not give further reasoning. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60394": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much travel and scheduled for sx. with less than 2 business days in between.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60395": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient has had brain MRI in past with head cage and \"could not do it.\" Stated if didnt have to do MRI then would definitely enroll for study, but since this is a procedure will decline at this time. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60396": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM x 2\r\nsent recruitment email", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60397": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-03", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20119", "obtain_date": "2022-06-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-06", "sp_v1_preop_date": "2022-06-24", "sp_v2_6wk_date": "2022-08-17", "sp_v3_3mo_date": "2022-10-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60398": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-12 13:04:22", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "none needed as this was the earliest pt. could come in for the blood draw. ", "erep_protdev_desc": "6-week blood draw was performed 2 days past visit window", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20121", "obtain_date": "2022-06-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-22", "sp_v1_preop_date": "2022-06-21", "sp_v2_6wk_date": "2022-08-03", "sp_v3_3mo_date": "2022-09-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60399": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "2", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20125", "obtain_date": "2022-06-15", "participation_interest": "2", "ptinterest_comment": "LVM and emailed", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-27", "sp_v1_preop_date": "2022-07-11", "sp_v2_6wk_date": "2022-09-07", "sp_v3_3mo_date": "2022-10-27", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60400": {"age": "61", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20128", "obtain_date": "2022-06-23", "participation_interest": "2", "ptinterest_comment": "LVM no email on file", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-25", "sp_v1_preop_date": "2022-07-22", "sp_v2_6wk_date": "2022-09-05", "sp_v3_3mo_date": "2022-10-25", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60401": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "travel and would make there schedule too packed", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60402": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-08 12:39:13", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None at this time. Patient's blood draw went very well and she was give cold compress and lavender scent by nurse. Patient did not faint with IV and nurse was able to obtain the blood for our study. ", "erep_protdev_desc": "Had patient's blood drawn on day of surgery from pre-op nurse after she placed patient's IV. At baseline visit patient stated she is vasovagal and usually faints when she gets blood drawn. So, for patient safety we decided to do it day of surgery when she was able to lay down and would not need an extra poke. ", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-30 09:58:51", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "none needed", "erep_protdev_desc": "6-Week surveys were resent and completed past the visit window.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "54", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20123", "obtain_date": "2022-06-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-08", "sp_v1_preop_date": "2022-06-16", "sp_v2_6wk_date": "2022-08-19", "sp_v3_3mo_date": "2022-10-08", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "60403": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM x 2\r\n\r\nPatient did not email address on file. Patient finally called back 2 days and thought we were surgical team. No time for baseline visit. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60404": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient unable to accommodate baseline visit in schedule and overwhelmed with surgery. Offered patient same day as other appt and still politely declined due to time constraints", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60405": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60406": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Deferred participation. Patient left Michigan Medicine care to seek other treatments. Will let her surgeon know if she needs to come back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60407": {"age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20130", "obtain_date": "2022-06-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-07", "sp_v1_preop_date": "2022-06-27", "sp_v2_6wk_date": "2022-08-18", "sp_v3_3mo_date": "2022-10-07", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60408": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient unable to come in for baseline visit- surgery scheduled very quickly and lives 2 hours away with little kids, but would have participated if closer to Ann Arbor and said ok to contact in future if eligible ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "31", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60409": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient a lot of things going on right now and does not have time for study. Patient was scheduled very quickly and hard to fit in other appts for surgery and she needs a driver.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60410": {"age": "53", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20131", "obtain_date": "2022-06-28", "participation_interest": "2", "ptinterest_comment": "Verbal Yes, consent on 6/28 @ 9am", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "53", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-29", "sp_v1_preop_date": "2022-08-12", "sp_v2_6wk_date": "2022-10-10", "sp_v3_3mo_date": "2022-11-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60411": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-17 07:29:27", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "none needed.", "erep_protdev_desc": "Due to time restraints at baseline visit, blood collection was delayed till day of surgery.", "erep_protdev_type": "2", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20129", "obtain_date": "2022-06-23", "participation_interest": "2", "ptinterest_comment": "LVM", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-17", "sp_v1_preop_date": "2022-08-01", "sp_v2_6wk_date": "2022-09-28", "sp_v3_3mo_date": "2022-11-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60412": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Deferred participation. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60413": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60414": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much on their plate", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60415": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient cannot miss any work prior to surgery. No time for baseline visit- offered same day as other appts but stated he works evenings and cant afford to be late. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60416": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Per patient no time for baseline visit. Offered same day as other appts but politely declines. Lot going on before surgery. Long distant to travel to U of M as well. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60417": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to do unnecessary scans.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60418": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "would be too much added stress on them", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60419": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed with current situation and not willing to participate ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60420": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60421": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60422": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60423": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to do closed MRI", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60424": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Compensation is not enough to cover the days of work they will need to take off for visits.", "reason_not_interested": "2", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60425": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Difficulty arranging transportation", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60426": {"age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20136", "obtain_date": "2022-07-07", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-25", "sp_v1_preop_date": "2022-07-20", "sp_v2_6wk_date": "2022-09-05", "sp_v3_3mo_date": "2022-10-25", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60427": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Won't do MRI", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60428": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60429": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Never responded", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60430": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "24", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60431": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Overwhelmed by anything medical related, would be too stressful for them. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "30", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60432": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too short of a turn around and pt. seemed overwhelmed by the study.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60433": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Study is too involved and pt. is unwilling to commit. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60434": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not enough time ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60435": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much in not enough time", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60436": {"age": "37", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20139", "obtain_date": "2022-07-18", "participation_interest": "2", "ptinterest_comment": "Ready to consent but currently busy, follow up on 7/18 to sched a time for enrollment.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "37", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-29", "sp_v1_preop_date": "2022-08-11", "sp_v2_6wk_date": "2022-10-10", "sp_v3_3mo_date": "2022-11-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60437": {"age": "76", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "5", "ethnic": "2", "ewcomments": "Pt. deceased on 9/12/22", "ewdateterm": "2022-09-12", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "4", "genident": "2", "main_record_id": "20140", "obtain_date": "2022-07-18", "participation_interest": "2", "ptinterest_comment": "Saw patient in clinic. Patient was very overwhelmed, going to f/u next week. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-11", "sp_v1_preop_date": "2022-07-25", "sp_v2_6wk_date": "2022-09-22", "sp_v3_3mo_date": "2022-11-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60438": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "no longer able to come in for baseline visit ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60439": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to do an MRI. Was very clear would not do this. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60440": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM for patient x 3 starting July 20th (when came on OR schedule). Patient called back yesterday 8/2, only 2 days before surgery (tomorrow 8/4). No time for baseline visit but would be ok being contacted in the future if more time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60441": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient does not have a car and niece takes him everywhere. He is overwhelmed before surgery and would like to defer participation for now. But patient stated maybe in future when transportation is more secure and he is not as overwhelmed. Surgery scheduled within 2 weeks and other appts and mediastinoscopy inbetween. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60442": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pacemaker- exclude. Saw in chart right before called pt. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60443": {"age": "80", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20142", "obtain_date": "2022-07-25", "participation_interest": "2", "ptinterest_comment": "Emailed info follow up in a couple days.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-09", "sp_v1_preop_date": "2022-07-28", "sp_v2_6wk_date": "2022-09-20", "sp_v3_3mo_date": "2022-11-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60444": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Exclude- patient is extremely claustrophobic. Would be willing to do study if not. Exclude. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "47", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60445": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much on their plate", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60446": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "26", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60447": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Sx never scheduled", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60448": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt felt overwhelmed with all of the study tasks. 7/20- MD", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60449": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60450": {"age": "58", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "7", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20141", "obtain_date": "2022-07-22", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-30", "sp_v1_preop_date": "2022-08-17", "sp_v2_6wk_date": "2022-10-11", "sp_v3_3mo_date": "2022-11-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "60451": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Very overwhelmed but did not decline. Will review brochure but asked to not be followed. Pt will reach out if they want to participate. \r\n\r\nNo response from patient after contacting a few times after initial contact. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60452": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient was seen on Friday 7/22 and surgery was scheduled over the weekend for the following Friday 7/29. Called patient when she came on OR report Monday 7/22. She was getting a bone scan and spoke mostly to her son. Patient deferred participant, too long of a drive (5 hours) and to short of a timeline before surgery. Also have to recover from bone scan today before surgery. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60453": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Came on OR report on 7/26 and scheduled for 7/29.\r\nPatient does not drive and her daughters drive her. Unable to make a trip in 3 days prior to surgery. Patient lives over 3 hours away as well. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60454": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60455": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20143", "obtain_date": "2022-07-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-17", "sp_v1_preop_date": "2022-08-05", "sp_v2_6wk_date": "2022-09-28", "sp_v3_3mo_date": "2022-11-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60456": {"adverse_effects": {"1": {"erep_action_taken": "Research coordinator got patient some cold water and a snack. Had patient continue to sit in chair with door open and research coordinator sat outside of exam room to allow patient to eat and drink while keeping an eye on her. After about 15 minutes after eating/drinking, research assistant checked on patient and she felt much better. Continued with rest of QST testing without trouble. ", "erep_ae_date": "", "erep_ae_desc": "After patient had her blood draw at baseline visit, she became slightly SOB a few minute after and had a headache and a little dizzy. Patient described though that due to the mass in her chest, she gets SOB very often and this is normal for her. She also has headaches quite frequently due to a previous neck injury. Patient also admitted she had not eaten since the day before due to an upset stomach the previous day. So, patient did not attribute her symptoms to the blood draw but other health conditions. ", "erep_ae_relation": "2", "erep_ae_serious": "0", "erep_ae_severity": "1", "erep_ae_yn": "1", "erep_local_dtime": "2022-08-24 12:45:43", "erep_onset_date": "2022-08-23 14:45", "erep_outcome": "Patient felt much better after eating and drinking. She was able to finish QST testing and visit. She stated everyone was very accommodating and appreciated the help. Patient left the visit feeling well. ", "erep_prot_dev": "0", "erep_protdev_caplan": "", "erep_protdev_desc": "", "erep_protdev_type": "", "erep_rel_covid19": "0", "erep_resolution_date": "2022-08-23 15:00", "erep_visit_inv": "2"}}, "age": "43", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20144", "obtain_date": "2022-07-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "43", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-19", "sp_v1_preop_date": "2022-08-23", "sp_v2_6wk_date": "2022-11-29", "sp_v3_3mo_date": "2023-01-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60457": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient lives about 2.5 hrs away and surgery scheduled within a week. Unable to come in for baseline visit. Offered pt tomorrow (as coming in for pre op) but patient can't leave dogs that long (since 3 hour ride home too). Surgery scheduled for 8/10. Would be ok being contacted in the future if eligible. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60458": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "bad joint pain limiting mobility and wants to get it resolved first. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60459": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVm x 2 and emailed", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "42", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60460": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "unwilling to do QST", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60461": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Very overwhelmed and stressed with current life situations/health. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60462": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Per patient not very comfortable with blood draws. Also lives about 2 hours away. Offered to do appointment same day as pre op appt and to do labs while patient gets other labs done. Patient politely still declined. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "32", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60463": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVm x 2 and emailed", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60464": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60465": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60466": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt. interested in study but MD unsure if sx is right treatment. Pt's case being sent to tumor board and will be evaluated. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60467": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient has Aspergers and is afraid of blood draws, has to take medcation for them. Decline study. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "18", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60468": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM x 2 and emailed x 2 after initially speaking with pt. No response at this time. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60469": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Will read email and reach out if interested. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60470": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "will discuss w/ spouse and follow up next week", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60471": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "unable to add study visit on top of their current responsibilities. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60472": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much added stress for them.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60473": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Exclude- very claustrophobic and cannot do MRI without sedative, otherwise would have been willing to enroll", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60474": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Current health issues makes it difficult for them to participate. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60475": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is nervous about traveling. Is care taker for special needs son and her husband. Unable to do any extra trips for visits. Offered same day as other appts but pt politely declined. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60476": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Must exclude. Patient has lesions on brain. Was very interested but told us this information prior to enrollment, so explained to pt this is an exclusion for MRI and we would not be able to enroll her. Patient very understanding. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60477": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-09-12 10:38:47", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "Met with pt in family waiting on DOS and had her complete her baseline surveys and expectation items.", "erep_protdev_desc": "Pt did not complete baseline surveys or expectation items prior to DOS.", "erep_protdev_type": "7", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "75", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20149", "obtain_date": "2022-08-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-16", "sp_v1_preop_date": "2022-09-01", "sp_v2_6wk_date": "2022-10-28", "sp_v3_3mo_date": "2022-12-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60478": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient is severely claustrophobic and cannot do an MRI unless medicated or in twilight sleep. Explained to patient this is an exclusion criteria for the MRI and we would not enroll her in the study. Patient understood- excluded from study. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60479": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60480": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "unable to make time commitment", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60481": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "unable to fit visits into schedule", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60482": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. doesn't think study will be relevant to themselves", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60483": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-29", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60484": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. wants to focus on recover and doesn't want to add any extra tasks to schedule.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60485": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Potentially interested \r\nNo response from patient- patient also was admitted prior to surgery and was unable to be contacted", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60486": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60487": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Exclude- patient was very interested but extremely claustrophobic and cannot do MRI. Explained to patient must exclude due to claustrophobia and she understood- 8/31 SL. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60488": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient excluded due to claustrophobia. Patient was interested but admitted to claustrophobia after talking about MRI. 9/6/22 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60489": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too involved and unable to fit in personal schedule", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60490": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60491": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Severe claustrophobia ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60492": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. splits time between MI and FL", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60493": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too busy to fit in schedule", "reason_not_interested": "4|0", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60494": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM and emailed 9/7 SL\r\nVM full 9/12 SL\r\nVM full, sent 1 more email 9/16 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60495": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "LVM and emailed x 1 9/8/22 SL\r\n\r\nPer patient \"not going to do it.\" Asked patient why and she said she does \"not do surveys.\" Thanked patient for her time. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60496": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to leave VM and no email on file- 9/8/22 SL\r\n\r\nLVM 9/12 SL\r\n\r\nvery hard to hear patient on phone; patient immediately said no thank you when mentioned research and hung up the phone 9/16 SL\r\n", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "50", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60497": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient asked for information to be sent so she can think about it. Emailed sent, will f/u in a week if dont hear from patient. 9/12 SL\r\n\r\nBad connection on phone with patient, tried calling back on cellphone and no answer 9/22 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60498": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Pt. getting biopsy first then mass removal several weeks later. Reach out to patient if they do get scheduled for second surgery", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60499": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient potentially interested. Would usually say yes right away but worried about time commitment (surgery scheduled in 2wks). Will think about it, asked for email to be send with information. F/U in a couple days 9/14 SL\r\n\r\nPatient stated he had too many time commitments in coming months (Oct and Nov). Offered to do baseline on same day as pre op visit but patient still politely declined. 9/16 SL", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60500": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "20162", "obtain_date": "2022-09-14", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-11-07", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-12-19", "sp_v3_3mo_date": "2023-02-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60501": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is very overwhelmed at the moment. Cancer was an incidental finishing after an MRI for rotator cuff tear in shoulder. Spoke with patient at length and going to send information in an email. if patient does not follow up in a 1 week will call back. Also lives about 4 hours away, offered appointment on days she is coming down. 9/16 SL\r\n\r\nPatient still extremely overwhelmed with cancer diagnosis and is too nervous to participate in the study at this time. Thanked patient and wished her the best with surgery. 9/23 SL", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60502": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Patient's wife answered and they were leaving at the moment, call back Monday 9/16 SL\r\n\r\nSpoke to pt and he has not had a chance to look at info, out of town until Sunday, will give us a call or we can give him a call mid next week if we don't hear from him 9/22 SL", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60503": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested in committing to study", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60504": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "LVM and sent email 9/20 SL\r\n\r\nSpoke to patient at length about study. Asked for website and more information to be sent. Sent email to patient and told him I would follow up early next week 9/22 SL. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "N/A", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60505": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient lives 2 horus away and seemed slightly unsure about study. Also was not sure when his surgery was. Wanted to tallk to wife. Offered to work around patient's schedule for visits. Wanted some info sent. Will plan to f/u in a couple days 9/20 SL\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60506": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to lay flat for MRI for 1 hour", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60507": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "unsure and wants to think about it", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60508": {"age": "32", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20166", "obtain_date": "2022-09-22", "participation_interest": "2", "ptinterest_comment": "Consent on 9/22 @ 12:15", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "32", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-12", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-11-22", "sp_v3_3mo_date": "2023-01-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "60509": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Emailed & LVM ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60510": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Emailed and LVM ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "60511": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Scheduled w/in 6 days of virtual appt and came on OR report 4 days before surgery. LVM for pt and send recruitment email. 9/23 SL\r\n", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70001": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Pt. surgery very soon, could not make it into a surgery visit due to time constraints. Could contact again in the future.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-09-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Sx. canceled cannot enroll right now but potentially could in the future.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70003": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-21", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20029", "obtain_date": "2021-10-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-04", "sp_v1_preop_date": "2021-10-27", "sp_v2_6wk_date": "2021-12-16", "sp_v3_3mo_date": "2022-02-03", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "34", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Cannot scan", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70007": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-11", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20035", "obtain_date": "2021-11-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-11-16", "sp_v1_preop_date": "2021-11-15", "sp_v2_6wk_date": "2021-12-28", "sp_v3_3mo_date": "2022-02-15", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Cannot Scan", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70012": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-21 15:12:14", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "", "erep_protdev_desc": "Patient was unable to take oxy before imaging like at baseline visit due to no longer having a prescription for it. ", "erep_protdev_type": "5", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "81", "consent_process_form_complete": "2", "date_and_time": "2021-12-06 10:45", "date_of_contact": "2021-11-29", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20041", "obtain_date": "2021-12-01", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-15", "sp_v1_preop_date": "2021-12-07", "sp_v2_6wk_date": "2022-01-26", "sp_v3_3mo_date": "2022-03-16", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70013": {"age": "83", "consent_process_form_complete": "0", "date_and_time": "N/A", "date_of_contact": "2021-12-06", "dem_race": "5", "ethnic": "2", "ewcomments": "Pt. is in more pain than expected after sx. and is feeling overwhelmed by his recovery. He also had a bad experience doing the MRI during his baseline and does not want to continue doing the daily surveys. He said he has a lot on his plate and needs to discontinue his involvement in the study.", "ewdateterm": "2022-01-10", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "1", "main_record_id": "20043", "obtain_date": "2021-12-08", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "83", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2021-12-17", "sp_v1_preop_date": "2021-12-15", "sp_v2_6wk_date": "2022-01-28", "sp_v3_3mo_date": "2022-03-18", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": 1}, "70014": {"age": "62", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20051", "obtain_date": "2021-12-16", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-18", "sp_v1_preop_date": "2022-01-10", "sp_v2_6wk_date": "2022-03-01", "sp_v3_3mo_date": "2022-04-18", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70015": {"age": "63", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20047", "obtain_date": "2021-12-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-01-07", "sp_v1_preop_date": "2021-12-23", "sp_v2_6wk_date": "2022-02-18", "sp_v3_3mo_date": "2022-04-07", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient re-read consent form after enrollment and determined the study activities to be too overwhelming for her. ", "ewdateterm": "2021-12-16", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20048", "obtain_date": "2021-12-13", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "70017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She did not want to use the MRIs at UofM because she previously had a bad experience there.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She is in another research study related to her sx.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70025": {"age": "66", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-10", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20058", "obtain_date": "2022-01-10", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-24", "sp_v1_preop_date": "2022-01-21", "sp_v2_6wk_date": "2022-04-07", "sp_v3_3mo_date": "2022-05-24", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70026": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70027": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She is claustrophobic and didn't want to do the MRI without being sedated.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "34", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to put her body through any more than it already is going through.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70038": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "5", "ethnic": "3", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20090", "obtain_date": "2022-03-28", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-11", "sp_v1_preop_date": "2022-04-01", "sp_v2_6wk_date": "2022-05-23", "sp_v3_3mo_date": "2022-07-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has too many appts. before sx.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70042": {"age": "69", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-31", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20094", "obtain_date": "2022-04-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-29", "sp_v1_preop_date": "2022-04-20", "sp_v2_6wk_date": "2022-06-10", "sp_v3_3mo_date": "2022-07-29", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has too much going on prior to surgery", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He expressed that he would only join the study as a way to have someone monitor his pain control after surgery. He also wanted to see his results from the MRI/genetic information, so he declined when he heard he would receive no medical benefit from the study.", "reason_not_interested": "2", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She did not want to do a closed MRI.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70049": {"age": "72", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20111", "obtain_date": "2022-05-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-13", "sp_v1_preop_date": "2022-06-01", "sp_v2_6wk_date": "2022-07-25", "sp_v3_3mo_date": "2022-09-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She does not want to come to Ann Arbor for another visit before her surgery. I offered to line it up with other visits, but she said all of her visits will be on the same day so she does not have time to add this visit as well.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She thinks it is too involved", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. runs his own business and has no time before surgery to come in for a visit. (Old decline entered 6/2/2022)", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No reason. (Old decline entered 6/2/2022)", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He is dealing with asthma and health concerns prior to surgery (old decline entered 6/2/2022)", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70055": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-11-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "A lot going on prior to sx. (old decline entered 6/2/2022)", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much going on before sx. (old decline entered 6/2/2022)", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "She is recovering from a different surgery and doesn't want to join (old decline entered 6/2/2022)", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70058": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too many appointments before sx. (old decline entered 6/2/2022)", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70059": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He is worried about being exposed to covid and also has too much going on before surgery. (Old decline entered 6/2/2022)", "reason_not_interested": "4|1", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't feel well prior to sx. and thinks he will be in too much pain after sx to participate. Also a lot going on. (Old decline entered 6/2/2022)", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "He has \"been poked and prodded enough\" before sx. (Old decline entered 6/2/2022)", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Old decline entered 6/2/2022", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much going on before sx. (Old decline entered 6/2/2022)", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-10-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. is dependent on son to drive her and doesn't want to ask him to take time off. (Old decline entered 6/2/2022)", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too much going on before sx. (Old decline entered 6/2/2022)", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70066": {"age": "56", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20117", "obtain_date": "2022-06-06", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-30", "sp_v1_preop_date": "2022-06-20", "sp_v2_6wk_date": "2022-08-11", "sp_v3_3mo_date": "2022-09-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "70067": {"age": "71", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-06", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20120", "obtain_date": "2022-06-09", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-22", "sp_v1_preop_date": "2022-06-17", "sp_v2_6wk_date": "2022-08-03", "sp_v3_3mo_date": "2022-09-22", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "70068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has a lot going on prior to surgery", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not have a way of getting to Ann Arbor and husband has dementia so she has to stay and take care of him.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70070": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Pt was recently hospitalized and became overwhelmed with the new updates in their health. ", "ewdateterm": "2022-07-13", "ewdisreasons": "6", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20126", "obtain_date": "2022-06-20", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-04", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-09-15", "sp_v3_3mo_date": "2022-11-04", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "70071": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has contra-indications to MRI. Stated her doctor said she could not do them due to metal in her body from procedure and in general not willing to do one. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Called Friday (7/15) left vm. Surgery scheduled for 7/21, unable to consent in time", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70073": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Called 7/20 @ 11:20am - pt asked to call back in an hour\r\n2nd call 7/20 @ 12:30pm - Pt not willing to do MRI, not interested", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "32", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Stated she has a lot going on due to a previous surgery/car accident. Also, husband drives her everywhere, and does not want to burden him with additional appts.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt. said she is unable to do MRIs due to extreme claustrophobia", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70076": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "waiting for sx to be scheduled\r\nNever got scheduled for sx.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Unable to get in contact", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "After a brief overview pt stated he was not interested", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70081": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "8/12 - left vm\r\n8/16 - sx. no longer on schedule", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70082": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient had given availability for baseline visit 1-2 weeks prior. No fMRI slots were available at that time, so we let patient know we would call them as soon as possible when one opened (we obtained a cancellation). We also let patient know that if an opening did not come through by 9/6 we could schedule a non-imaging visit. We called patient on 9/6 to schedule this non-imaging visit since an fMRI opening had not come through. Patient stated all his availability for a baseline visit before surgery was now gone. He was also overwhelmed with the upcoming surgery and said he wants to focus on recovery only and asked to be withdrawn. ", "ewdateterm": "2022-09-02", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20150", "obtain_date": "2022-08-17", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-16", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-10-28", "sp_v3_3mo_date": "2022-12-16", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "70083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Met with pt in clinic, was not interested specifically due to MRI.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70085": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70086": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient stated \"I don't think that's for me, I have too much going on\"", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "54", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70087": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "pt was too busy before surgery to participate", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "25", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70088": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20163", "obtain_date": "2022-09-15", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-26", "sp_v1_preop_date": "2022-09-20", "sp_v2_6wk_date": "2022-11-06", "sp_v3_3mo_date": "2022-12-26", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "70089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Was going to approach in clinic, but decided not to due to comorbidities/MRI contraindications", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Pt is too busy/nervous before surgery to participate", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "79", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70091": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "too far to drive/too busy", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70092": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "70093": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80001": {"age": "70", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20055", "obtain_date": "2022-01-05", "participation_interest": "2", "ptinterest_comment": "Will call patient to schedule the baseline visit", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-22", "sp_v1_preop_date": "2022-01-17", "sp_v2_6wk_date": "2022-04-05", "sp_v3_3mo_date": "2022-05-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2021-12-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80003": {"age": "N/A", "consent_process_form_complete": "0", "date_and_time": "2022-01-19 10:36", "date_of_contact": "2022-01-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "2022-01-20", "ewdisreasons": "1|4", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20060", "obtain_date": "2022-01-19", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "80004": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "3|5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20065", "obtain_date": "2022-01-27", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-22", "sp_v1_preop_date": "2022-02-01", "sp_v2_6wk_date": "2022-04-05", "sp_v3_3mo_date": "2022-05-22", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient's family member seems interested. Patient's concern is the long hours in clinic. Patient took the study folder home and was asked to contact study coordinator if she decides to join or have any questions.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80006": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20077", "obtain_date": "2022-02-24", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-12", "sp_v1_preop_date": "2022-03-21", "sp_v2_6wk_date": "2022-05-24", "sp_v3_3mo_date": "2022-07-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-02-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance concern. Patient asked if there are other locations for study visits in addition to Wayne State and UM. Compensation is not an issue.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Patient would like to withdraw due to an insufficient travel compensation in relation to the rise in gas prices", "ewdateterm": "2022-03-07", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20080", "obtain_date": "2022-03-04", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-11", "sp_v1_preop_date": "2022-03-08", "sp_v2_6wk_date": "2022-04-22", "sp_v3_3mo_date": "2022-06-11", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "80010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "Left voicemail for patient to call back.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has a lot going on this week. Currently in hospital at the time of this call. Won't be able to make baseline visit before surgery.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "35", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient is a school teacher and may not be able to attend in person visits due to work schedule. Wants ICF emailed to her and wants to think about joining.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested in research.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "51", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left voicemail. Will call back next week if patient doesn't call us back.\r\n4/5/22 16:06 NA, left voicemail\r\n4/6/22 15:30: Declined enrollment ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "3/14: Left voicemail", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient declined because they get lost in Detroit a lot and would need daughter to take off of work to help her navigate to Wayne State. Patient lives too far from UofM.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Does not want to participate in the MRI.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Left first voicemail on 3/17.\r\nLeft a second voicemail on 3/31.\r\nPatient called back on 4/1 to hear more about the study. Patient declined; won't be able to make anymore appointments before surgery.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is not eligible.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "2", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is interested, but she works full time and does not drive. She relies on husband for driving.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80023": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-18", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20083", "obtain_date": "2022-03-21", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-01", "sp_v1_preop_date": "2022-03-28", "sp_v2_6wk_date": "2022-05-13", "sp_v3_3mo_date": "2022-07-01", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80024": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "No answer\r\nPatient was offered two thoracic surgery studies. Interested in the first one. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-22", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "No answer.\r\n2nd attempt was made on 3/23/22 at 3:22 p.m. \r\nNo returned call from patient.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80026": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-03-30 11:31:07", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "No corrective action. The patient was reminded to do the surveys, but did not so the patient was seen in pre-op before surgery to complete the surveys.", "erep_protdev_desc": "Patient completed their baseline surveys on the morning of their day of surgery. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}, "2": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-28 14:59:58", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None needed", "erep_protdev_desc": "3 month visit was performed 14 days past visit window due to inability to come in sooner.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "4"}}, "age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-23", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20089", "obtain_date": "2022-03-25", "participation_interest": "2", "ptinterest_comment": "3/24: No answer. Pt called back and left a voicemail at 12:06 p.m. Spoke to pt at 12:47 p.m. \r\nCalled at 2:22 p.m.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-03-30", "sp_v1_preop_date": "2022-03-28", "sp_v2_6wk_date": "2022-05-11", "sp_v3_3mo_date": "2022-06-30", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80027": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-04-21 14:09:28", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "none needed", "erep_protdev_desc": "Baseline surveys were completed the day of surgery.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "2"}}, "age": "74", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-30", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20091", "obtain_date": "2022-03-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "74", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-04-21", "sp_v1_preop_date": "2022-04-13", "sp_v2_6wk_date": "2022-06-02", "sp_v3_3mo_date": "2022-07-21", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80028": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too close to surgery.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80029": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Distance-related issue or concern", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80030": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't want to come into the clinic more than she already has to; tired.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80031": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has a lot of health problems. Wanted to join, but lives far from Wayne State and U of M. Also, the baseline appointment had to take place before surgery.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80032": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/12: Left message with woman on phone for him to call me back.\r\n4/13: Declined. Too busy.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80033": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has had so many doctor's appointments in the last 9 months and doesn't want to participate.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80034": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not eligible. ", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80035": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Has a lot going on and lives far from U of M and Wayne State.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80036": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-15", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't do well with MRI's; claustrophobic. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80037": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Doesn't have time to join the study.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80038": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "AJ 4/18: Patient just wants to get surgery over with. Not interested.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80039": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Too weak to join; is getting feeding tube put back in tomorrow (4/19/22), and has a doctor's appointment on Wednesday to confirm that he's strong enough to have the eligible surgery on 4/25/22. ", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80040": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined; lives 2 hours away from clinic sites.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "48", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80041": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "20100", "obtain_date": "2022-04-27", "participation_interest": "2", "ptinterest_comment": "4/25: Sent pt study information\r\n4/26: No answer", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-05-17", "sp_v1_preop_date": "2022-05-10", "sp_v2_6wk_date": "2022-06-28", "sp_v3_3mo_date": "2022-08-17", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80042": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-08-16 14:24:47", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "We will try to schedule participants towards the beginning of their follow-up window just in case a reschedule is needed.", "erep_protdev_desc": "Participant's 6-week follow up window is 7/28/22 - 8/11/22. They were scheduled for 8/10, but same day cancelled and rescheduled for 8/15. So their blood draw was 4 days past their window close date.", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-26", "dem_race": "6", "ethnic": "1", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20112", "obtain_date": "2022-05-26", "participation_interest": "1", "ptinterest_comment": "4/26: No answer; possibly hung up on. Will call again tomorrow.\r\n5/5: Left voicemail.\r\n5/12: Consent form sent. Wants to think about it. Says he will call us back by 6/1. If he doesn't call back, we will call him on 6/1.\r\n5/24: Patient called. ICF resent to new email. Will consent on 5/25.\r\n5/26: ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "26", "screening_ethnicity": "2", "screening_gender": "1", "screening_race": "1", "sex": "1", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-23", "sp_v1_preop_date": "2022-06-17", "sp_v2_6wk_date": "2022-08-04", "sp_v3_3mo_date": "2022-09-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80043": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80044": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "AJ 4/28: Wants to think about it; ICF sent via email. Will call back 5/2 for decision.\r\n5/2: Declined; not interested.", "reason_not_interested": "5|0", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80045": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Works so he can't come in to study visits. Not really interested in research.", "reason_not_interested": "3|0", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80046": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "4/28: Has a lot going on today. Wants a call back next week. Will call on 5/3.\r\n5/5: Declined. No specific reason.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80047": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/5: Did not contact. Epic states patient is having a bilateral procedure.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "31", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80048": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-05", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "5/5: Pt has a lot going on. She asks if she can do the visits on weekends. She will think about it. Sent study documents to pts.\r\n5/9: Pt was reminded about this research opportunity and upcoming surgery. Pt stated that she's still thinking about it and will let me know.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80049": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/12: Left voicemail\r\n5/17: Declined. Doesn't want to do blood draw and other tasks. May change his mind.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80050": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined; Works during study visit hours. ", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80051": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Daughter answered; requested call back at 2:10pm. Spoke with patient at 2:15pm. He received the brochure from Popoff's clinic. Wants a call back Monday for final decision.\r\n5/17: Patient declined. He travels from Michigan to Florida. Can't make study appointments.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80052": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined; lives two hours away. Too far of a drive. Patient hard of hearing.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80053": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not interested. Not convenient.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80054": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/19: Left voicemail.\r\n5/19: Patient called back. Wants to enroll. Sending consent form via email for patient to sign. U of M.\r\n5/20: Left voicemail. \r\n5/20: Patient called back. Declined due to MRI.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "56", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80055": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-07-15 14:39:24", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "The Wayne State, Henry Ford, and U of M teams will communicate more frequently about participants. Also, the HF team will make sure to fill out the post-consent form directly after enrollment and Wayne State will check surgery dates when the patient enrolls in MDH. ", "erep_protdev_desc": "Patient's surgery date was entered incorrectly on the MDH app. It was listed as 7/14/22 versus their actual date of 6/14/22. Patient did not receive their acute daily surveys. The post-consent form was also not finished in RedCap, so they patient's name was not flagged to missing any surveys or visits. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "6"}}, "age": "60", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20110", "obtain_date": "2022-05-26", "participation_interest": "2", "ptinterest_comment": "5/19: Left voicemail.\r\n5/23: Left voicemail.\r\n5/26: Interested in joining. ICF sent", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-14", "sp_v1_preop_date": "2022-07-03", "sp_v2_6wk_date": "2022-07-26", "sp_v3_3mo_date": "2022-09-14", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80056": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-19", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/19: Left voicemail.\r\n5/23: Declined. Not interested in research.", "reason_not_interested": "5|0", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80057": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/23: Declined. She lives in Bad Axe, and both study visit locations are too far away.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80058": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/26: Patient says they'll call back in 20 min (around 2pm). If not, another attempt will be made on 5/27\r\n5/26: Patient called back. Declined because he won't have time to make the baseline appointment.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80059": {"age": "64", "consent_process_form_complete": "2", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20116", "obtain_date": "2022-06-01", "participation_interest": "1", "ptinterest_comment": "5/26: Interested. Only available June 6 and 7 for baseline appt. ICF failed to send twice. Will call back.\r\n5/27: Patient called back to try to have ICF sent again. ICF failed to send to the patient's email. He will call back when he gets to another computer with his daughter for assistance. \r\n5/31: Patient called back. ICF sent to new email address\r\n6/1: ICF signed.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-06-09", "sp_v1_preop_date": "2022-06-07", "sp_v2_6wk_date": "2022-07-21", "sp_v3_3mo_date": "2022-09-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "80060": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "5/26: Patient wants to be called back at 4:00. Called back and left a voicemail.\r\n6/2: Declined. Not enough time to complete baseline visit. Daughter has graduation right before surgery. Patient will be busy with that and working.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80061": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/2: Left voicemail. Patient called back around 3:30pm. ICF sent via email. Wants call back on 6/3 at 1:30 to continue with consenting.\r\n6/3: Patient will call back after she reads consent form. Patient called back around 2:05pm. Decided to decline joining.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80062": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/2: Left voicemail\r\n6/9: Declined. Not interested in research.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80063": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/2: Declined.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "0", "screening_gender": "1", "screening_race": "1", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80064": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/9 WLC: Sounds like the pt is interested. She stated that she was half asleep and agreed to receive a follow-up call tomorrow afternoon.\r\n6/10 WLC: The patient stated that she cannot go into an MRI machine.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80065": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/9: Patient was driving. Will call us back to discuss study.\r\n6/14: Declined.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80066": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "6/9: Left voicemail.\r\n6/14: Left voicemail.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80067": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/17: ICF Sent. Will call back 6/20.\r\n6/20: Patient in staff meeting. Will call back later today. Called patient back at 2:45pm. Patient has a lot on their plate and has a lot going on. Declined enrollment.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80068": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/17: ICF sent. Will follow up 6/20.\r\n6/20: Patient didn't read ICF yet. Wants call back 6/21.\r\n6/21: Patient called back and cannot find ICF in email. No availability for Wayne State. Patient declined. No time for baseline appt before surgery.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80069": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "6/23: Declined. Moving out of Michigan soon. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80070": {"age": "62", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20132", "obtain_date": "2022-06-30", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-12", "sp_v1_preop_date": "2022-06-29", "sp_v2_6wk_date": "2022-08-23", "sp_v3_3mo_date": "2022-10-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "80071": {"age": "56", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "5", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20133", "obtain_date": "2022-06-30", "participation_interest": "2", "ptinterest_comment": "Enrolled.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "65", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-12", "sp_v1_preop_date": "2022-07-06", "sp_v2_6wk_date": "2022-08-23", "sp_v3_3mo_date": "2022-10-12", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "80072": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined enrollment for no specific reason.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80073": {"adverse_effects": {"1": {"erep_action_taken": "", "erep_ae_date": "", "erep_ae_desc": "", "erep_ae_relation": "", "erep_ae_serious": "", "erep_ae_severity": "", "erep_ae_yn": "", "erep_local_dtime": "2022-09-15 18:55:48", "erep_onset_date": "", "erep_outcome": "", "erep_prot_dev": "1", "erep_protdev_caplan": "None needed", "erep_protdev_desc": "blood collected 9 days past visit window. ", "erep_protdev_type": "6", "erep_rel_covid19": "0", "erep_resolution_date": "", "erep_visit_inv": "3"}}, "age": "52", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-30", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20134", "obtain_date": "2022-07-05", "participation_interest": "1", "ptinterest_comment": "6/30: Interested. Only available July 16 early morning.\r\n7/1: ICF sent. Will call back 7/5 for final decision.\r\nPatient signed ICF on 7/1 after business hours.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "52", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-07-19", "sp_v1_preop_date": "2022-07-11", "sp_v2_6wk_date": "2022-08-30", "sp_v3_3mo_date": "2022-10-19", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "80074": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/1: Left voicemail. \r\n7/6: Patient called back. Declined enrollment. Has been going through a lot health-wise.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "5", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80075": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/7: Declined. Has to work.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80076": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Doesn't want to travel.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80077": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/7: Wants to think about joining. ICF sent. \r\n7/11: Declined. Joined COP-AF.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80078": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80079": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-03", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Wasn't answering calls and did not complete baseline surveys.", "ewdateterm": "2022-08-08", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "3", "genident": "N/A", "main_record_id": "20147", "obtain_date": "2022-08-03", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "63", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-08", "sp_v1_preop_date": "2022-08-05", "sp_v2_6wk_date": "2022-09-19", "sp_v3_3mo_date": "2022-11-08", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "80080": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/14: LVM.\r\n7/15: Declined. Has a lot going on in her life right now.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80081": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Not interested.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "55", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80082": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Lives far away.", "reason_not_interested": "5|3", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80083": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "7/20: ICF sent. Call back tomorrow.\r\n7/21: Still wants to think about joining. Call back Monday, 7/25.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80084": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Lives in Northern Michigan (5 hour drive to Metro Detroit).", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "80", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80085": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/21: Left voicemail. Patient called back and declined. Lives three hours away. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80086": {"age": "67", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-21", "dem_race": "3", "ethnic": "4", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20145", "obtain_date": "2022-07-29", "participation_interest": "2", "ptinterest_comment": "7/21: Left voicemail.\r\n7/27: Didn't receive eICF. Plan on meeting with the patient at his appointment on Friday. \r\n7/29: Consented pt in person. The RKStudio consent was sent to the caregiver's email. Pt will set it up with the caregiver when he gets home. A follow-up call was scheduled to provide assistance on 8/2 (Tue) morning.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "1", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-08-09", "sp_v1_preop_date": "2022-08-05", "sp_v2_6wk_date": "2022-09-20", "sp_v3_3mo_date": "2022-11-09", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": "N/A"}, "80087": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-20", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80088": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80089": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/28: Left voicemail. Patient called back and declined. She has a lot to do before surgery. ", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80090": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Lives too far away to attend clinic visits.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "46", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80091": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Has a lot of doctors visits.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "39", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80092": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/28: Declined. Lives too far away.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "62", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80093": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "7/28: Left voicemail.\r\n8/9: Declined.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80094": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-07-28", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "7/28: Left voicemail.\r\n8/10: Left voicemail. Patient called back. Wants call on 8/11 at 9am.\r\n8/11: Left voicemail.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80095": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Has too much going on right now.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80096": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/10: Left voicemail.\r\n8/11: Left voicemail.\r\n8/12: Left voicemail. Called patient 3 times.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80097": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Has to rely on daughter for transportation and doesn't want to do anymore testing/blood draws.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80098": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Is having liver resection, too. Says she'll be \"out of it\" and does not want to take surveys. ", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "N/A", "screening_gender": "2", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80099": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. No specific reason.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "83", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80100": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "Participant could not schedule study appointments due to work hours.", "ewdateterm": "2022-08-17", "ewdisreasons": "1", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20148", "obtain_date": "2022-08-16", "participation_interest": "1", "ptinterest_comment": "8/11: Wants to think about joining. ICF sent to email. Will call back Monday, Aug 15.\r\n8/15: Left voicemail. Patient called back. Wants UofM availability before signing consent.\r\n8/16: Will sign ICF on his own. Signed ICF.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-02", "sp_v1_preop_date": "2022-08-10", "sp_v2_6wk_date": "2022-10-14", "sp_v3_3mo_date": "2022-12-02", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "80101": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-11", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80102": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80103": {"age": "28", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-12", "dem_race": "3", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20151", "obtain_date": "2022-08-18", "participation_interest": "1", "ptinterest_comment": "8/12: Interested. ICF sent. Will call back 8/16.\r\n8/17: Will join and sign ICF. Wayne State.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "28", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "2", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-07", "sp_v1_preop_date": "2022-09-09", "sp_v2_6wk_date": "2022-11-17", "sp_v3_3mo_date": "2023-01-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "80104": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "8/18: Father answered the phone. Says patient has a lot going on right now and was previously in a sarcoma research study. He will talk to the patient when he gets off work tonight. Patient will call back if interested.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "23", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80105": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-18", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. No specific reason.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80106": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/25: Patient wants call back in afternoon.\r\n8/26: Declined. Doesn't want blood drawn.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80107": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-25", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Mom lives with her and would have to take her to appointments. Study visits also too far from patient home.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80108": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Decided to join a different research study.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80109": {"age": "70", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "2", "main_record_id": "20152", "obtain_date": "2022-08-26", "participation_interest": "2", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "70", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "2", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-13", "sp_v1_preop_date": "2022-09-08", "sp_v2_6wk_date": "2022-10-25", "sp_v3_3mo_date": "2022-12-13", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "80110": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "8/26: Declined. Can barely make it to exisitng appointments and is overwhelmed.", "reason_not_interested": "4|3", "redcap_data_access_group": "university_of_mich", "screening_age": "39", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80111": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-26", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80112": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-31", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "78", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80113": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/1: Patient says she'll call back. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80114": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/1: Declined. Does not want to complete MRI.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80115": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-01", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/1: Left voicemail.\r\n9/8: Might be interested. ICF sent. \r\n9/14: Unable to leave voicemail. Mailbox full.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "39", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "0", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80116": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "77", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80117": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/8: Call back at 2:30pm", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "71", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80118": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/16: Call back in afternoon. Called patient back. Declined. Patient will be in Florida for 3 months following surgery.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "N/A", "screening_gender": "1", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80119": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-21", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80120": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/23: Might be interested. ICF sent. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80121": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/23: Left voicemail.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "44", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80122": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/23: Declined. Wants to work every day up until surgery date. Can't make it to baseline.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "36", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "80123": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-23", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "20167", "obtain_date": "2022-09-23", "participation_interest": "2", "ptinterest_comment": "9/23: Enrolled.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-10-07", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "2022-11-17", "sp_v3_3mo_date": "2023-01-06", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "90000": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90001": {"age": "68", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-24", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20064", "obtain_date": "2022-01-26", "participation_interest": "2", "ptinterest_comment": "Consented. The study team was notified by Macomb staff that surgery has been scheduled for 2/18/2022. Reached out to patient and went over MRI Screenin Questions. Need to obtain documentations for prior surgeries (titianium clips and screws) to clear the patient for MRI.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-02-21", "sp_v1_preop_date": "2022-02-15", "sp_v2_6wk_date": "2022-04-04", "sp_v3_3mo_date": "2022-05-21", "start_12mo": "N/A", "start_6mo": 1, "start_v1_preop": 1, "start_v2_6wk": 1, "start_v3_3mo": 1}, "90002": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-01-27", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "Patient has a difficult time with a 15-minute heart stress test recently. Patient is not willing to do MRI since it will last longer than that.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "82", "screening_ethnicity": "0", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90003": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-03-04", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "No answer", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "36", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90004": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "N/A", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "N/A", "screening_ethnicity": "N/A", "screening_gender": "N/A", "screening_race": "N/A", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90005": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "LVM on 4/6; Call back tomorrow\r\nLVM on 4/7; surgery is monday, 4/11", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "73", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90006": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-06", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is wheelchair-bound and declined participation.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90007": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Not eligible.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90008": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-04-13", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "4/13: Left voicemail. Probably not a good candidate, as surgery is set for 4/15 and patient has a clinic appointment tomorrow, 4/14.\r\n4/13: Patient called back 20 min later and left a voicemail to call her home phone number. AJ left another voicemail on patient's home phone.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90009": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-10", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Patient is ineligible due to having thoracic surgery less than 3 months ago.\r\nAlso declined in April per Winnie (internal screening log)", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "81", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90010": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "5/17: Left voicemail.\r\n5/19: Left voicemail.\r\n5/23: Left voicemail.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "60", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90011": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Ineligible due to having had thoracic surgery less than 3 months ago.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "75", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90012": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "68", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90013": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-05-17", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. He's not interested in research.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "28", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90014": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Did not contact patient. Ineligible. Having another major procedure 10 days after A2CPS eligible surgery.", "reason_not_interested": "5", "redcap_data_access_group": "university_of_mich", "screening_age": "58", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90015": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-07", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Lives too far from clinic sites.", "reason_not_interested": "3", "redcap_data_access_group": "university_of_mich", "screening_age": "69", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90016": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-09", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "The patient's surgery was moved up to 6/13 and could not come in for the baseline appointment.", "ewdateterm": "2022-06-13", "ewdisreasons": "6", "ewpireason": "N/A", "ewprimaryreason": "1", "genident": "N/A", "main_record_id": "20122", "obtain_date": "2022-06-13", "participation_interest": "1", "ptinterest_comment": "6/9: ICF sent. Waiting on actual surgery date before baseline visit can be scheduled. Will call back on 6/13 at 9:30am.\r\n6/10: Patient called back to let study team know that her surgery was moved up to 6/13. This means that there's no time to do the baseline appt, as today is Friday, 6/10 and surgery is Monday, 6/13. No clinic appts available.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "90017": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-06-14", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined.", "reason_not_interested": "0", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "3", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90018": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "20168", "obtain_date": "2022-09-23", "participation_interest": "1", "ptinterest_comment": "8/30: Left message.\r\n9/2: Patient interested. ICF sent. Will call back Wednesday morning for final decision. Use work number to call back.\r\n9/14: ICF resent.\r\n9/15: Still has to look over ICF. Wants a call back Monday in afternoon.\r\n9/21: Needs to know WSU availability before signing consent form. ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "61", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "2", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "N/A", "sp_v1_preop_date": "2022-11-23", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": "N/A", "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "90019": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Surgery is too soon to schedule a baseline visit.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "64", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90020": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "Declined. Surgery is Friday and patient cannot make the baseline appointment in time.", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "72", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90021": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-08-30", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "N/A", "reason_not_interested": "4", "redcap_data_access_group": "university_of_mich", "screening_age": "59", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90022": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-02", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "1", "ptinterest_comment": "9/2: Left voicemail.\r\n9/6: Left voicemail.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "66", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "4", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90023": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "0", "ptinterest_comment": "9/8: Declined. Having back pain/issues. Patient also anticipates getting back surgery in less than 6 months following thoracic surgery.", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "67", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}, "90024": {"age": "57", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-08", "dem_race": "5", "ethnic": "2", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "1", "main_record_id": "20161", "obtain_date": "2022-09-08", "participation_interest": "2", "ptinterest_comment": "9/8: ", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "57", "screening_ethnicity": "1", "screening_gender": "1", "screening_race": "2", "sex": "1", "sp_data_site": "1", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "0", "sp_exclothmajorsurg": "0", "sp_exclprevbilthorpro": "0", "sp_inclage1884": "1", "sp_inclcomply": "1", "sp_inclsurg": "1", "sp_mricompatscr": "4", "sp_surg_date": "2022-09-23", "sp_v1_preop_date": "2022-09-12", "sp_v2_6wk_date": "2022-11-04", "sp_v3_3mo_date": "2022-12-23", "start_12mo": "N/A", "start_6mo": "N/A", "start_v1_preop": 1, "start_v2_6wk": "N/A", "start_v3_3mo": "N/A"}, "90025": {"age": "N/A", "consent_process_form_complete": "N/A", "date_and_time": "N/A", "date_of_contact": "2022-09-16", "dem_race": "N/A", "ethnic": "N/A", "ewcomments": "N/A", "ewdateterm": "N/A", "ewdisreasons": "N/A", "ewpireason": "N/A", "ewprimaryreason": "N/A", "genident": "N/A", "main_record_id": "N/A", "obtain_date": "N/A", "participation_interest": "N/A", "ptinterest_comment": "N/A", "reason_not_interested": "N/A", "redcap_data_access_group": "university_of_mich", "screening_age": "76", "screening_ethnicity": "1", "screening_gender": "2", "screening_race": "2", "sex": "N/A", "sp_data_site": "N/A", "sp_exclarthkneerep": "N/A", "sp_exclbilkneerep": "N/A", "sp_exclinfdxjoint": "N/A", "sp_exclnoreadspkenglish": "N/A", "sp_exclothmajorsurg": "N/A", "sp_exclprevbilthorpro": "N/A", "sp_inclage1884": "N/A", "sp_inclcomply": "N/A", "sp_inclsurg": "N/A", "sp_mricompatscr": "N/A", "sp_surg_date": "N/A", "sp_v1_preop_date": "N/A", "sp_v2_6wk_date": "N/A", "sp_v3_3mo_date": "N/A", "start_12mo": 0, "start_6mo": 0, "start_v1_preop": 0, "start_v2_6wk": 0, "start_v3_3mo": 0}}} \ No newline at end of file diff --git a/datastore/src/data/subjects/subjects-1-latest.json b/datastore/src/data/subjects/subjects-1-latest.json new file mode 100644 index 0000000..04cf0d7 --- /dev/null +++ b/datastore/src/data/subjects/subjects-1-latest.json @@ -0,0 +1 @@ +{"30001":{"redcap_data_access_group":"rush_university_me","main_record_id":"10014","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-13","screening_age":"45","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient contacted us and was consented in person. ","obtain_date":"2021-04-13","date_and_time":"2021-04-13 13:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-06","sp_v1_preop_date":"2021-05-04","sp_v2_6wk_date":"2021-06-17","sp_v3_3mo_date":"2021-08-06","age":"45","sex":"N/A","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-04 10:42:22","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participants cuff pressure is lower than the standard pressure. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-12 08:31:58","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Baseline visit occurred 2 days prior to surgery date (outside protocol timeline)","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30002":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"73","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Doesn't want to come back downtown if he didn't have to.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30003":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"54","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Does not want to drive to city more than needed","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30004":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"82","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30005":{"redcap_data_access_group":"rush_university_me","main_record_id":"10056","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-21","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is on their way to Midwest Ortho for their pre op visit. I will meet them to go over and sign consent. \r\nUnable to get consent in person. Will reach out to them on 06/21/2021.","obtain_date":"2021-06-21","date_and_time":"2021-06-21 13:00","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-16","sp_v1_preop_date":"2021-07-06","sp_v2_6wk_date":"2021-08-27","sp_v3_3mo_date":"2021-10-16","age":"72","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30006":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"73","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"MRI and she does not want to experience any more pain than what she is already in.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30008":{"redcap_data_access_group":"rush_university_me","main_record_id":"10001","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-03-19","screening_age":"68","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Will call patient on Monday to consent\r\n","obtain_date":"2021-03-23","date_and_time":"2021-03-23 11:36","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-30","sp_v1_preop_date":"2021-03-26","sp_v2_6wk_date":"2021-06-11","sp_v3_3mo_date":"2021-07-30","age":"68","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-27 15:26:13","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participant did not complete MRI.","erep_protdev_caplan":"MRI not done. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-27 15:27:13","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to collect blood at baseline. ","erep_protdev_caplan":"Will collect blood Day of surgery.","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-04-27 16:06:08","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Participant did not come in at baseline visit window. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-05-20 10:26:23","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Participant's blood was not collected within time frame window.","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30009":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"68","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"MRI claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30010":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-27","screening_age":"78","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Left message for patient","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30011":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"65","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"2nd knee- called 8/25 for second knee and emailed consent. Pt declined to participate 8/30 for no specific reason","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30012":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"66","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance to rush and time it would take to get there","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30013":{"redcap_data_access_group":"rush_university_me","main_record_id":"10007","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-03-19","screening_age":"63","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-03-26","date_and_time":"2021-03-26 08:11","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-15","sp_v1_preop_date":"2021-04-05","sp_v2_6wk_date":"2021-05-27","sp_v3_3mo_date":"2021-07-15","age":"63","sex":"N/A","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-15 08:59:43","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"re-consented to study the day of surgery, unable to complete functional testing.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-15 09:01:04","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"unable to complete QST, re-consented to study day of surgery","erep_protdev_caplan":"","erep_rel_covid19":""},"3":{"erep_local_dtime":"2021-04-15 09:02:55","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"imaging not complete, re-consented to study day of surgery","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-04-15 09:05:43","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"collected blood day of surgery","erep_protdev_caplan":"","erep_rel_covid19":"0"},"5":{"erep_local_dtime":"2021-05-04 10:49:35","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt was here for their 3 week follow up visit so we obtained blood at this time for her so she did not have to make additional trips.","erep_protdev_caplan":"","erep_rel_covid19":"1"},"6":{"erep_local_dtime":"2021-05-04 10:51:57","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to obtain lavender top due to patients clotting factor. We did the the Paxgene.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"7":{"erep_local_dtime":"2021-09-08 08:48:16","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient came in for 3 month visit outside of protocol range. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30017":{"redcap_data_access_group":"rush_university_me","main_record_id":"10004","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-03-24","screening_age":"64","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"I consented her on 3/24/2021. ","obtain_date":"2021-03-24","date_and_time":"2021-03-24 14:36","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-13","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2021-11-23","sp_v3_3mo_date":"2022-01-12","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-19 11:25:42","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"She could not use the MRI scan because she had biopsy markers.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-01-28 10:31:36","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt day outside of protocol window for 3 mos. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2022-06-24 12:21:39","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Pt did not complete survey set after multiple calls. ","erep_protdev_caplan":"N/A, participant continues participation","erep_rel_covid19":"0"}}},"30018":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-19","screening_age":"68","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"\"too extensive\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30014":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"60","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Extremely claustrophobic in MRI, states that the daily surveys about her pain will cause her to dwell more on the pain","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30015":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-25","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She was initially interested but when I contacted her again she said no because her husband is handicapped and she needs to take care of him, she believes that this study will be too time consuming. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30016":{"redcap_data_access_group":"rush_university_me","main_record_id":"10009","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-04-01","screening_age":"58","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"She is coming in for her baseline visit on 4/05/2021 at 11:30 AM.","obtain_date":"2021-04-01","date_and_time":"2021-04-02 08:12","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2021-05-21","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-06 16:05:06","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"She said that the MRI was uncomfortable and too loud. She could not stay in it for too long and therefore she was unable to complete the scan. She was only able to complete the T1 scan. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-06 16:22:15","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"She could not do the 10 meter walk test. She said that her knee locked up and that she could not walk. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-04-06 16:33:26","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"She could not complete the 5 times sit-to-stand test because she said that her knee will lock up if she does. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30019":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-14","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she works for the Chicago Public Schools District (CPS) and she is very busy with work, and will not have time to be a part of the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30020":{"redcap_data_access_group":"rush_university_me","main_record_id":"10002","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-03-18","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Recontact 3/22- determine if would like to econsent or meet in person 3/23. ","obtain_date":"2021-03-23","date_and_time":"2021-03-23 12:07","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-03-24","ewprimaryreason":"1","ewdisreasons":"1|5","ewpireason":"N/A","ewcomments":"After additional consideration participant was overwhelmed by the time required by the study visits as well as the distance from Rush. ","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-02 07:40:27","erep_ae_date":"","erep_visit_inv":"","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":""}}},"30021":{"redcap_data_access_group":"rush_university_me","main_record_id":"10006","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-03-18","screening_age":"55","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Wants to double check with wife about study. Plan to call back Monday 3/22. Also, verify demographic info during call back. Met in person to consent. ","obtain_date":"2021-03-25","date_and_time":"2021-03-25 15:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-06","sp_v1_preop_date":"2021-04-20","sp_v2_6wk_date":"2021-06-17","sp_v3_3mo_date":"2021-08-06","age":"55","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-20 16:05:02","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt unable to tolerate MRI. Stated felt like a \"sausage\" and was very uncomfortable. ","erep_protdev_caplan":"Pt will not complete MRI visit. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-27 12:43:16","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"blood sample not placed in freezer within 30 minutes of collection","erep_protdev_caplan":"get blood back to research lab faster after draw is completed","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-05-27 12:49:13","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"6 week blood draw outside of protocol window","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2022-06-17 08:18:48","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt surveys completed outside of timeline by a few days.","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30022":{"redcap_data_access_group":"rush_university_me","main_record_id":"10003","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-03-23","screening_age":"74","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-03-23","date_and_time":"2021-03-23 13:16","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-21","sp_v1_preop_date":"2021-03-29","sp_v2_6wk_date":"2021-06-02","sp_v3_3mo_date":"2021-07-21","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-03-30 07:45:17","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"Participant will continue participation. Participant spoke with clinical nurse in order to establish safety of using cuff. Staff decided to utilize cuff at lower than standard pressure according to protocol.","erep_outcome":"Participant tolerated MRI well. ","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participant rated pain moderate at cuff pressure 80mmHg. Staff decided not to do standard pressure of 120mmHg and therefore did not complete standard scan. ","erep_protdev_caplan":"Skip standard 120 mmHg cuff pressure scan. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-27 12:49:41","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"6 wk blood draw occurred outside of protocol window","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30023":{"redcap_data_access_group":"rush_university_me","main_record_id":"10005","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-03-23","screening_age":"58","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Call back for possible consent. Email consent to participant. Called back for consent 3/25.","obtain_date":"2021-03-25","date_and_time":"2021-03-25 13:56","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-16","sp_v1_preop_date":"2021-04-06","sp_v2_6wk_date":"2021-05-28","sp_v3_3mo_date":"2021-07-16","age":"58","sex":"1","genident":"1","ethnic":"3","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-06 15:43:16","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participant was unable to complete MRI scan due to symptoms of PTSD. Participant stated he was brought back to a time when he was in the military in a short space getting shot at. ","erep_protdev_caplan":"Participant should not complete 3 mos. MRI. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-15 15:10:24","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Participant unable to come in 2 weeks prior to procedure. Participant came in 10 days prior to procedure opposed to 14 days. ","erep_protdev_caplan":"Completed baseline study visit as planned. ","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-05-11 09:15:13","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Took blood prior to 6 wk visit timeline in protocol. Around 3 weeks. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-07-19 08:03:15","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt unable to tolerate MRI","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30024":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-29","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she has a lot of stuff going on like work and she is not going to have time to participate in a research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30025":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-24","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"\"would be a huge time drain for me\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30026":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"60","screening_gender":"N/A","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"2","ptinterest_comment":"Runs a business and the compensation offered does not make sense for him to miss work for the research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30027":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-25","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"When I spoked to her over the phone she just interrupted me and said that she does not have the time and that she is not interested and that we should not call her back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30028":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-02","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She has an issue with being in the MRI scanner. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30029":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-26","screening_age":"63","screening_gender":"N/A","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30030":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-26","screening_age":"72","screening_gender":"N/A","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Stated the time in rush hour, being poked and prodded does not sound appealing. Offered her transportation and declined. Very pleasant to speak with. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30031":{"redcap_data_access_group":"rush_university_me","main_record_id":"10008","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-03-26","screening_age":"73","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-03-29","date_and_time":"2021-03-29 11:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-12","sp_v1_preop_date":"2021-04-02","sp_v2_6wk_date":"2021-05-24","sp_v3_3mo_date":"2021-07-12","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-06 15:59:47","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Subject was unable to perform 120 mmHg cuff scan because her moderate pain threshold capped out at 90 mmHg","erep_protdev_caplan":"Patient could only tolerate 90 mmHg cuff. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-27 12:50:22","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"6 wk blood draw occurred outside of protocol window","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30032":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-03-29","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30033":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM 4/1 with call back info. Will call back 4/2 if do not hear from him 4/1. Spoke to woman on home phone and left call back information. Informed would also call again on Monday 4/5. Spoke with pt 4/5. Does not want to participate due to location and fear of being shot at. Would participate if study visits were at Oak Brook location. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30034":{"redcap_data_access_group":"rush_university_me","main_record_id":"10012","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-01","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke with pt. Is interested in learning more. Emailed consent form. Verified DOB: (05/05/67). Must go over eligibility screening during prior to consent. 4/5-did not have a chance to look over consent form. Asked to give call back and see if he had a chance by then, had \"to run\" because he was at work. Will call back 4/6/2021. On 4/7 Pt stated he is interested in study. Could not sign consent/ speak about study more in depth due to work which he states is \"hectic\". RA will call on his day off 4/9 at 1:30pm. Also gave 4/16 as a possible date for research visit. ","obtain_date":"2021-04-09","date_and_time":"2021-04-09 15:14","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-23","sp_v1_preop_date":"2021-04-16","sp_v2_6wk_date":"2021-06-04","sp_v3_3mo_date":"2021-07-23","age":"53","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-23 07:20:43","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Baseline visit took place 1 day prior to surgery due to difficulties scheduling and participants busy work schedule. ","erep_protdev_caplan":"Participant completed what they were able for this visit. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-23 07:21:55","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participant unable to have MRI due to scheduling visit day of coming in. ","erep_protdev_caplan":"Participant did not complete MRI. ","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-07-23 13:41:56","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt did not have MRI","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30035":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30037":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Does not do well in MRIs","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30038":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she has a lot going on and she does not have the time for research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30040":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"LVM 4/1. Pt called back. Pt sounded very hesitant on the phone. Requested a call back 4/6 or 4/7. Offered to email consent, subject sounded hesitant. Will call back 4/7 to go over more details. Called pt back on 4/7 and lvm. Informed to call back if interested in learning more about study or if would like more information sent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30041":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-05","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She said I will pass.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30036":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He said that Rush is very far away from his house. He lives in Indiana. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30039":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-07","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"He said that he is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30042":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Her mother recently passed away. She notes there are many arrangements she needs to make prior and following the funeral and she is trying to fit everything in before her knee surgery. She states she would want to participate otherwise. Gave A2CPS.org if she wants to learn more and informed she has my phone number should she change her mind. Very pleasant to speak with. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30043":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-02","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"I left him a voicemail. \r\nPt does not speak english. Removed from call list.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30044":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"left vm x3","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30045":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30046":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke with pt. He was not interested in participating. Stated he was asked about research with his shoulder replacements, but prefers not to be involved. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30047":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She lives very far away and does not want to travel back and forth, it will take too much time out of her day. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30048":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"He does not want to be in a closed MRI scan. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30049":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt plans on second TKA within 3 months of first","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30051":{"redcap_data_access_group":"rush_university_me","main_record_id":"10011","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-01","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt had questions regarding HIPPA and who his information would be shared with. Emailed consent form so he has more details about his privacy and the study and informed to email back if not interested, otherwise will call to determine interest prior to teaching visit (4/7). May meet with pt at teaching visit to consent if still interested. ","obtain_date":"2021-04-06","date_and_time":"2021-04-06 13:06","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-19","sp_v1_preop_date":"2021-04-07","sp_v2_6wk_date":"2021-05-31","sp_v3_3mo_date":"2021-07-19","age":"54","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-07 15:56:55","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"blood draw unsuccessful after 2 sticks","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-11 09:03:06","erep_ae_date":"2021-05-06","erep_visit_inv":"6","erep_ae_yn":"1","erep_onset_date":"2021-05-06 12:00","erep_resolution_date":"","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Subject fell May 6 that resulted in a full-thickness tear of the quadriceps tendon confirmed by MRI on 5/10/2021. To undergo procedure for repair on 5/14/2021.","erep_action_taken":"Pt will continue in study as approved by patient physician and patient.","erep_outcome":"Patient had surgical repair to quadricep tendon on 5/14/2021 and is healing well patient stated he is feeling much better and will continue on the plan as his leg heals.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-05-11 09:07:30","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Blood draw outside of window","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-07-30 10:04:36","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"subject unable to complete 5 times sit-to-stand and 10-meter walking test due to injury","erep_protdev_caplan":"","erep_rel_covid19":"0"},"5":{"erep_local_dtime":"2021-07-30 10:06:10","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Unable to complete temporal summation and PPT due to injury ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30052":{"redcap_data_access_group":"rush_university_me","main_record_id":"10010","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-02","screening_age":"64","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-04-02","date_and_time":"2021-04-02 10:41","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-23","sp_v1_preop_date":"2021-04-15","sp_v2_6wk_date":"2021-06-04","sp_v3_3mo_date":"2021-07-23","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-17 15:06:04","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Participant's baseline visit was not within the protocol window. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30053":{"redcap_data_access_group":"rush_university_me","main_record_id":"10015","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-02","screening_age":"65","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke with daughter on 4/2. She gave alternate number of 312 593 8938 to reach participant. February 19th was first replacement knee and second is scheduled on May 19th. Daughter was also on the phone. Pt answered questions, but daughter also assisted with dates of procedures. Informed that questionnaires are all in English and asked if this were an issue. Spoke with pt 4/6 to answer her questions. Informed her there is no direct benefit for her. Her images/blood/data would not be provided to her for any treatment purpose and the doctors reviewing the information are not the same as physicians she would see for treatment. Pt states she is still interested and will finish reading the consent. RA will call 4/8 around 2-3 to consent if interested. ","obtain_date":"2021-04-13","date_and_time":"2021-04-13 14:08","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-19","sp_v1_preop_date":"2021-04-21","sp_v2_6wk_date":"2021-06-30","sp_v3_3mo_date":"2021-08-19","age":"65","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-22 07:35:30","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participant unable to complete standard cuff scan due to moderate pain reported at 115mmHg.","erep_protdev_caplan":"Standard cuff pressure scan not completed. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-22 07:45:12","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Neuropen remote site testing not saved.","erep_protdev_caplan":"In the future review what was saved after saving. ","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-06-10 14:44:25","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Blood draw outside of visit timeline~ 3wks","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-07-12 14:55:23","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Visit outside of 3 mos timeline due to pt moving out of country. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30054":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-07","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Pt stated did not want to participate due to the MRI, time to complete research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30055":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-07","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states she does not want to come in downtown. She would consider it if the study took place at Rush Oakbrook.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30056":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-07","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unable to commit to in-person study visits at Midwest Ortho","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30057":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-09","screening_age":"72","screening_gender":"N/A","screening_race":"0","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that it is too much for her, just underwent 12 rounds of radiation. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30058":{"redcap_data_access_group":"rush_university_me","main_record_id":"10013","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-08","screening_age":"71","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-04-12","date_and_time":"2021-04-12 10:22","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-13","sp_v1_preop_date":"2021-04-20","sp_v2_6wk_date":"2021-06-24","sp_v3_3mo_date":"2021-08-13","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-20 12:50:22","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Subject could not tolerate neuropen at medial knee site. Only the first poke was scored.","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-20 12:52:58","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient could not tolerate cuff pressure greater than 60 mmHg. The standard pressure or 120 mmHg MRI scan was not performed.","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30059":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-09","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that there is too much required of her but was grateful that she was considered. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30060":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-09","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient asked me to send him a copy of the consent and states he will call me when he has time and if he is interested. He asked that I not contact him. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30061":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-01","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she will call me back if she is interested. She asked me not to call her back. That was 9 days ago. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30065":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-14","screening_age":"42","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 4/15. RA emailed consent form and will follow up on Monday 4/19. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30066":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-19","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"He did not pick up so I left him a voicemail. I already contacted him three times. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30067":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-15","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt daughter answered. Stated she handled father's medical needs. She stated her father speaks broken English and may need assistance reading English. Gave call back number for father to call and determine if able to participate or not. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30069":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-14","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM 4/14/2021. LVM 4/15/2021. Spoke to pt on 4/16. She asked if visits were downtown, RA informed they were. She declined participation. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30070":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-14","screening_age":"39","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30071":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-14","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Wife declined participation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30072":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient requested a copy of consent to look over. Requested that we contact her on 04/19/2021 to see if she is interested in participating. 4/19 call pt states she is unable to do the MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30073":{"redcap_data_access_group":"rush_university_me","main_record_id":"10016","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-16","screening_age":"59","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-04-16","date_and_time":"2021-04-16 11:24","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-04-23","sp_v1_preop_date":"2021-04-19","sp_v2_6wk_date":"2021-06-04","sp_v3_3mo_date":"2021-07-23","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-19 09:22:37","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to get blood. ","erep_protdev_caplan":"Will get blood day of surgery. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-19 09:25:35","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Date of visit less than 2 weeks from surgery.","erep_protdev_caplan":"Continue with planned visit.","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-04-19 09:27:48","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"Unable to complete sit to stand.","erep_protdev_caplan":"Participant completed one rep, and stated she was unable to continue. ","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-04-19 11:02:59","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participant unable to tolerate MRI.","erep_protdev_caplan":"Participant did not complete MRI. ","erep_rel_covid19":"0"},"5":{"erep_local_dtime":"2021-05-24 15:49:18","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Visit timeline more than a week away from protocol 6 wk visit. Surveys completed outside of window by 3 days. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"6":{"erep_local_dtime":"2021-05-24 15:51:17","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to obtain blood after >2 sticks. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"7":{"erep_local_dtime":"2021-07-21 13:22:46","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt unable to tolerate MRI","erep_protdev_caplan":"Completed other testing","erep_rel_covid19":"0"}}},"30074":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"She is not sure if she is going to have her surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30064":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-22","screening_age":"46","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said that she previously got hurt in a research study so she is afraid that she will get hurt again. I explained the risks to her but she was still very worried and said no. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30075":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"45","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Wanted to learn more about the study. Emailed consent form. 4/19 she stated difficult to find time in schedule. 4/20 stated not interested in study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30076":{"redcap_data_access_group":"rush_university_me","main_record_id":"10018","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-16","screening_age":"69","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke w/ pt, emailed consent form for more info. Confirm eligibility info during callback 4/19. Is interested in participating. ","obtain_date":"2021-04-22","date_and_time":"2021-04-22 12:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-27","sp_v1_preop_date":"2021-05-04","sp_v2_6wk_date":"2021-07-08","sp_v3_3mo_date":"2021-08-27","age":"69","sex":"1","genident":"1","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-04 14:01:02","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"RA informed pt he was cleared for MRI on 4/30. Day of visit pt states VA told him he was unable to have MRI due to steel in leg and he will not have MRI. ","erep_protdev_caplan":"MRI not completed. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-21 14:22:09","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Blood collected at 3 weeks 4 days. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30077":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-20","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She did not pick up after trying to call several times.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30078":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Spoke with daughter 4/16 stated there would be a language barrier and she would likely be uncomfortable. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30079":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-28","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"I send him an email on 4/28/2021. I have called him multiple times but he has not returned any calls. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30080":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She can't participate because she is working and doesn't have time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30081":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt states she had a bad experience with her first knee replaced and is unsure if she will have her second with the same physician. She states she is interested in the study and should she choose to delay her procedure she would be interested. RA mailed consent form as requested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30082":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"She did not pick up, I left her a voicemail. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30083":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Spoke with pt. Not interested in learning more about research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30084":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Did not wish to learn more about any study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30085":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that he lives too far and also does not have the time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30086":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"LVM 4/16/2021. LVM 4/19/2021. Had a kidney transplant and is involved in another study at Northwestern.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30087":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is Spanish speaking and states that she does not speak English. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30088":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"I send her the consent form but I was never able to get a hold of her after that, I called her a couple of times and left her a voicemail. Her surgery is tomorrow. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30089":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM 4/16/2021. Spoke on 4/19. Pt cares for grandson and does not have the time to come in for study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30090":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She said that she is not interested in the study because she does not feel comfortable with some of the statements that were in the consent form. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30091":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient states she is just not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30092":{"redcap_data_access_group":"rush_university_me","main_record_id":"10021","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-04-16","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM 4/16/2021. Emailed consent 4/19. ","obtain_date":"2021-04-26","date_and_time":"2021-04-26 11:49","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-11-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"Pt cancelled sx and did not reschedule. ","sp_data_site":"N/A"},"30093":{"redcap_data_access_group":"rush_university_me","main_record_id":"10019","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-04-23","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-04-23","date_and_time":"2021-04-23 10:41","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-05-26","ewprimaryreason":"1","ewdisreasons":"5|1","ewpireason":"N/A","ewcomments":"Patient states that her circumstances have changed and she is feeling very overwhelmed and asked to withdraw her consent. ","sp_data_site":"N/A"},"30094":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Emailed consent. Will call back 4/19 afternoon. Pt LVM stating is not interested in participating 4/20/2021.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30095":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient really doesn't want to have to come in and does not like needles or MRIs. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30096":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 4/16/2021. LVM 4/20/2021. LVM 6/15/2021.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30097":{"redcap_data_access_group":"rush_university_me","main_record_id":"10017","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-16","screening_age":"56","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-04-16","date_and_time":"2021-04-16 15:38","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-03","sp_v1_preop_date":"2021-04-20","sp_v2_6wk_date":"2021-06-14","sp_v3_3mo_date":"2021-08-03","age":"56","sex":"N/A","genident":"2","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-27 15:43:34","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt came in for blood draw at 3 weeks post surgery.","erep_protdev_caplan":"Collected blood, pt will complete survey set closer to 6 wks. ","erep_rel_covid19":"0"}}},"30098":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-16","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"She can't speak English.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30100":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-20","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said that she is not interested in any research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30101":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-28","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Reached out to patient multiple times and never received a call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30102":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-20","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient sent an email stating that she's not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30103":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-22","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said that she is 80 years old and doesn't want to participate in such a thing. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30104":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he is just not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30105":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-21","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of consent. She states she might be postponing her surgery. \r\nLeft multiple messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30106":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-22","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She is moving to Arizona and will not have time to participate in our study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30107":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"He said that he is not interested in research, ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30108":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"84","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Out of town a lot and does not have time to complete study visit.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30109":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact regarding study. (spoke briefly and stated to call back, left 3 VM's.)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30110":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM 4/21/2021. Spoke with 4/21/2021. Too much due to watching grandchildren, is already in pain and overall would be too much for her to do in a day. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30111":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He can't participate because he is opening a restaurant soon and is not going to have time to do anything else. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30112":{"redcap_data_access_group":"rush_university_me","main_record_id":"10032","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-21","screening_age":"66","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke on 4/21. Expressed interest, but wants to read more about study. RA will call back 4/26. Spoke 5/11 and still interested. Gave detailed consent information 5/12. Pt unable to sign at this time, will call back tomorrow for MRI info, and study visit dates. ","obtain_date":"2021-05-13","date_and_time":"2021-05-13 12:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-09","sp_v1_preop_date":"2021-05-27","sp_v2_6wk_date":"2021-07-21","sp_v3_3mo_date":"2021-09-09","age":"66","sex":"1","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-27 13:48:39","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt unable to complete MRI past custom pressure scan. ","erep_protdev_caplan":"Pt taken out of scanner prior to completion of scans. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-27 13:49:58","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Baseline visit outside of visit window (13 days prior to sx)","erep_protdev_caplan":"Visit completed outside of window. ","erep_rel_covid19":"0"}}},"30113":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Spoke w/ 4/21. Stated was \"not interested in research at all\".","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30114":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she does not want to participate in this study because she does not believe that she can commit to be in the study for a whole year. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30115":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said that she has an issue with walking and she does not want to come down to Rush.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30116":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-21","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated it was \"too much\"-4/26/2021. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30117":{"redcap_data_access_group":"rush_university_me","main_record_id":"10020","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-22","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-04-26","date_and_time":"2021-04-26 09:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-05","sp_v1_preop_date":"2021-04-30","sp_v2_6wk_date":"2021-06-16","sp_v3_3mo_date":"2021-08-05","age":"53","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-04-30 14:41:18","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Participants customized pressure was under the standard pressure. Did not complete standard pressure. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-04-30 14:43:35","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Study visit happened outside of protocol guideline. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-04-30 14:53:34","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to get blood on day of study visit. Will get on day of surgery. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-05-24 15:52:08","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"6 wk blood draw out of protocol window.","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30118":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-05","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30119":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-22","screening_age":"50","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 4/22/2021. LVM 4/26. LVM 4/29. Unable to contact pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30120":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-30","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She never got back to me and her surgery date passed. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30121":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-22","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"The time commitment due to work and having to come downtown would be a lot for pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30122":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-22","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"He said that he is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30124":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-22","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm 4/22 and 4/26. Spoke on 5/11. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30125":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-23","screening_age":"56","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she lives too far and because of work does not have the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30126":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-23","screening_age":"50","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30127":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-04","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"He said that he is not interested without giving a specific reason. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30128":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-07","screening_age":"64","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"He said that he is not interested in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30129":{"redcap_data_access_group":"rush_university_me","main_record_id":"10022","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-27","screening_age":"51","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"I consented him on 4/27/2021.","obtain_date":"2021-04-27","date_and_time":"2021-04-27 10:50","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-07","sp_v1_preop_date":"2021-04-14","sp_v2_6wk_date":"2021-06-18","sp_v3_3mo_date":"2021-08-07","age":"51","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-03 14:47:55","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"He was unable to do the MRI scan because he has PTSD.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-28 13:17:40","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"We drew his blood before the 6 weeks post op mark. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-06-10 11:33:44","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30000":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-14","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she doesn't have time and she believes that this study is too big of a commitment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30130":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30123":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-04","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"She said that she is very busy right now with doctor appointments and that she is also going on a vacation and would not have time to participate in the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30131":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-26","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 4/26/2021. Spoke 4/27 and emailed consent. LVM 4/28. Unable to contact to contact after emailing consent. LVM 8/18 for 2nd knee replacement. LVM 8/27.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30132":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-26","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt states she has other pain, sciatica, and lung issues. If she did not have these other medical problems she may participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30134":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-05","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"After multiple phone calls, patient never returned our call. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30135":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-26","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient does not want to have to come in to the city because it is too long of a drive for her. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30136":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-26","screening_age":"47","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient sent an email stating that she is not interested in participating in the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30137":{"redcap_data_access_group":"rush_university_me","main_record_id":"10023","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-29","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Left message for patient. ","obtain_date":"2021-04-29","date_and_time":"2021-04-29 10:44","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-16","sp_v1_preop_date":"2021-05-18","sp_v2_6wk_date":"2021-07-28","sp_v3_3mo_date":"2021-09-16","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-30 09:10:27","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's blood draw was taken outside of protocol range. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30138":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-26","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 4/26/2021. LVM 4/30/2021. Spoke 5/10. Is interested in research unsure if she can come in for study visit prior to sx. Emailed decline 5/10.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30139":{"redcap_data_access_group":"rush_university_me","main_record_id":"10026","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-04-26","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke w/ pt on 5/6. Is interested in study. Emailed consent form. LVM 5/6. ","obtain_date":"2021-05-06","date_and_time":"2021-05-06 10:41","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-09","sp_v1_preop_date":"2021-05-21","sp_v2_6wk_date":"2021-07-21","sp_v3_3mo_date":"2021-09-09","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-25 15:30:39","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt moderate pressure below standard cuff pressure. ","erep_protdev_caplan":"Did not complete standard pressure scan.","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-07-27 14:37:03","erep_ae_date":"2021-07-27","erep_visit_inv":"3","erep_ae_yn":"1","erep_onset_date":"2021-07-08 13:31","erep_resolution_date":"","erep_ae_severity":"2","erep_ae_relation":"3","erep_ae_serious":"0","erep_ae_desc":"Pt states that she had a spasm in her thigh which resulted in her losing functioning in her surgery leg 7/8/2021. She states she is back to about 1 week after surgery in function. Pt also had an ulcer the following day. She went to the hospital 7/9 due to the bleeding ulcer. She states she has low hemoglobin. Pt states her survey responses will be affected. ","erep_action_taken":"Pt continues participation. ","erep_outcome":"Pt followed up on 8/17 states progress is slow. Dr. thinks muscle in quad is torn. No PT for 2 weeks. 10/26 pt states she is doing much better. Extended PT. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-10-26 10:44:18","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"1"},"4":{"erep_local_dtime":"2022-06-17 09:04:26","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt 6 wk surveys completed a few days outside of protocol window. ","erep_protdev_caplan":"Pt continues study","erep_rel_covid19":"0"},"5":{"erep_local_dtime":"2022-06-17 09:06:27","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt completed 3 months surveys outside of window. ","erep_protdev_caplan":"Pt continues study","erep_rel_covid19":"0"},"6":{"erep_local_dtime":"2022-06-23 08:25:28","erep_ae_date":"","erep_visit_inv":"5","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt completed 6 mos surveys about 1 week out of window","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30140":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-27","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30142":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-28","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30143":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-28","screening_age":"73","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3|0","ptinterest_comment":"He said that he is not interested in the research study, and that he will never do an MRI scan. He had an MRI scan before and he had a very bad experience. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30144":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-28","screening_age":"44","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 4/28. Spoke on 4/28. Expressed interest, but would like to see the consent form. Left knee done around 3/24. Multiple attempts to contact (LVM) after expressed interest. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30145":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-28","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Multiple attempts to contact. Emailed consent after pt left voice mail, unable to contact. LVM 4/28. lvm 5/7. Emailed 5/12. LVM 5/12.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30141":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-28","screening_age":"66","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"He said that he is not interested. He did not give a reason and hung up the phone. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30146":{"redcap_data_access_group":"rush_university_me","main_record_id":"10027","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-28","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke 5/5. Expressed interest. RA emailed consent and will call back. Unable to speak 5/6. Will call back 5/7. ","obtain_date":"2021-05-07","date_and_time":"2021-05-07 13:52","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-14","sp_v1_preop_date":"2021-05-14","sp_v2_6wk_date":"2021-06-25","sp_v3_3mo_date":"2021-08-14","age":"66","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-14 09:56:53","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"Pt did not complete functional testing. Sx moved up and inadequate time to complete.","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-14 09:57:59","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Pt did not complete QST's. Sx moved up and inadequate time to complete. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-05-18 07:42:29","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt did not complete MRI.","erep_protdev_caplan":"Unable to complete all components of study visit due to time constraint (Sx date moved up)","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-05-18 07:43:39","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Visit date on DOS. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"5":{"erep_local_dtime":"2021-06-02 11:57:05","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Blood draw done outside of six week window (19 days post sx).","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30147":{"redcap_data_access_group":"rush_university_me","main_record_id":"10024","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-28","screening_age":"39","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke w/ pt. Is interested and would like call back after reviewing consent. LVM 4/30. Consented 5/3.","obtain_date":"2021-05-03","date_and_time":"2021-05-03 16:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-18","sp_v1_preop_date":"2021-06-02","sp_v2_6wk_date":"2021-07-30","sp_v3_3mo_date":"2021-09-18","age":"39","sex":"2","genident":"2","ethnic":"1","dem_race":"6","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-02 10:26:39","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt custom pressure less than standard pressure.","erep_protdev_caplan":"Pt did not complete standard pressure MRI. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-11-03 10:14:33","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt in person visit portion closer to 4 months than 3 months due to RA unable to contact pt and pt having other knee sx. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2022-06-17 08:58:54","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 wk blood draw outside of window.","erep_protdev_caplan":"Blood draw taken when pt came in for 2nd knee surgery.","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2022-07-14 14:08:42","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Patient had 2nd knee replaced within 3 months of the first surgery. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30148":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-06","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Phone number listed is out of service. Will try to see if there is an updated number to call and email patient as well. \r\nLeft several messages for patient on updated phone number. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30149":{"redcap_data_access_group":"rush_university_me","main_record_id":"10025","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-05-19","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"I consented her in person on 5/5/2021 at one of her appointments. She is coming in for her baseline visit on June 1, 2021. I called her on 05/19/2021 to check if she completed the questionnaires that were send to her by mail. ","obtain_date":"2021-05-05","date_and_time":"2021-05-05 12:47","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"68","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2021-06-24","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30150":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-29","screening_age":"75","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30151":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she will not be able to come in before her surgery date to do the baseline visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30152":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-05","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He said that he doesn't have time to participate and that he is in pain right now. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30153":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-21","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"She said that she does not have time for the study, and that she is also not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30154":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-30","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM 4/30/2021-home. LVM 5/10-mobile. LVM- 6/4/2021-home. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30155":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-30","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke briefly 4/30. Best time to call back is after 3:30pm. LVM 5/3. lvm 5/5. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30156":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-30","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Spoke 4/30. States he has appt 5/7 and is interested in study. Emailed consent. Will call back 5/3 with more information. lvm 5/3. LVM 5/5. Spoke 5/11 unable to participate, just started a new job and has time concerns. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30157":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-30","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She can't participate in the study because she is having her second knee replaced within 3 months of this first one. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30159":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30158":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Emailed consent 5/3. Lois expressed interest 5/11 and requested call back. Has disabled brother and she does not have the time to be committed to research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30160":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30161":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"76","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30162":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"He did not pick up, I left him a voicemail. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30163":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"83","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Spoke 5/4. Would like to discuss study with niece and nephew who are physicians. Spoke with niece and nephews and does not want to participate.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30164":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Does not want to come into the city and that is a dealbreaker. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30165":{"redcap_data_access_group":"rush_university_me","main_record_id":"10029","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-05-10","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"I consented her on 5/10/2021. She is coming in for her baseline visit on June 3rd at 10:00 AM.","obtain_date":"2021-05-10","date_and_time":"2021-05-10 15:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-17","sp_v1_preop_date":"2021-05-18","sp_v2_6wk_date":"2021-09-28","sp_v3_3mo_date":"2021-11-17","age":"68","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2022-01-19","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt states they are unable to participate in study and have had a lot going on. ","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-03 14:06:17","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"We could not obtain her blood.","erep_protdev_caplan":"We will draw her blood on the day of her surgery.","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-03 14:07:45","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"She could not do the 5 times Sit- to- Stand Test. She could do only one repetition. She was in too much pain.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-06-03 14:11:59","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"She could not complete the second cuff fMRI scan because her personalized cuff pressure was 90 mmHg which is below the set pressure of 120 mmHg. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30166":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-03","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She just said no right away. She did not give a reason. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30167":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"73","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient has too much going on at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30168":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-07","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is having surgery next week and has no time to come in before that. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30169":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states it is too far for her and does not want to come in to the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30170":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-06","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30171":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"72","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30172":{"redcap_data_access_group":"rush_university_me","main_record_id":"10028","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-05-07","screening_age":"62","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke 5/7. Expressed interest. RA emailed consent and will follow up.","obtain_date":"2021-05-10","date_and_time":"2021-05-10 09:59","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-09","sp_v1_preop_date":"2021-05-24","sp_v2_6wk_date":"2021-07-21","sp_v3_3mo_date":"2021-09-09","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-25 15:27:18","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt moderate pain rating below standard pressure cuff 120 mmhg, did not have standard pressure mri. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-30 09:13:02","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Blood draw 2 days outside of protocol window.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-10-11 14:53:35","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt unable to come in closer to 3 month visit due to lack of transportation (requires husband to drive for visits). Pt surveys and in person visit outside of protocol window. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30173":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-02","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She didn't pick up. I left her a voicemail. I have called her three times. I will wait for her to call me back. I do not want to call her too much. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30174":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"84","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"He can't speak English very well. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30176":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-14","screening_age":"71","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She just received my voicemails. Her surgery is tomorrow therefore, she can't participate in the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30175":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said that she is not interested in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30177":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-07","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Spoke w/ pt. States she hopes to not follow up downtown and does not want to make trips to Rush due to the long drive.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30178":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-07","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states there is too much involved and she will decline. She states she is also claustrophobic. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30179":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-07","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she lives too far away from Rush and will not have time to travel. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30180":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-07","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"He can't do the MRI scan because he said that it will give him anxiety. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30181":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-19","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She never contacted me back. Her surgery date is tomorrow. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30182":{"redcap_data_access_group":"rush_university_me","main_record_id":"10030","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-05-12","screening_age":"62","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-05-12","date_and_time":"2021-05-12 11:17","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-05-18","sp_v1_preop_date":"2021-05-17","sp_v2_6wk_date":"2021-06-29","sp_v3_3mo_date":"2021-08-18","age":"62","sex":"1","genident":"1","ethnic":"1","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-09 13:24:16","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Blood draw was taken outside of protocol timeline. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30183":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30185":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-13","screening_age":"53","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left patient multiple messages with no response. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30186":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"61","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30187":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30188":{"redcap_data_access_group":"rush_university_me","main_record_id":"10031","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-05-12","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-05-12","date_and_time":"2021-05-12 12:07","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-07","sp_v1_preop_date":"2021-06-04","sp_v2_6wk_date":"2021-07-19","sp_v3_3mo_date":"2021-09-07","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-04 11:02:30","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's baseline is outside of protocol range","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-04 11:05:46","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient's cuff pressure was under the standard cuff pressure. No standard cuff was performed. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30189":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"48","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30190":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"States she has other conditions and does not want anything to be worsened.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30191":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"\"It's more than I'm willing to do\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30192":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-10","screening_age":"47","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM 5/10. 5/11 states he is busy and does not have time prior to surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30184":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-19","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages for patient and have not received a call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30193":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said she is not interested right away. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30194":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"New granddaughter, and has trip planned. Pt plans on having second knee replaced within 3 months similar to her sister. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30195":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"I called her, but she never picked up. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30196":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM 5/12/2021. LVM 5/18. Spoke briefly 5/26 in a meeting. Pt stated she would call back. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30197":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She does not want to come down to the hospital. She said that she doesn't have time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30198":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states does not want to come in extra for in person visits (esp. blood draw). States if had follow ups in Indiana where patient has Physical therapy then she would participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30199":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-12","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He said that he is already a part of another research study so he doesn't want to participate in a second research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30200":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-17","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She said that she is not going to have time to be a part of the research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30201":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-02","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form. She also states she would like to discuss this with her doctor as well. \r\nLeft multiple messages for patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30202":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-13","screening_age":"68","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Spanish speaking. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30203":{"redcap_data_access_group":"rush_university_me","main_record_id":"10033","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-05-20","screening_age":"46","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-05-20","date_and_time":"2021-05-20 11:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-28","sp_v1_preop_date":"2021-06-16","sp_v2_6wk_date":"2021-08-09","sp_v3_3mo_date":"2021-09-28","age":"46","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-16 10:22:27","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient's pressure cuff is below standard pressure. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-16 10:25:21","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's baseline visit is outside of protocol timeline. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-07-21 13:08:07","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's 6 week blood draw is outside of protocol range. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30204":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-28","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she is interested in the study and requested a copy of the consent form. She wanted to go back to sleep and asked if I could call her back at a later time. \r\nLeft multiple message for patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30205":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-13","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is in enough pain and does not need to be subjected to anymore. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30206":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-13","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Has to travel and keep up with 5 grandkids. Does not have the time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30207":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-13","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"\"that sounds like too much for me\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30208":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-18","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unable to tolerate MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30209":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She never picked up the phone, and her surgery date is tomorrow. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30210":{"redcap_data_access_group":"rush_university_me","main_record_id":"10035","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-05-19","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"I consented her on 5/19/2021. ","obtain_date":"2021-05-20","date_and_time":"2021-05-20 16:52","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-04","sp_v1_preop_date":"2021-05-27","sp_v2_6wk_date":"2021-07-16","sp_v3_3mo_date":"2021-09-04","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-05-27 14:57:53","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"She wanted us to draw her blood with a very thin needle but we did not have one.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-05-27 14:59:52","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"She did not do the set rate for the cuff because she was below 120mmHg pressure. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-06-10 11:41:20","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-07-21 13:07:23","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Attempted blood draw 6/28. Unable to draw. Pt unwilling to come in 2nd time closer to 6 weeks. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30211":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"I left him a couple of voicemails but I was never able to get in contact with him. His surgery date is tomorrow. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30212":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"64","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He does not want to travel to the city for extra appointments. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30213":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-21","screening_age":"54","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"She said that the study is too long. She also said ,that the MRI scans are too much for her to do. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30214":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-19","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Unable to LVM (full mailbox) 5/19. LVM 5/25. LVM 5/27/2021. Unable to contact pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30215":{"redcap_data_access_group":"rush_university_me","main_record_id":"10039","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-05-21","screening_age":"60","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-02","date_and_time":"2021-06-02 12:58","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"60","sex":"1","genident":"1","ethnic":"1","dem_race":"N/A","ewdateterm":"2021-06-08","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt LVM stating he did not have time to complete study related procedures. RA called back and LVM to determine if he was able to complete any of the study (surveys, blood draw, etc.). Pt did not call back by day of surgery. ","sp_data_site":"N/A"},"30216":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-19","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Spoke 5/19, expressed interest. LVM 5/20. SPoke 5/26. States he will be rescheduling his sx to a later unknown date, but would be interested in participating in the study. Pt no longer interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30217":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-15","screening_age":"52","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"I contacted her but she never called me back. Her surgery date passed. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30218":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-21","screening_age":"53","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she lives too far and it would be inconvenient for her. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30219":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she plans on having a second knee surgery weeks after the first. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30221":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-20","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM home phone possibly- 5/20/2021. LVM 5/25. LVM 5/26. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30220":{"redcap_data_access_group":"rush_university_me","main_record_id":"10034","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-05-19","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Emailed consent form. Will call to follow up regarding participation.","obtain_date":"2021-05-20","date_and_time":"2021-05-20 15:53","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-29","sp_v1_preop_date":"2021-06-07","sp_v2_6wk_date":"2021-08-10","sp_v3_3mo_date":"2021-09-29","age":"78","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-07 15:37:07","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to draw blood day of study visit.","erep_protdev_caplan":"Will draw blood on day of surgery.","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-07 15:39:05","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt custom pressure cuff lower than standard. ","erep_protdev_caplan":"Did not complete standard pressure with cuff. ","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-06-29 13:37:13","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"blood draw completed outside of window on day of surgery","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-06-29 13:37:51","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to obtain blood for EDTA tube","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30222":{"redcap_data_access_group":"rush_university_me","main_record_id":"10038","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-05-26","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-05-27","date_and_time":"2021-05-27 15:09","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-09","sp_v1_preop_date":"2021-06-07","sp_v2_6wk_date":"2021-07-21","sp_v3_3mo_date":"2021-09-09","age":"56","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-07 16:07:21","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's baseline visit is outside of protocol range.","erep_protdev_caplan":"N|A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-07 16:47:46","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Will get blood draw on date of surgery. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-06-07 17:23:23","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient's pressure cuff was below standard pressure. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30223":{"redcap_data_access_group":"rush_university_me","main_record_id":"10037","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-05-26","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":" ","obtain_date":"2021-05-26","date_and_time":"2021-05-26 10:26","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-11","sp_v1_preop_date":"2021-06-09","sp_v2_6wk_date":"2021-07-23","sp_v3_3mo_date":"2021-09-11","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-09 12:09:24","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's baseline visit is outside protocol timeline. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-06-09 13:19:29","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient's pressure cuff was below standard cuff. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"5":{"erep_local_dtime":"2021-06-09 13:21:58","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to get blood draw at baseline visit. Will get blood on day of surgery. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30224":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to get in contact with patient. Phone numbers listed are for her sons and they state patient is canceling her surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30225":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-27","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said that she is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30226":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-26","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"He does not want to travel to downtown. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30227":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-25","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Spoke briefly w/pt on 5/25. Requested call back 5/26 after 10 am. Pt is spanish speaking and requires interpreter. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30228":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-25","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She said that she is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30229":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-25","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Does not want to do head MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30230":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-25","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM 5/25/2021. LVM 5/27. LVM 6/3. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30231":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-26","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she lives in Indiana and does not want to have to keep coming in to the city if she doesn't have to. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30232":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"States she takes care of her grandchildren, and it sounds like too much. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30233":{"redcap_data_access_group":"rush_university_me","main_record_id":"10041","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-01","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt is interested. RA emailed consent form to provide more info. ","obtain_date":"2021-06-04","date_and_time":"2021-06-04 07:50","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-01","sp_v1_preop_date":"2021-06-14","sp_v2_6wk_date":"2021-08-12","sp_v3_3mo_date":"2021-10-01","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30234":{"redcap_data_access_group":"rush_university_me","main_record_id":"10051","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-06-16","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"She signed the consent form on 6/16/2021. ","obtain_date":"2021-06-16","date_and_time":"2021-06-16 14:31","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-28","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2021-08-09","sp_v3_3mo_date":"2021-09-28","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2021-08-30","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Pt stated she had additional questions after RA spoke regarding research and reasons collecting blood. Clinical nurse called to follow up and was unable to make contact or receive call back. ","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-28 13:31:53","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Blood draw taken day of surgery. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-06-28 13:32:47","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"Pt did not complete functional testing. Cancelled baseline visit and was unable to reschedule. ","erep_protdev_caplan":"Pt completed surveys and blood draw. ","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2021-06-28 13:34:09","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Pt did not complete QST's. Pt cancelled baseline visit and was unable to reschedule.","erep_protdev_caplan":"Pt completed surveys and blood draw. ","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2021-06-28 13:34:51","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt did not complete MRI, cancelled baseline visit and was unable to reschedule.","erep_protdev_caplan":"Pt completed surveys and blood draw. ","erep_rel_covid19":"0"}}},"30235":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact after emailing consent form. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30236":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-15","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She is off the study because her surgery is tomorrow and she never called me back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30237":{"redcap_data_access_group":"rush_university_me","main_record_id":"10043","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-07","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"I consented him on 6/7/2021. ","obtain_date":"2021-06-07","date_and_time":"2021-06-07 12:08","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-21","sp_v1_preop_date":"2021-05-26","sp_v2_6wk_date":"2021-08-02","sp_v3_3mo_date":"2021-09-21","age":"62","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-06-16 11:52:34","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"3","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"He could not do the MRI scan because he has bb pellets in his legs. He also did not do the Imaging Items section. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30238":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She said that she has a phobia from the MRI scan. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30239":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt has twins and states she does not have time to do in person study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30240":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-02","screening_age":"72","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient does not speak English.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30241":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-02","screening_age":"78","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is Spanish speaking and does not speak any English at all. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30242":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-02","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she is the full time caregiver to her 99 yr old mother and has no time to come in for visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30243":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-02","screening_age":"75","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient states that he has shrapnel in his leg and cannot have MRI done. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30244":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-05","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that it would be too much for her to deal with so close to surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30245":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-24","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she has cancelled her surgery and no longer having it. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30246":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is just not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30247":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-07","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He said that he does not have time to do our study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30248":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-07","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Does not meet eligibility criteria. States she is interested in participating. RA will call back if she is unable to schedule within 3 months of the first knee. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30249":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"51","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Mailbox is full. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30250":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is already in enough pain and does not want to be caused any more pain. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30251":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-09","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She said that she is not interested right away. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30252":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient sent an email stating that it was too much of a commitment for her. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30253":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt stated she was very scared to leave her home and it has been a challenge to get the surgery figured out. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30254":{"redcap_data_access_group":"rush_university_me","main_record_id":"10045","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-10","screening_age":"54","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient requested a copy of consent to look over. Will call her back Thursday to possibly consent. \r\nPt asked that I call her back at noon.","obtain_date":"2021-06-10","date_and_time":"2021-06-10 15:56","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-02","sp_v1_preop_date":"2021-06-17","sp_v2_6wk_date":"2021-08-13","sp_v3_3mo_date":"2021-10-02","age":"54","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30255":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-21","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she has too much going on and does not have the time. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30256":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"72","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"He does not want to participate because he said that the study sounds intrusive. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30257":{"redcap_data_access_group":"rush_university_me","main_record_id":"10044","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-08","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-08","date_and_time":"2021-06-08 15:55","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-02","sp_v1_preop_date":"2021-06-29","sp_v2_6wk_date":"2021-08-13","sp_v3_3mo_date":"2021-10-02","age":"60","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30258":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-09","screening_age":"69","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"No answer. \r\nUnable to reach patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30259":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt called back and stated that she wants to discuss with son. RA emailed consent. RA f/u pt stated not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30260":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Sent ICF, wants to discuss with daughter","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30261":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Spoke with husband briefly, will have her call me back. Pt did not contact to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30262":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-09","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30263":{"redcap_data_access_group":"rush_university_me","main_record_id":"10048","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-14","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"6/9-Prefers to read over consent. RA emailed consent. 6/11-Pt stated they enjoy participating in research studies and is willing to participate in this one. RA will call at determined time to consent. ","obtain_date":"2021-06-14","date_and_time":"2021-06-14 12:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-20","sp_v1_preop_date":"2021-07-13","sp_v2_6wk_date":"2021-08-31","sp_v3_3mo_date":"2021-10-20","age":"59","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-07-19 12:42:14","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Pt unable to have MRI due to ear piercing that's not removable.","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30264":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-09","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"RA emailed consent. Will follow up. LVM 6/11 to det. if still interested/consent. Pt LVM stating not interested in participating.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30265":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30266":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"60","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient sent me an email stating that it was too huge of a commitment for her and that the payout was not enough. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30267":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-15","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":" I send her the consent form on 6/15/2021. Spoke 6/22. Not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30268":{"redcap_data_access_group":"rush_university_me","main_record_id":"10052","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-15","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Expressed interest. Emailed consent form. Completed consent.","obtain_date":"2021-06-16","date_and_time":"2021-06-16 14:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-13","sp_v1_preop_date":"2021-07-02","sp_v2_6wk_date":"2021-08-24","sp_v3_3mo_date":"2021-10-13","age":"72","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30269":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-17","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"States he is not interested in any studies. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30270":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Have left multiple messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30271":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left message for patient. \r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30272":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"47","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"He said that the study will take too much time, therefore he does not want to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30273":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-17","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unwilling to do MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30275":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-21","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke with pt as new point of contact. Preferred to have consent emailed. Will follow up to consent via phone if still interested. Went through consent 6/23, would like additional time to decide to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30276":{"redcap_data_access_group":"rush_university_me","main_record_id":"10057","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-22","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-22","date_and_time":"2021-06-22 11:42","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-11","sp_v1_preop_date":"2022-02-02","sp_v2_6wk_date":"2022-03-25","sp_v3_3mo_date":"2022-05-11","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"1|3|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-08 11:28:14","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient was consented in June 2021, but her surgery was cancelled and then later rescheduled for February 2022. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-08 11:22:17","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 month visit was outside of protocol range. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30277":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she is caring for a disabled son and lives too far. Feels that she would be taking too much on by participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30278":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-24","screening_age":"73","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that he has too many other commitments and spends half of his time in Texas. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30279":{"redcap_data_access_group":"rush_university_me","main_record_id":"10063","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-01","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-01","date_and_time":"2021-07-01 11:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-27","sp_v1_preop_date":"2021-07-15","sp_v2_6wk_date":"2021-09-07","sp_v3_3mo_date":"2021-10-27","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-29 15:09:36","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 mos survey set a few days outside of window","erep_protdev_caplan":"Pt continues participation","erep_rel_covid19":"0"}}},"30280":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was unable to talk, asked that I call him back later. \r\nLeft message for patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30281":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-21","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Interested, but would like to think about. RA emailed consent. Pt emailed and stated unable to commit due to time commitment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30282":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"States he is in pain and will contact us if he wants to participate. Stated he did not have an email and prefers not to be called back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30283":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Not convenient to participate in this study. States lives far away. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30284":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-25","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt not interested in participating in another study, already participating in 2 others. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30285":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 6/28. Spoke 6/30. Expressed interest. Emailed consent form to review. LVM 7/2/2021. Pt lvm stating he does not want to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30286":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Would like additional time to think about the study. Son is her transportation and may require Lyft. RA will follow up in one week. States after thinking about MRI, she is unwilling to try due to noise. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30287":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined without description of study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30288":{"redcap_data_access_group":"rush_university_me","main_record_id":"10079","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-19","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-19","date_and_time":"2021-07-19 11:00","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-05","sp_v1_preop_date":"2021-07-29","sp_v2_6wk_date":"2021-09-16","sp_v3_3mo_date":"2021-11-05","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30274":{"redcap_data_access_group":"rush_university_me","main_record_id":"10062","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-17","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt needs to check w/ daughters schedule prior to scheduling study visit. Unable to sign after review of consent (email not opening). ","obtain_date":"2021-06-29","date_and_time":"2021-06-29 15:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-27","sp_v1_preop_date":"2021-07-16","sp_v2_6wk_date":"2021-09-07","sp_v3_3mo_date":"2021-10-27","age":"66","sex":"2","genident":"2","ethnic":"3","dem_race":"7","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-20 14:22:12","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 week visit outside of protocol window by a few days. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-20 14:22:47","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 month visit a few days outside of window by 6 days","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30289":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-19","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Left message for patient. \r\nPatient would like to look over consent and check her availability. \r\nLeft message for patient. \r\nLeft multiple messages for patient with no response. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30290":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she read over the consent and is not very comfortable participating and really just isn't interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30291":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"52","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient has too much going on at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30292":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-02","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM 7/2/2021. LVM 7/8. LVM 7/14.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30293":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-06","screening_age":"74","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30294":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she is hoping to go back to work right away and her time is very limited. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30295":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt states she is not interested in having additional pain to leg. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30296":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"45","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she is out of town until 2 weeks before surgery and unfortunately will have no time to commit to the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30297":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 7/7/2021. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30298":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM 7/7/2021. Pt called 7/12. Stated not interested due to distance to Chicago.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30299":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-19","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is on vacation and will not be back until Sunday. Requested a copy of the consent form to look over. \r\nPatient hasn't had time to look over consent. Will call me back later this afternoon. \r\nLeft several messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30300":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM 7/7/2021. Spoke 7/12, pt stated unsure if able to comply with study related activities. RA emailed consent form. Pt stated would call back if willing to participate. Pt states unable to participate due to how busy he is. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30301":{"redcap_data_access_group":"rush_university_me","main_record_id":"10072","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-07","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM 7/7/2021. Interested in study. RA emailed consent and will follow up. LVM 7/9/2021","obtain_date":"2021-07-09","date_and_time":"2021-07-09 13:49","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-05","sp_v1_preop_date":"2021-07-15","sp_v2_6wk_date":"2021-09-16","sp_v3_3mo_date":"2021-11-05","age":"57","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30302":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30303":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Unable to contact after emailing consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30304":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"76","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he has too much going on right now. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30305":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"81","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient will be leaving to Florida soon after surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30306":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"41","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she has no time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30307":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Expressed interest. RA emailed consent form for further review. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30308":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Left message for patient. \r\nPatient requested a copy of consent form and will call me back once she is off of work. \r\nPatient was at the store and couldn't talk. Asked that I give her a call back tomorrow after 10am to discuss study. \r\nLeft multiple messages for patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30309":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is having a lot of anxiety regarding surgery and feels that this study would be too much for her. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30310":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"States does not have time prior to sx for study visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30311":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states would be \"too much\" after reviewing consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30312":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke briefly 7/12. Requested call back. Stated she already had one knee done and was not interested in study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30313":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"47","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Spoke and emailed consent form. RA needs to confirm home address. spoke 7/28 and expressed continued interest after reviewing consent in detail stated would sign later that night. lvm 7/30","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30314":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states he lives too far and is planning on leaving town as soon as he is cleared to. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30315":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"46","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states his time is limited. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30316":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much going on. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30317":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-26","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she has too much going on at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30318":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"73","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she discussed with her daughter and they have a lot going on at the moment. They will pass for now, but if anything changes she will contact me prior to her surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30319":{"redcap_data_access_group":"rush_university_me","main_record_id":"10078","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-07-15","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-15","date_and_time":"2021-07-15 16:18","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-11","sp_v1_preop_date":"2021-07-19","sp_v2_6wk_date":"2021-09-22","sp_v3_3mo_date":"2021-11-11","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2022-01-21","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Have made repeated attempts to get a hold of patient with no call back. ","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-07-19 13:40:28","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient panicked and could not complete the MRI. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30320":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"VM full 7/13. VM full 7/20. 7/28-Pt stated cancelled sx. provider out of network.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30321":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"RA emailed consent form. Must confirm home address. LVM 7/15. LVM 7/19. Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30322":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-26","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she was driving and did not have time to speak. Asked that I call on a different day later in the afternoon. \r\nPatient is on there way to visit a relative at the hospital and could not speak. \r\nLeft multiple message with not call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30323":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is working 12 hr shifts and has no time to come in. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30324":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Man answered home number and stated \"she's not interested\" before hanging up. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30325":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined participation 7/23.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30326":{"redcap_data_access_group":"rush_university_me","main_record_id":"10081","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-16","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested. Emailed consent form.","obtain_date":"2021-07-20","date_and_time":"2021-07-20 14:25","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-17","sp_v1_preop_date":"2021-07-26","sp_v2_6wk_date":"2021-09-28","sp_v3_3mo_date":"2021-11-17","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30327":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-19","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient sent me an email stating that he will not be able to commit to participating in our research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30328":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-19","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30329":{"redcap_data_access_group":"rush_university_me","main_record_id":"10087","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-19","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-26","date_and_time":"2021-07-26 11:00","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-17","sp_v1_preop_date":"2021-08-05","sp_v2_6wk_date":"2021-09-28","sp_v3_3mo_date":"2021-11-17","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-12-21 15:40:23","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 mos. visit 3.5 weeks after 3 month study visit date. ","erep_protdev_caplan":"Continued participation. ","erep_rel_covid19":"0"}}},"30330":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"50","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages for patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30331":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-26","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient just isn't interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30332":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-20","screening_age":"51","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states he is moving to Indiana and all of his recovery visits will be over there. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30333":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-20","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt called to inform is not able to participate in research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30334":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-20","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Not interested due to time commitment and distance to Rush. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30335":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-20","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt wife answered. Asked if call was due to knee surgery and states pt unable to move well enough to do a study in person. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30336":{"redcap_data_access_group":"rush_university_me","main_record_id":"10082","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-20","screening_age":"49","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Expressed interest. Wants to consent in person","obtain_date":"2021-07-21","date_and_time":"2021-07-20 15:24","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-19","sp_v1_preop_date":"2021-08-03","sp_v2_6wk_date":"2021-09-30","sp_v3_3mo_date":"2021-11-19","age":"49","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30337":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"70","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30338":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"76","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient requested a copy of the consent form to look over. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30339":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"55","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient cannot have MRI done, he has a pain stimulator. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30340":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she has too much going on.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30341":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"lvm 7/21","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30342":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unsure if will be having surgery therefore can't say OK to anything. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30343":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"pt declined participation after thinking about it.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30344":{"redcap_data_access_group":"rush_university_me","main_record_id":"10089","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-23","screening_age":"46","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt expressed interest. Emailed consent form.","obtain_date":"2021-07-27","date_and_time":"2021-07-27 07:26","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-11","sp_v1_preop_date":"2021-08-04","sp_v2_6wk_date":"2021-09-22","sp_v3_3mo_date":"2021-11-11","age":"46","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-28 11:33:59","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"RA failed to put location of greater knee pain in RedCap","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30345":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30346":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-19","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages for patient with no call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30347":{"redcap_data_access_group":"rush_university_me","main_record_id":"10106","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-08-10","screening_age":"34","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient requested a copy of consent form to look over. \r\nLeft message for patient. ","obtain_date":"2021-08-13","date_and_time":"2021-08-13 11:15","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-10","sp_v1_preop_date":"2021-08-26","sp_v2_6wk_date":"2021-10-22","sp_v3_3mo_date":"2021-12-10","age":"34","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30348":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30349":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-26","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that this study would cut into her work time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30350":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-05","screening_age":"77","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30351":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"82","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30352":{"redcap_data_access_group":"rush_university_me","main_record_id":"10090","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-26","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is definitely interested but was at a doctor's appointment. She asked that I call her tomorrow morning to consent. ","obtain_date":"2021-07-27","date_and_time":"2021-07-27 09:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-13","sp_v1_preop_date":"2021-08-06","sp_v2_6wk_date":"2021-09-24","sp_v3_3mo_date":"2021-11-13","age":"63","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30353":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"69","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was not interested in participating ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30354":{"redcap_data_access_group":"rush_university_me","main_record_id":"10088","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-26","screening_age":"66","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-26","date_and_time":"2021-07-26 14:19","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-19","sp_v1_preop_date":"2021-08-17","sp_v2_6wk_date":"2021-09-30","sp_v3_3mo_date":"2021-11-19","age":"66","sex":"2","genident":"2","ethnic":"1","dem_race":"7","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30355":{"redcap_data_access_group":"rush_university_me","main_record_id":"10107","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-11","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient lost power and unable to sign consent today. Will call her Friday to go over consent form and sign. ","obtain_date":"2021-08-13","date_and_time":"2021-08-13 13:15","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-16","sp_v1_preop_date":"2021-08-18","sp_v2_6wk_date":"2021-10-28","sp_v3_3mo_date":"2021-12-16","age":"69","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30356":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she lives too far for her to make any extra trips to the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30357":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was at work and could not speak. He did request a copy of the consent to look over and states that he will call me when he has the time. \r\nPatient never contacted me regarding study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30358":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-09","screening_age":"76","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages for patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30359":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30360":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Daughter number listed as mobile number, she has POA for father due to COVID, states father speaks English and will have him give me a call. Pt did not make contact regarding study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30361":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt states he does not like going to Chicago","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30362":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"76","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30363":{"redcap_data_access_group":"rush_university_me","main_record_id":"10097","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-07-30","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Emailed consent. LVM 8/2.","obtain_date":"2021-08-05","date_and_time":"2021-08-05 13:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-22","sp_v1_preop_date":"2021-08-09","sp_v2_6wk_date":"2021-12-02","sp_v3_3mo_date":"2022-01-21","age":"63","sex":"2","genident":"2","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-01 12:55:41","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt came in closer to 4 mos post op for 3 mos in person visit. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30364":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that is seems like too much for her. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30365":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form. Patient states she will see me next Tuesday if she is interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30366":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"71","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient does not feel safe in the city because of all of the shootings. States that she will be having her surgery and then getting out of the city as soon as possible. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30367":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states he does not have the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30368":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she lives too far and is working full time until just before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30369":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 7/30. LVM 8/2/2021. Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30370":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"\"Too involved for me\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30371":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Splits time between Michigan and California most of the time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30372":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined participation.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30373":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM 8/2/2021. lvm 8/10. Pt states rescheduled knee sx to following year. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30374":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Hesitant about timing of coming in and work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30375":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"States she would be unable to do study related activities and appreciated the explanation of activities. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30376":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"48","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she had to cancel her surgery because her insurance is out of network. She will reach out to us if anything changes. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30377":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"79","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states he cannot have MRI done because he has a back stimulator. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30378":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"61","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states he does not have the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30379":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-18","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30380":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-19","screening_age":"55","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Left multiple messages with no response. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30381":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated unable to participate currently. Stated to keep in mind when she has her second knee. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30382":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke and participant declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30383":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Stated it's difficult for her to get around, offered transportation and pt declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30384":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt LVM stating did not want to participate","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30385":{"redcap_data_access_group":"rush_university_me","main_record_id":"10099","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-08-04","screening_age":"65","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-06","date_and_time":"2021-08-06 09:56","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-07","sp_v1_preop_date":"2021-08-26","sp_v2_6wk_date":"2021-10-19","sp_v3_3mo_date":"2021-12-07","age":"65","sex":"1","genident":"1","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30386":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"51","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30387":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Not willing to try MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30388":{"redcap_data_access_group":"rush_university_me","main_record_id":"10108","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-05","screening_age":"60","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is not good with computers and would prefer that I consent her in person. ","obtain_date":"2021-08-16","date_and_time":"2021-08-16 08:57","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-06","sp_v1_preop_date":"2021-08-16","sp_v2_6wk_date":"2021-11-16","sp_v3_3mo_date":"2022-01-05","age":"60","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-23 07:51:31","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's surgery was pushed back a couple of weeks. Baseline visit is outside of protocol range because of that. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30389":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate and requested to be taken off the call list after having consent form emailed. Do not contact in future.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30390":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact pt. LVMx2.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30391":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"74","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30392":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-10","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Already participating in studies, also not willing to come in for study visits and states she takes many pain medications. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30393":{"redcap_data_access_group":"rush_university_me","main_record_id":"10109","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-10","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Emailed consent form. Will follow up for possible consent. LVM 8/12/2021. LVM 8/17/2021","obtain_date":"2021-08-19","date_and_time":"2021-08-19 15:41","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-13","sp_v1_preop_date":"2021-09-02","sp_v2_6wk_date":"2021-10-25","sp_v3_3mo_date":"2021-12-13","age":"60","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30394":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-10","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30395":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"56","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form to look over. \r\nLeft multiple messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30396":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Sx was resched to February. Pt indicated she was OK with call closer to sx date. Pt unable to speak 1/19, requested call back at different time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30397":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"64","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30398":{"redcap_data_access_group":"rush_university_me","main_record_id":"10134","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-13","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"RA emailed consent to daughter email per request. Mailed consent form as requested. Must ask eligibility q's. Preferred call time 8:30am. lvm 8/27. Pt called back 9/1- stated had not received consent, informed will be at clinic 9/7 and is willing to meet prior to.","obtain_date":"2021-09-07","date_and_time":"2021-09-07 11:50","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-21","sp_v1_preop_date":"2021-09-14","sp_v2_6wk_date":"2021-11-02","sp_v3_3mo_date":"2021-12-21","age":"68","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-07 10:55:53","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt unable to come in until after holiday's for study visit therefore visit is a few days outside of window. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-01-07 11:33:38","erep_ae_date":"2021-12-12","erep_visit_inv":"4","erep_ae_yn":"1","erep_onset_date":"2021-12-12 11:33","erep_resolution_date":"2022-01-07 11:33","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Pt was admitted into ED for several days due to infection in ankle on same side as knee surgery. She was prescribed antibiotics while in the hospital. Pt states that her knee was not affected and is doing well. ","erep_action_taken":"Pt continues participation as planned.","erep_outcome":"N/A","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2022-06-23 16:29:26","erep_ae_date":"","erep_visit_inv":"5","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 month survey set outside of window. Survey set was mailed and returned. ","erep_protdev_caplan":"N/A. Get stamps earlier. ","erep_rel_covid19":"0"}}},"30399":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"83","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVMx2. Unable to contact pt.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30400":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Doesn't want additional pain. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30401":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-16","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Not comfortable doing MRI. Pt was also not currently scheduled due to fungus on her toes and changed surgeons. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30402":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-16","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt declined to participate. Pt broke foot contralateral to surgical knee. Pt unable to put weight on ankle and not able to complete study related tasks at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30403":{"redcap_data_access_group":"rush_university_me","main_record_id":"10110","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-16","screening_age":"58","screening_gender":"1","screening_race":"0","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-23","date_and_time":"2021-08-23 10:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-15","sp_v1_preop_date":"2021-09-24","sp_v2_6wk_date":"2021-11-25","sp_v3_3mo_date":"2022-01-14","age":"58","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-05-24 07:50:20","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"3","erep_protdev_desc":"RA did not document final pain rating from sit to stand test","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-24 12:15:10","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 month in person visit outside of window~2 mos due to participant vacation.","erep_protdev_caplan":"Participant continues participation","erep_rel_covid19":"0"}}},"30404":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-16","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate 8/27 after hearing details of visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30405":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-16","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"LVM 8/16/2021. LVM 8/24. Stated received call earlier in the day and was not interested in participating in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30406":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-31","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient unable to take off of work","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30407":{"redcap_data_access_group":"rush_university_me","main_record_id":"10115","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-24","screening_age":"57","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient asked that I call her back at 4 pm. \r\nPatient states she is thinking of pushing her surgery and requested a copy of the consent form to look over. ","obtain_date":"2021-08-25","date_and_time":"2021-08-25 13:31","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"57","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"2022-06-17","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"Unable to reach participant after sx cancelled and not rescheduled within study timeframe. Pt would need to repeat study tests. ","sp_data_site":"N/A"},"30408":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-17","screening_age":"66","screening_gender":"4","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unable to commit to time to come in. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30409":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-17","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated too much time, already busy with children and clinical work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30410":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-19","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Daughters phone and email. Emailed information regarding study as requested. Stated unlikely mother would be able to participate. Pt never called regarding participation.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30411":{"redcap_data_access_group":"rush_university_me","main_record_id":"10124","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-23","screening_age":"45","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke w/ pt and is interested in participating. Emailed consent. LVM 8/26.","obtain_date":"2021-09-02","date_and_time":"2021-09-02 07:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-27","sp_v1_preop_date":"2021-09-09","sp_v2_6wk_date":"2021-11-07","sp_v3_3mo_date":"2021-12-27","age":"45","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30412":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Going to Florida shortly after sx. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30413":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unable to do MRI. Pt has clausterphobia. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30414":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate 9/15. \"Too difficult to get down there\", also declined with offered lyft. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30415":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated she does not have time to come in prior to sx and her follow up appointment is via telehealth so it would not be convenient to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30416":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30417":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states she has too much to do before surgery. \r\n09/02/2022- LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30418":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30419":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"61","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is still working and does not have time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30420":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states I need to stop because she does not intend on participating in any of these study tests. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30421":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient looked over consent and decided that she was not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30422":{"redcap_data_access_group":"rush_university_me","main_record_id":"10121","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-31","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-31","date_and_time":"2021-08-31 15:12","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-08","sp_v1_preop_date":"2021-09-02","sp_v2_6wk_date":"2021-10-20","sp_v3_3mo_date":"2021-12-08","age":"79","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-09-15 08:54:45","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"1","erep_onset_date":"2021-09-12 08:54","erep_resolution_date":"","erep_ae_severity":"2","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Patient feeling unwell after therapy and took oxycodone. Patient states that the combination made her fall. She landed on her right hand and knee (non operative knee). \r\nPatient hospitalized on 09/12/2021 and discharged on 09/14/2021.\r\nDirected to discontinue oxycodone at hospital discharge. ","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":""}}},"30423":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that it seems like too much of a time commitment for him. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30424":{"redcap_data_access_group":"rush_university_me","main_record_id":"10125","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-24","screening_age":"56","screening_gender":"1","screening_race":"0","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt may be interested if transportation is provided. RA called 9/1 for poss. consent and lvm. ","obtain_date":"2021-09-02","date_and_time":"2021-09-02 07:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-14","sp_v1_preop_date":"2021-09-03","sp_v2_6wk_date":"2021-10-26","sp_v3_3mo_date":"2021-12-14","age":"56","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-11-11 08:00:41","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"1","erep_onset_date":"2021-09-14 08:00","erep_resolution_date":"","erep_ae_severity":"2","erep_ae_relation":"3","erep_ae_serious":"0","erep_ae_desc":"Pt's son passed away unexperctedly. Pt stated that they do feel sad/depressed as a result of the situation and therefore their questionnaire answers are not due to his knee. ","erep_action_taken":"N/A","erep_outcome":"Pt continues to want to participate in study.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30425":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"50","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form and will contact me if she is interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30426":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Going out of town next week until just before procedure and unable to make time commitment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30427":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-25","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30428":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-25","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"\"Too involved\". Pt stated does not like the idea of someone touching her knee which is already in pain. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30429":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-25","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Sons getting married, sister-in-law ill and need support. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30430":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is no longer having surgery. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30431":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"69","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is Spanish speaking and is not interested in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30432":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-08","screening_age":"47","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states it is difficult for her to get to Rush. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30433":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"53","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he had an accident and has to postpone his surgery, but regardless states he is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30434":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-13","screening_age":"54","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30435":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left message for patient.\r\nPatient is on vacation and asked that I call him back next week. \r\nLeft message with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30436":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form to look over. \r\nLeft voicemail for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30437":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient isn't interested in participating ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30438":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-01","screening_age":"58","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient sent an email stating that he is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30439":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30440":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30441":{"redcap_data_access_group":"rush_university_me","main_record_id":"10127","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-01","screening_age":"57","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is out of town. Requested a copy of the consent form. ","obtain_date":"2021-09-02","date_and_time":"2021-09-02 10:01","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-16","sp_v1_preop_date":"2021-09-09","sp_v2_6wk_date":"2021-10-28","sp_v3_3mo_date":"2021-12-16","age":"57","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30442":{"redcap_data_access_group":"rush_university_me","main_record_id":"10123","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-30","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested. RA emailed consent. ","obtain_date":"2021-09-01","date_and_time":"2021-09-01 14:32","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-16","sp_v1_preop_date":"2021-09-10","sp_v2_6wk_date":"2021-10-28","sp_v3_3mo_date":"2021-12-16","age":"60","sex":"2","genident":"2","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30443":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-30","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke w/ husband of pt. Stated not likely wife would participate, but will give contact information and they will contact me if willing to participate. Pt never contacted regarding study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30444":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-31","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM 1. LVM 2. Spoke 9/21. Emailed consent. Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30445":{"redcap_data_access_group":"rush_university_me","main_record_id":"10129","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-01","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-03","date_and_time":"2021-09-03 10:15","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-01","sp_v1_preop_date":"2021-09-13","sp_v2_6wk_date":"2021-11-11","sp_v3_3mo_date":"2021-12-31","age":"68","sex":"2","genident":"2","ethnic":"1","dem_race":"1|3|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30446":{"redcap_data_access_group":"rush_university_me","main_record_id":"10126","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-02","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-02","date_and_time":"2021-09-02 09:27","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-15","sp_v1_preop_date":"2021-09-20","sp_v2_6wk_date":"2021-11-25","sp_v3_3mo_date":"2022-01-14","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30447":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-07","screening_age":"52","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was interested in participating, but once I started going over the key points of the study she decided that she would prefer to decline instead. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30448":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she definitely is not interested since it would require her to leave her house and go places. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30449":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-01","screening_age":"48","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient does have time and is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30450":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-01","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Phone number listed is disconnected and unable to find any other number. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30451":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he is claustrophobic and is unwilling to participate because of the MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30452":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form to look over. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30453":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient called and left a voicemail stating that she has too much going on at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30454":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined because study procedures are \"Too much\" ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30455":{"redcap_data_access_group":"rush_university_me","main_record_id":"10149","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-03","screening_age":"62","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt asked questions regarding pain and how to assess since it is often determined by activity. RA informed we take pain scores throughout visit (including after functional tasks). Pt interested in research. RA emailed consent. Unable to contact 9/8 lvm. Unable to contact 9/15 lvm. ","obtain_date":"2021-09-21","date_and_time":"2021-09-21 14:43","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-08","sp_v1_preop_date":"2021-09-29","sp_v2_6wk_date":"2021-11-18","sp_v3_3mo_date":"2022-01-07","age":"62","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-12-14 13:25:35","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 week blood draw outside of window- at 9 wks as opposed to 6 due to pt schedule. Survey set completed about 3 days outside of window. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-01-28 08:28:02","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 mos visit outside of +/- 2 wk window, by a few days","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30456":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"LVM 1. Pt LVM stating not interested in research at this time and to take off call list. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30457":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 9/13. lvm 9/24. unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30458":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30459":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-13","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is in too much pain and has too much going on at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30460":{"redcap_data_access_group":"rush_university_me","main_record_id":"10131","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-03","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-03","date_and_time":"2021-09-03 14:38","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-28","sp_v1_preop_date":"2021-09-17","sp_v2_6wk_date":"2021-11-08","sp_v3_3mo_date":"2021-12-28","age":"76","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2021-09-16","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt states her blood pressure is too high and needs to \"take it easy\" prior to surgery. ","sp_data_site":"N/A"},"30461":{"redcap_data_access_group":"rush_university_me","main_record_id":"10130","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-03","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke w/ participant and emailed consent. ","obtain_date":"2021-09-03","date_and_time":"2021-09-03 14:28","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-17","sp_v1_preop_date":"2021-09-08","sp_v2_6wk_date":"2021-10-29","sp_v3_3mo_date":"2021-12-17","age":"63","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-04 10:33:22","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 Month visit outside of 3 month window (12/17\r\n), visit on 1/4","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30462":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-07","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"RA mailed consent. Pt stated experiencing health issues and will contact if willing to participate. Pt did not contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30463":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"80","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she does not have the time at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30464":{"redcap_data_access_group":"rush_university_me","main_record_id":"10174","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-04","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-04","date_and_time":"2021-10-04 16:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-19","sp_v1_preop_date":"2021-10-11","sp_v2_6wk_date":"2021-11-29","sp_v3_3mo_date":"2022-01-18","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30465":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-08","screening_age":"42","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Unable to contact after emailing consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30466":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-08","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Daughter answered phone. Stated mother is not interested in doing a research study because she is having a knee replacement and to \"take her off the list\" before hanging up phone. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30467":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-09","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt does not speak English according to Epic.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30468":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-09","screening_age":"49","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. Pt called back and lvm stating sx was cancelled and mentioned double knee replacement for next year (difficult to hear pt on phone message).\r\nPt has not rescheduled sx as of 05/26/2022.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30469":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-09","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke and emailed consent form. Did not look at consent 9/13 requested call back. Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30470":{"redcap_data_access_group":"rush_university_me","main_record_id":"10142","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-13","screening_age":"66","screening_gender":"N/A","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Expressed interest. RA emailed consent.","obtain_date":"2021-09-15","date_and_time":"2021-09-15 15:29","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-27","sp_v1_preop_date":"2021-09-16","sp_v2_6wk_date":"2021-11-07","sp_v3_3mo_date":"2021-12-27","age":"66","sex":"1","genident":"1","ethnic":"1","dem_race":"7","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30471":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-13","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke w/ pt and wife.RA emailed consent. Called back 9/15. Pt and wife continued to state they needed to review consent/ RA unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30472":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-13","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt sounded hesitant. Emailed consent. lvm 9/15/2021. lvm 9/29/2021. Unable to contact pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30473":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states he is working full time and does not have time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30474":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"62","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient returned my call. Requested a copy of the consent form and states that she needs time to think about it. She will contact me if she is interested. \r\nPatient never reached out to me. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30475":{"redcap_data_access_group":"rush_university_me","main_record_id":"10144","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-16","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient states he is interested. Requested a copy of consent to look over and asked that I call him back tomorrow to consent. ","obtain_date":"2021-09-16","date_and_time":"2021-09-16 13:20","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-22","sp_v1_preop_date":"2021-09-28","sp_v2_6wk_date":"2021-12-02","sp_v3_3mo_date":"2022-01-21","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30476":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-29","screening_age":"54","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient states she is currently on another study and has way too much going on at the moment. \r\n ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30477":{"redcap_data_access_group":"rush_university_me","main_record_id":"10146","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-16","screening_age":"40","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient was on the phone and asked that I call her back later today. Copy of consent form was emailed to her. ","obtain_date":"2021-09-16","date_and_time":"2021-09-16 15:01","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-21","sp_v1_preop_date":"2021-10-15","sp_v2_6wk_date":"2021-12-01","sp_v3_3mo_date":"2022-01-20","age":"40","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30478":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Spoke w/ participant. Expressed interest. RA emailed consent. Unable to contact post emailing consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30479":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt sx rescheduled. 2/23/2022-Pt unwilling to come into MOR for study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30480":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate. Wife assisted during call due to pt confusion about study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30481":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was at work and did not have the time to speak with me. She requested that I send her a copy of the consent form and would call me if she is interested. \r\nPatient sent an email stating that she did not wish to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30482":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Left several messages for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30483":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient is currently living in Indiana and states being too far and too busy to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30484":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"70","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Left message for patient. \r\nPatient returned my call and states that he needs to think about participating. He will reach out to me if he is interested. \r\nPatient never contacted me. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30485":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"66","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states he is still working full time and cannot take that much time off to be able to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30486":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that her daughter is getting married right before surgery and is booked all the way up until her surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30487":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Does not speak English/ traditional chinese. Number on file is daughters","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30488":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke w/ participant. Prefers to think about it. RA will call back in a week. Pt stated she had trouble opening consent and is no longer interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30489":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Polish speaker according to Epic. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30490":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left message for patient with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30491":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Surgery is coming up very soon, unable to take an afternoon to come in for study visit. would be willing if sx was further away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30492":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"47","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unwilling to do mri and timing is bad. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30493":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt requested mailed information about the study. Mailed consent form. Pt states sx was postponed due to health issues. Pt stated it was OK to call back if they turn up on the schedule again. Pt states did not receive mailed copy of consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30494":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Not interested in coming to downtown location","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30495":{"redcap_data_access_group":"rush_university_me","main_record_id":"10159","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-20","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM 9/20. SPoke 9/21. RA emailed consent.","obtain_date":"2021-09-27","date_and_time":"2021-09-27 13:14","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-25","sp_v1_preop_date":"2021-10-18","sp_v2_6wk_date":"2021-12-05","sp_v3_3mo_date":"2022-01-24","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-10 13:47:33","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt was seen a few days outside of 3 month window","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30496":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-20","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt stated they required dog sitters for two senior dogs, and the commute to MOR was very long. Pt declined to participate after reviewing consent due to HIPAA language and concerns with data.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30497":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-20","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Going out of town shortly after surgery. Informed would likely be able to complete 2 study visits, but pt declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30498":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-20","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30499":{"redcap_data_access_group":"rush_university_me","main_record_id":"10148","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-09-21","screening_age":"70","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-21","date_and_time":"2021-09-21 14:20","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-30","sp_v1_preop_date":"2021-09-22","sp_v2_6wk_date":"2021-11-10","sp_v3_3mo_date":"2021-12-30","age":"70","sex":"2","genident":"2","ethnic":"1","dem_race":"7","ewdateterm":"2021-12-06","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"I have called participant multiple times, she has hung up on me twice and I left several messages with no call back. ","sp_data_site":"N/A"},"30500":{"redcap_data_access_group":"rush_university_me","main_record_id":"10156","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-21","screening_age":"59","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt was interested. Emailed consent. ","obtain_date":"2021-09-24","date_and_time":"2021-09-23 15:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-12","sp_v1_preop_date":"2021-10-11","sp_v2_6wk_date":"2021-11-22","sp_v3_3mo_date":"2022-01-11","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-23 10:15:59","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 mos visit a few days outside of window","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30501":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-23","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient isn't interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30502":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-21","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient was a little uneasy regarding the MRI, but did request a copy of the consent form to look over.\r\nPatient spoke to her surgeon and they agreed that it would be best not to participate since she will be having a 2nd knee replacement 6 wks after the first. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30503":{"redcap_data_access_group":"rush_university_me","main_record_id":"10155","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-21","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient requested a copy of the consent form to look over. Will be here for her pre op visit on Thursday and if she's interested, she will consent at that time. ","obtain_date":"2021-09-23","date_and_time":"2021-09-23 11:07","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-08","sp_v1_preop_date":"2021-09-28","sp_v2_6wk_date":"2021-11-18","sp_v3_3mo_date":"2022-01-07","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30504":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient is at work and did not have time to talk. She states I can call any day after 5 pm. \r\nPt wants me to call her tomorrow to check schedule and possibly consent. \r\nLVM\r\nNever got a hold of patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30505":{"redcap_data_access_group":"rush_university_me","main_record_id":"10150","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-22","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-22","date_and_time":"2021-09-22 10:52","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-18","sp_v1_preop_date":"2021-10-07","sp_v2_6wk_date":"2021-11-28","sp_v3_3mo_date":"2022-01-17","age":"79","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-24 17:30:25","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient was having issues with surveys and unable to complete within the protocol window. Patient had was unable to come in for their 3 month visit within the protocol window. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30506":{"redcap_data_access_group":"rush_university_me","main_record_id":"10154","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-22","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt expressed interest. RA emailed consent.","obtain_date":"2021-09-23","date_and_time":"2021-09-23 12:17","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-20","sp_v1_preop_date":"2021-10-05","sp_v2_6wk_date":"2022-03-03","sp_v3_3mo_date":"2022-04-20","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-14 12:25:54","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Pt contacted numerous times regarding study visit via phone and email with no response. Pt did not complete 3 month surveys nor in person visit. ","erep_protdev_caplan":"Continue participation; will check in regarding 6 month surveys","erep_rel_covid19":"0"}}},"30507":{"redcap_data_access_group":"rush_university_me","main_record_id":"10169","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-22","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt signed consent after review via telephone. \r\n","obtain_date":"2021-10-01","date_and_time":"2021-10-01 13:34","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-25","sp_v1_preop_date":"2021-10-04","sp_v2_6wk_date":"2021-12-05","sp_v3_3mo_date":"2022-01-24","age":"64","sex":"2","genident":"2","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-12-09 09:22:31","erep_ae_date":"2021-12-07","erep_visit_inv":"6","erep_ae_yn":"1","erep_onset_date":"2021-12-07 09:22","erep_resolution_date":"","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"0","erep_ae_desc":"Pt states that doctors thought she had blood clots and she is experiencing severe pain following knee surgery to the point where medical professionals wanted to airlift her to Mayo Clinic. ","erep_action_taken":"Pt prefers to continue participation in study for now. ","erep_outcome":"Pt will continue to update on her situation. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-24 13:07:16","erep_ae_date":"","erep_visit_inv":"5","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 mos survey set outside of protocol window. Pt was contacted multiple times to complete. ","erep_protdev_caplan":"Participation continues. ","erep_rel_covid19":"0"}}},"30508":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"39","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"lvm mobile. emailed consent. lvm 10/4/2021.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30509":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"74","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient sent an email stating that she is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30510":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states unable to make time to come for study visit.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30511":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"62","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states he's not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30512":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unwilling to try MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30513":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"48","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"lvm. lvm 10/4/2021. Unable to contact pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30514":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"79","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nHave been unable to reach patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30515":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-29","screening_age":"69","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states he had surgery already, his surgery was moved up to 09/08/2021. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30516":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient does not like pain. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30517":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-29","screening_age":"81","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she lives too far. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30518":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Asked that I call her back because she's at work. \r\nNever got a hold of patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30519":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to get a hold of patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30520":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-29","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient sent an email stating that she is still working full time and lives too far. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30521":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-29","screening_age":"64","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30522":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-29","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"RA emailed consent. Pt stated would call back after thinking about it. Pt declined to participate via email. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30523":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Phone number listed is daughters. Pt daughter stated father best reached during morning. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30524":{"redcap_data_access_group":"rush_university_me","main_record_id":"10173","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-30","screening_age":"60","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"RA emailed consent. Pt expressed interest. ","obtain_date":"2021-10-04","date_and_time":"2021-10-04 13:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-21","sp_v1_preop_date":"2021-10-13","sp_v2_6wk_date":"2021-12-01","sp_v3_3mo_date":"2022-01-20","age":"60","sex":"1","genident":"1","ethnic":"1","dem_race":"7","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-10 13:51:51","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 mos visit outside of 3 mos window","erep_protdev_caplan":"Continued with study visit as outlined","erep_rel_covid19":"0"}}},"30525":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-11","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he lives way to far to have to come back and forth. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30526":{"redcap_data_access_group":"rush_university_me","main_record_id":"10189","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-15","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPatient called back and requested a copy of the consent form to look over. ","obtain_date":"2021-10-15","date_and_time":"2021-10-15 13:45","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-29","sp_v1_preop_date":"2021-10-27","sp_v2_6wk_date":"2021-12-09","sp_v3_3mo_date":"2022-01-28","age":"54","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30527":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives 70 miles away and leave midwest for the winter. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30528":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact. LVMx2. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30529":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states not willing to have in person study visits due to work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30530":{"redcap_data_access_group":"rush_university_me","main_record_id":"10241","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-02","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient requested a copy of the consent form to look over. \r\nLVM\r\nPatient states he might be having surgery within 3 months of the first. If he has his surgery outside of the 3 month window, he would like for us to contact him to participate for his 2nd surgery. \r\nLVM","obtain_date":"2021-12-02","date_and_time":"2021-12-02 14:23","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-16","sp_v1_preop_date":"2022-01-31","sp_v2_6wk_date":"2022-03-30","sp_v3_3mo_date":"2022-05-16","age":"72","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30531":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt states she is in too much pain to do the study activities. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30532":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Sx rescheduled\r\nSx has not been rescheduled as of 05/26/2022.\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30533":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt declined any study involving pain. Stated he's had pain since 1997. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30534":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Speaks tagalog (epic). ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30535":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30536":{"redcap_data_access_group":"rush_university_me","main_record_id":"10181","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-04","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"RA called to give additional information. Pt interested in participating. ","obtain_date":"2021-10-12","date_and_time":"2021-10-12 10:06","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-10","sp_v1_preop_date":"2021-10-12","sp_v2_6wk_date":"2021-12-22","sp_v3_3mo_date":"2022-02-09","age":"65","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-19 13:43:57","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt unable to come in for 6 wk visit due to bad cold","erep_protdev_caplan":"Pt came in when feeling better","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-28 13:30:40","erep_ae_date":"","erep_visit_inv":"5","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt complete 6 mos surveys outside of window","erep_protdev_caplan":"Surveys mailed out late due to lack of stamps, get stamps earlier. ","erep_rel_covid19":"0"}}},"30537":{"redcap_data_access_group":"rush_university_me","main_record_id":"10184","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-04","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke. Pt expressed interest. RA went through details of consent. ","obtain_date":"2021-10-12","date_and_time":"2021-10-12 15:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-27","sp_v1_preop_date":"2021-10-25","sp_v2_6wk_date":"2021-12-07","sp_v3_3mo_date":"2022-01-26","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-14 11:54:34","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"1","erep_onset_date":"2021-12-07 11:58","erep_resolution_date":"2022-01-10 11:58","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Pt tested positive for covid-19 and was later hospitalized surrounding the date of 12/13/2021.","erep_action_taken":"Pt continues participation.","erep_outcome":"Pt discharged from hospital and at f/up with orthopedic surgeon states they are healing well. ","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt unable to come in at 6 weeks.","erep_protdev_caplan":"Pt came in when able.","erep_rel_covid19":"1"},"2":{"erep_local_dtime":"2022-05-02 07:43:12","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Pt did not complete survey set nor in person portion of 3 month visit","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30538":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"Pt declined to participate before description of study given. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30539":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"61","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPatient returned my call. States that he is not sure if he will be having surgery seeing as he can't get his physicians to cooperate with each other. Did not sound like he was very interested in participating and states he will contact me if anything changes. \r\nPatient states he is having surgery, but is not interested in participating in our study. He does not have the time to be coming in for the visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30540":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient states they are interested but they were at physical therapy. She will reach out to me once she's had a chance to look over the consent form. \r\nPatient declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30541":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he plans on leaving Chicago for the winter after surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30542":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-05","screening_age":"74","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient requested a copy of the consent form to look over. \r\nPatient sent an email stating that she was not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30543":{"redcap_data_access_group":"rush_university_me","main_record_id":"10176","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-05","screening_age":"48","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-05","date_and_time":"2021-10-05 14:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-01","sp_v1_preop_date":"2021-10-28","sp_v2_6wk_date":"2021-12-13","sp_v3_3mo_date":"2022-01-31","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-11-01","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Patient was a no show to their baseline visit. Have left several messages with no call back. Surgery is set for 11/01/2021.","sp_data_site":"N/A"},"30544":{"redcap_data_access_group":"rush_university_me","main_record_id":"10200","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-25","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-25","date_and_time":"2021-10-25 10:57","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-09","sp_v1_preop_date":"2021-11-02","sp_v2_6wk_date":"2021-12-21","sp_v3_3mo_date":"2022-02-08","age":"73","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30545":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"56","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Did not give a reason","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30546":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"74","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient called back and requested a copy of the consent form to look over. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30547":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"61","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient called back and states that he was working and didn't have time to talk. He will call me back if he has time and/or is interested in hearing more about the study. \r\nPatient never made contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30548":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Is already nervous about the surgery and did not want to know more about the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30549":{"redcap_data_access_group":"rush_university_me","main_record_id":"10178","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-06","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-07","date_and_time":"2021-10-07 13:38","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-03-30","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"Subject rescheduled surgery at outpatient site not eligible for study. ","sp_data_site":"N/A"},"30550":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Canceled surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30551":{"redcap_data_access_group":"rush_university_me","main_record_id":"10188","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-06","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke and emailed consent form. Pt requested call Monday 10/11. lvm 10/11.","obtain_date":"2021-10-21","date_and_time":"2021-10-14 13:33","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-07","sp_v1_preop_date":"2021-10-14","sp_v2_6wk_date":"2022-05-19","sp_v3_3mo_date":"2022-07-07","age":"50","sex":"1","genident":"1","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-28 11:15:22","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Baseline visit completed 5 months outside of visit window due to surgery rescheduling. ","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-05-19 15:12:27","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"1","erep_onset_date":"2022-05-09 15:12","erep_resolution_date":"","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Pt hospitalized due to infection of prosthetic joint","erep_action_taken":"Pt continues participation with surveys","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to obtain blood due to MRSA infection","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30553":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Spoke and emailed consent. lvm 10/7. lvm 10/8.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30554":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"50","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30555":{"redcap_data_access_group":"rush_university_me","main_record_id":"10222","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-12","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-15","date_and_time":"2021-11-15 10:59","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-08","sp_v1_preop_date":"2021-12-06","sp_v2_6wk_date":"2022-01-19","sp_v3_3mo_date":"2022-03-09","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-24 10:52:32","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Failed to record location of greater pain","erep_protdev_caplan":"Unable to correct. Will record if pt comes in for 3 month","erep_rel_covid19":"0"}}},"30556":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Is very busy, does not have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30557":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact. LVM's.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30558":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Is working and time is an issue.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30559":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt uninterested in coming in person for study visit. Asked about teleconference visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30560":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30561":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30562":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"10/11/2021 pt declined to participate. Too close to sx. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30563":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Canceled surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30564":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"45","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Issue related to commute","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30565":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Absolutely no on MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30566":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Pt stated time constraint issues due to working. Also stated was unwilling to undergo an MRI stating she had done one before and would have to be drugged to do one again. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30567":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Absolutely no to MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30570":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Note: THIS IS A DUPLICATE PARTICIPANT","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30571":{"redcap_data_access_group":"rush_university_me","main_record_id":"10195","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-08","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-20","date_and_time":"2021-10-20 10:03","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-02","sp_v1_preop_date":"2021-10-20","sp_v2_6wk_date":"2021-12-14","sp_v3_3mo_date":"2022-02-01","age":"67","sex":"1","genident":"1","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30572":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-11","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Other life factors going on","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30573":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-11","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30574":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-11","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient wants to look over the consent with his wife before signing. \r\nPatient sent an email stating that he calculated approximately 30-50 hrs of his time would be required and the $500 payment for that time does not make sense for the time and effort required.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30575":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-21","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is Spanish speaking and understands very little English. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30576":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-11","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30577":{"redcap_data_access_group":"rush_university_me","main_record_id":"10183","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-12","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-12","date_and_time":"2021-10-12 14:47","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-21","sp_v1_preop_date":"2021-10-19","sp_v2_6wk_date":"2021-12-01","sp_v3_3mo_date":"2022-01-20","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-08 14:49:52","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30578":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"48","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form to look over and will contact me if she is interested in participating. \r\nPatient never contacted me. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30579":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"62","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states he is not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30580":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states that he does not want to have to keep coming to this specific Rush location more than he has to. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30581":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"46","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with to call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30582":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient requested a copy of the consent form to look over. She will contact me if she is interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30583":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unable to LVM at mobile. Home number went to a different person. Did not leave message. Left message w/ partner. Pt will call back if interested 10/25/2021. Partner stated pt is very busy until sx and not likely able to participate. Pt did not reach out. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30584":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30585":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-13","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to learn more about study and declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30586":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-13","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVMx3. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30588":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-13","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"\"Too much of a commitment\" ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30589":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"81","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient isn't interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30590":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"69","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient called and left a message stating that he had surgery already. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30591":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30592":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30593":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30594":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30595":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt stated she \"cannot do anymore tests\" ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30596":{"redcap_data_access_group":"rush_university_me","main_record_id":"10187","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-14","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-14","date_and_time":"2021-10-14 13:08","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-10-19","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Miscommunication about study location. Sub unwilling to come to Rush main campus","sp_data_site":"N/A"},"30597":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"46","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that they plan to cancel their surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30598":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she's already had surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30569":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-20","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Called back, LVM\r\nCalled back, 10/20, no response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30600":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30602":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-18","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated having EKG issues and is unable to make time to come in for additional visits prior to sx. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30603":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-18","screening_age":"81","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt declined to participate prior to learning about study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30604":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-18","screening_age":"39","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt expressed interest. Pt stated would contact if interested. RA unable to contact following initial conversation. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30605":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30606":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"58","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was at work and could not speak. He asked that I call back on another day after 4 or 5 pm. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30607":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"62","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states he does not have time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30608":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient was at work and could not speak. Sent a copy of the consent form to look over and will call her back after work hours. \r\nLVM\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30610":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Pt states they cancelled sx and want to hold off as long as possible. Stated they are OK with a call if they are put back on schedule. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30612":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"50","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30611":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30599":{"redcap_data_access_group":"rush_university_me","main_record_id":"10196","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-20","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-20","date_and_time":"2021-10-20 13:56","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-16","sp_v1_preop_date":"2021-11-11","sp_v2_6wk_date":"2021-12-28","sp_v3_3mo_date":"2022-02-15","age":"60","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-21 10:13:22","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"1","erep_onset_date":"2022-02-17 10:13","erep_resolution_date":"2022-02-24 10:13","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Pt fell on ice and injured surgical knee. As a result of this she has to have a anesthetized manipulation on 2/24. Will upload paperwork regarding the manipulation once that is available.","erep_action_taken":"Pt still wants to continue with study. ","erep_outcome":"Had to reschedule 3 month follow up appointment, but she does intend to continue with the study procedures after recovering from the manipulation. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-03-11 10:14:49","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Pt clothing was not maneuverable around knees or shoulders. Did both PPTs and temporal stimulation on top of clothing. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30613":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states he's not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30614":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"75","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that his surgery has moved to 04/2022. Sent them a copy of the consent form and will reach out to them again closer to their new surgery date. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30615":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30616":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"58","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient sent an email stating that it's too long of a drive for him to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30617":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-21","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Canceled surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30618":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-21","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt stated \"you're asking a lot\" and was not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30619":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30620":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-21","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt had sx moved up. Ineligible to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30621":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-21","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Working and does not have time for study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30622":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-21","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt's wife stated her husband was not interested because he works and he already had to take off a few hours for the pre-op class. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30623":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Issue related to commute distance. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30624":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt's husband is a stroke pt and she can't participate due to time involved. Pt would have loved to be involved otherwise. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30625":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated \"too time consuming\" ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30626":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"58","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Douglas states that he's had enough of this place. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30627":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states he has no time because he's still working full time and getting ready for his surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30628":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"66","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he babysits and does not have time to come in for the visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30629":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"76","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient isn't really interested and states that her English really isn't fluent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30630":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Emailed consent; unable to contact afterwards.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30631":{"redcap_data_access_group":"rush_university_me","main_record_id":"10204","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-22","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke and emailed consent 10/25/2021. Resent consent 10/26, pt states would like wife to look it over as he is usually always driving. ","obtain_date":"2021-10-26","date_and_time":"2021-10-27 06:43","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-10","sp_v1_preop_date":"2021-11-01","sp_v2_6wk_date":"2021-12-22","sp_v3_3mo_date":"2022-02-09","age":"60","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-28 11:35:47","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt came in a few days outside of 3 month visit timeline","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-28 13:58:14","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 wk survey set completed a few days outside of visit window after multiple calls and emails sent. ","erep_protdev_caplan":"Pt continues participation.","erep_rel_covid19":"0"}}},"30632":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt said she was not interested after hearing study activities. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30633":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states they are not willing to come to Chicago. Opted for outpatient at Oak Brook in order to not come to Chicago.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30635":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30634":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too soon to surgery date to schedule ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30636":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Uncomfortable with MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30637":{"redcap_data_access_group":"rush_university_me","main_record_id":"10208","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-27","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"10/26 Called back at scheduled time, did not pick up. Left VM\r\n10/27 Called did not get through","obtain_date":"2021-10-29","date_and_time":"2021-10-29 11:46","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-05","sp_v1_preop_date":"2021-11-03","sp_v2_6wk_date":"2021-12-17","sp_v3_3mo_date":"2022-02-04","age":"55","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-14 08:34:51","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Due to scheduling issues, subject did not come in for baseline visit. Did not complete baseline functional testing, QST, or imaging. Did complete baseline surveys and blood draw. Kept in study according to supervisor instructions.","erep_protdev_caplan":"Completed baseline surveys and day of surgery blood draw. ","erep_rel_covid19":"0"}}},"30638":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Difficulty with commute to Chicago location","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30639":{"redcap_data_access_group":"rush_university_me","main_record_id":"10214","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-04","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient states he wants to participate, but did not have time to speak today. He asked that I call back Monday to go over and sign consent. RA called to go over consent","obtain_date":"2021-11-09","date_and_time":"2021-11-09 08:01","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-21","sp_v1_preop_date":"2021-11-30","sp_v2_6wk_date":"2022-09-01","sp_v3_3mo_date":"2022-10-21","age":"70","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-18 11:49:24","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's surgery date was changed from 01/12/2022 to 04/12/2022 which would put the baseline visit outside of the protocol range. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30640":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 11/1/2021. Pt called back stating they would like to be taken off call list. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30641":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30642":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient not interested in participating","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30643":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states study sounds interesting and they would be interested in participating. Prefers call end of November beginning of December due to sx reschedule. F/u 12/6 and pt did not want to participate due to lack of time with work and staying too busy for a research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30644":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\n07/7/22MB is full\r\n07/08/22-MB is full \r\n07/14/22 MB full ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30645":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30646":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"54","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30647":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"61","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30648":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states that she does not have the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30649":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30650":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated they do not have time prior to sx to participate in this research study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30651":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states she is unable to fit in person study visit in her schedule prior to surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30652":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30653":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30654":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to come into Chicago for visit, Pt stated he \"lives in the suburbs\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30655":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30656":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate stated they have tooth decay and are unsure if they will even have surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30657":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate due to distance. Also declined when lyft offered. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30658":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated she is going out of town shortly after surgery and does not want to participate (after RA explained still able to complete the 2 in person study visits with the timing). ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30659":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined participation due to how long it takes to get to Chicago.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30660":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30661":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 2- 11/8/2021. lvm 3 11/29.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30662":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. spoke, participant is concerned with uses of PHI. Prefers to have information emailed to her. Pt stated would call back if interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30663":{"redcap_data_access_group":"rush_university_me","main_record_id":"10213","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-03","screening_age":"35","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM - 11/1\r\n11/3 - sent info\r\n11/5 - LVM","obtain_date":"2021-11-08","date_and_time":"2021-11-08 15:06","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-24","sp_v1_preop_date":"2021-11-17","sp_v2_6wk_date":"2022-03-07","sp_v3_3mo_date":"2022-04-24","age":"35","sex":"2","genident":"2","ethnic":"2","dem_race":"3|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30664":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Autistic step-son, does not have the time to come in for study visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30665":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-01","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Pt received mailed copy of consent. Pt declined participation due to time required to participate and MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30666":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-01","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated they do not have time to come in for study. They think they'd possibly do it if in Oak Brook clinic. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30667":{"redcap_data_access_group":"rush_university_me","main_record_id":"10209","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-02","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-02","date_and_time":"2021-11-02 13:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-14","sp_v1_preop_date":"2021-12-03","sp_v2_6wk_date":"2022-01-25","sp_v3_3mo_date":"2022-03-15","age":"54","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2022-06-13","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Have attempted to contact participant several times with no call back. Participant has missed 3 and 6 month surveys. ","sp_data_site":"N/A"},"30668":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30609":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30669":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30670":{"redcap_data_access_group":"rush_university_me","main_record_id":"10210","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-02","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Sent study info - call back later.\r\nCalled back, she didn't answer","obtain_date":"2021-11-03","date_and_time":"2021-11-03 16:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-12-10","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt requested to not be contacted anymore via phone or email. ","sp_data_site":"N/A"},"30671":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate stated they live very far way. RA offered lyft and participant mentioned right hip not doing well and they're concerned with how ambulatory they will be. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30672":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"RA mailed consent form. Pt stated they are rescheduling knee sx due to aortic procedure on 12/10. RA stated they would call them 2022. lvm 2022. Pt lvm. RA called back and lvm 5/26. Pt does not have time prior to sx.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30673":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30674":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30675":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"55","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form. \r\nPatient is having 2nd knee done on 12/17/2021. If 2nd surgery is postponed, she will reconsider participating. Will reach out to her 1st week of December. \r\nLVM\r\nPatient is having her 2nd surgery next week and will not be able to take part in the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30676":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"spoke briefly and requested call at later time. lvm. lvm 11/9. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30677":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"lvm. Spoke and emailed consent. Pt stated after looking over consent they do not have the time to come in to do a study visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30678":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 11/15/2021. lvm 11/29. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30679":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"lvm. lvm 2 11/15. Pt lvm stating they are not interested in participating in a study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30680":{"redcap_data_access_group":"rush_university_me","main_record_id":"10232","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-16","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-22","date_and_time":"N/A","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-10","sp_v1_preop_date":"2021-12-07","sp_v2_6wk_date":"2022-01-21","sp_v3_3mo_date":"2022-03-11","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30681":{"redcap_data_access_group":"rush_university_me","main_record_id":"10216","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-04","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-09","date_and_time":"2021-11-09 11:35","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-18","sp_v1_preop_date":"2021-11-09","sp_v2_6wk_date":"2021-12-30","sp_v3_3mo_date":"2022-02-17","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-24 10:49:27","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Failed to record location of greater pain","erep_protdev_caplan":"Unable to correct for baseline, will record if pt comes for 3 mo","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-02-21 09:47:18","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Unable to obtain blood at 3 mo visit. Participant has very difficult veins and did not tolerate needles well. ","erep_protdev_caplan":"No corrective action available ","erep_rel_covid19":"0"}}},"30682":{"redcap_data_access_group":"rush_university_me","main_record_id":"10247","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-08","screening_age":"46","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Mailbox is full. \r\nLVM","obtain_date":"2021-12-08","date_and_time":"2021-12-08 12:20","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-17","sp_v1_preop_date":"2021-12-13","sp_v2_6wk_date":"2022-01-28","sp_v3_3mo_date":"2022-03-18","age":"46","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2022-08-10","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Participant has been non compliant and refusing to complete surveys. I have made numerous calls to try and reach out to her with no call back. ","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-07 10:57:49","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"1","erep_onset_date":"2022-01-06 05:30","erep_resolution_date":"2022-03-09 15:18","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Patient was asked to come in for possible infection. Once she was seen by surgeon she was scheduled for surgery due to a postoperative periprosthetic joint infection for a minimally invasive left knee irrigation debridement and modular liner exchange. ","erep_action_taken":"Patient wishes to continue with their participation in the study, but will only complete surveys. ","erep_outcome":"Update 3/15/22: Patient went in for an office visit and was noticed to have delayed healing on the operative knee. Patient decided to undergo a left knee superficial wound closure.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-03-15 10:12:24","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Patient never completed 6 week surveys. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30683":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30684":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt sounded very hesitant on phone. RA emailed consent. Pt emailed back stating they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30685":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt declined after speaking with primary care doctor, husband and daughter involved in patient safety. Pt stated anything QST's involving arms were concerning because she easily gets blood spots. Pt stated she wanted to be able to do study for Dr. Jacobs, but it is not the best option for her at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30686":{"redcap_data_access_group":"rush_university_me","main_record_id":"10226","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-04","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-18","date_and_time":"2021-11-18 11:48","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-10","sp_v1_preop_date":"2021-11-18","sp_v2_6wk_date":"2022-01-21","sp_v3_3mo_date":"2022-03-11","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30687":{"redcap_data_access_group":"rush_university_me","main_record_id":"10218","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-04","screening_age":"44","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke briefly. Pt requested information to be emailed. RA stated would follow up next week. ","obtain_date":"2021-11-10","date_and_time":"2021-11-10 15:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-04","sp_v1_preop_date":"2021-11-22","sp_v2_6wk_date":"2022-01-15","sp_v3_3mo_date":"2022-03-05","age":"44","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-04 08:12:57","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"Pt continues participation w/out 6 wk visit. ","erep_outcome":"Pt completed 3 mos. survey set. ","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Pt unable to come in or complete 6 wk survey set due to health issues with gallbladder.","erep_protdev_caplan":"Pt wishes to continue participation after having gallbladder removed. ","erep_rel_covid19":"0"}}},"30688":{"redcap_data_access_group":"rush_university_me","main_record_id":"10217","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-05","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt had call coming up. Requested info emailed to her and stated she'd be interested participating. Caled 11/8. Set up time to call 11/9.","obtain_date":"2021-11-09","date_and_time":"2021-11-09 15:39","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-23","sp_v1_preop_date":"2021-11-22","sp_v2_6wk_date":"2022-01-04","sp_v3_3mo_date":"2022-02-22","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-28 08:56:32","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 mos. visit outside of timeline","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30689":{"redcap_data_access_group":"rush_university_me","main_record_id":"10219","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-11","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-11","date_and_time":"2021-11-11 09:39","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-23","sp_v1_preop_date":"2021-11-15","sp_v2_6wk_date":"2022-01-04","sp_v3_3mo_date":"2022-02-22","age":"60","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-16 11:37:39","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's 3 month visit was outside of protocol range. ","erep_protdev_caplan":"n/a","erep_rel_covid19":"0"}}},"30690":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate. Stated they do not have time to come in for visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30691":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-08","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Pt stated that they were not comfortable with the MRI and wanted to focus on surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30692":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt did not want to learn more about the study and declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30693":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Running out of time prior to surgery. Pt mentioned they were trying to figure out workmans comp. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30694":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM. Unable to contact pt.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30695":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30696":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30697":{"redcap_data_access_group":"rush_university_me","main_record_id":"10225","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-10","screening_age":"49","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-17","date_and_time":"2021-11-17 10:36","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-13","sp_v1_preop_date":"2021-12-03","sp_v2_6wk_date":"2022-01-24","sp_v3_3mo_date":"2022-03-14","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30698":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was on their way out and stated that they would call me back at a later time. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30699":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is in a lot of pain and just wants to focus on getting everything ready for surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30700":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"\"Good morning, \r\nAfter looking through the attached information I have decided that I do not wish to participate in the study.\r\nThe time commitment is the major hurdle for me, I just do not see a way that I would be able to participate.\r\nThank you for understanding,\"\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30701":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-06","screening_age":"48","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form to look over. \r\nPatient states that she will have to pass on participating in our study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30702":{"redcap_data_access_group":"rush_university_me","main_record_id":"10224","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-10","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke w/ participant. She sounded willing, but hesitant regarding MRI. Emailed consent to look over. ","obtain_date":"2021-11-16","date_and_time":"2021-11-16 11:44","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-06","sp_v1_preop_date":"2021-12-01","sp_v2_6wk_date":"2022-01-17","sp_v3_3mo_date":"2022-03-07","age":"78","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-28 14:06:36","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 week survey set completed a few days outside of window","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-28 14:09:09","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 mos surveys completed a few days outside of protocol window","erep_protdev_caplan":"Pt continues participation","erep_rel_covid19":"0"}}},"30703":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30704":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-11","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke briefly and mentioned lyft as they stated they cannot find a ride here. Sounded hesitant on phone. RA emailed consent. Pt declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30705":{"redcap_data_access_group":"rush_university_me","main_record_id":"10236","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-11","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-30","date_and_time":"2021-11-30 14:31","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-13","sp_v1_preop_date":"2021-11-30","sp_v2_6wk_date":"2022-01-24","sp_v3_3mo_date":"2022-03-14","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30706":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that because of work they do not have the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30707":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-12","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is Spanish speaking only. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30708":{"redcap_data_access_group":"rush_university_me","main_record_id":"10239","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-01","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-02","date_and_time":"2021-12-02 09:29","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-17","sp_v1_preop_date":"2021-12-06","sp_v2_6wk_date":"2022-01-28","sp_v3_3mo_date":"2022-03-18","age":"66","sex":"N/A","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2022-01-07","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient sent an email stating that he has too much going on and felt that he could not continue with the study. ","sp_data_site":"N/A"},"30709":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-01","screening_age":"50","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient needs to discuss it with her husband. Sent a copy of the consent form for them to look over. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30710":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-12","screening_age":"46","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30711":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-12","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30712":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-15","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined to participate. Nurse informed pt may be interested in participating in study, RA called back and LVM 12/3. LVM 12/6.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30713":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-15","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":" Pt declined to participate due to time commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30714":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-16","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient called back to let me know that he is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30715":{"redcap_data_access_group":"rush_university_me","main_record_id":"10227","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-16","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient states she wants to participate, but needs me to call her after work hours. ","obtain_date":"2021-11-18","date_and_time":"2021-11-18 15:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-21","sp_v1_preop_date":"2021-12-09","sp_v2_6wk_date":"2022-02-01","sp_v3_3mo_date":"2022-03-22","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30716":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-06","screening_age":"71","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of consent to look over and will call him back after the thanksgiving holiday.\r\nPatient states that he has too much work before surgery and will not be able to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30717":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-16","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30718":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30719":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 2- stated amount of time for in person visit as pt lvm stating unsure of timing. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30720":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke briefly, unable to contact after. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30721":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Travel related issue","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30722":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30723":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Not fluent in English","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30724":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"42","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt very hesitant due to amount of time for study visit. Pt mentioned they will call if interested in participating. They declined having additional information sent to them and stated to take off call list if they do not call back. Pt did not contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30725":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30726":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30727":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Not fluent in English ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30728":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt stated procedure was cancelled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30729":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined participation due to time traveling to MOR in Chicago. Stated would participate if study visit were in suburbs. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30730":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"64","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that this is too far of a drive for him. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30731":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"11/19 LVM\r\n11/22 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30732":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was very angry and did not want to be bothered. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30733":{"redcap_data_access_group":"rush_university_me","main_record_id":"10230","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-22","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-22","date_and_time":"2021-11-22 09:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-07","sp_v1_preop_date":"2021-12-03","sp_v2_6wk_date":"2022-01-18","sp_v3_3mo_date":"2022-03-08","age":"56","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-30 11:39:53","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt 3 mos survey set completed about 2 days outside of window","erep_protdev_caplan":"Pt continues participation","erep_rel_covid19":"0"}}},"30734":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30735":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30736":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-06","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30737":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-06","screening_age":"52","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient states that he wants to reach out to Dr. Nam to verify the study, he will reach out if he is indeed interested. \r\nNever heard back from the patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30738":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVMs. Unable to contact after initial phone call (pt at appt).","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30739":{"redcap_data_access_group":"rush_university_me","main_record_id":"10233","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-23","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt expressed interest. RA emailed consent to review. Unable to speak when called 11/29. Requested call back.","obtain_date":"2021-11-30","date_and_time":"2021-11-30 10:01","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-13","sp_v1_preop_date":"2021-12-06","sp_v2_6wk_date":"2022-01-24","sp_v3_3mo_date":"2022-03-14","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30740":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-29","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30741":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Expressed interest in study, but needs to reschedule surgery due to smoking. Requested call back end of Jan\r\nSx never rescheduled","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30742":{"redcap_data_access_group":"rush_university_me","main_record_id":"10240","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-30","screening_age":"56","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"11/30 - Pt called me back. Requested call back tomorrow morning at 8:30\r\n12/1 - Expressed interest. Sent info. He signed and sent back. Plan to call tomorrow. ","obtain_date":"2021-12-02","date_and_time":"2021-12-02 13:20","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-12-28","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"Subject rescheduled surgery to UofC. May be reconsented there. ","sp_data_site":"N/A"},"30743":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"11/30 - LVM\r\n12/7 - LVM\r\n12/13 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30744":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-01","screening_age":"73","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she has too much going on at the moment and wants to focus on just getting her surgery done. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30745":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-06","screening_age":"52","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left multiple messages without a call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30746":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-02","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Declined participating for this knee, considering doing it for the second one","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30747":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-02","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt hesitant regarding timing. Stated would reach out if able to do study. Pt emailed stating they do not wish to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30748":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-02","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt not eligible for study due to second knee. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30750":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Did not want to do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30751":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Spoke and emailed consent. Stated available likely after 12/19 or 12/20. f/u on 12/10. Pt hesitant due to scheduling. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30752":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"42","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Teacher, requests calls after 3pm; unable to speak during initial call because in class. Pt states not interested coming into the city 12/13/2021. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30753":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30754":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"-Difficulty with time constraints\r\n-Unable to do MRI due to back issues","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30755":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30756":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Difficulties with commute","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30757":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Wife stated would have husband call if interested. RA did not hear from pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30758":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"expressed interest, stated unsure if able to participate due to timing. lvm 12/7. lvm 12/14. lvm 12/15. Pt unable to participate prior to sx; would like to participate if he were able to next year. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30759":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-06","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30760":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-06","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she has way too much going on and way too much to do prior to her surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30761":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient's surgery is this Friday and has no time to come in. Patient states she is having a 2nd surgery but is unsure when it will happen. Will contact her after her post op appointment to touch base. \r\nLVM\r\nPt was about to have therapy, will call me back after. \r\nPt not sure about 2nd surgery, she is in a lot of pain after 1st surgery. Will reach out to her in a few months to see how she feels about having 2nd knee done. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30762":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVMS unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30763":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. Pt lvm 12/8 stating he was too busy to take part in a research study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30764":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Issue related to commute","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30765":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Unable to do it for this surgery - considering doing for the second knee","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30766":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt stated she was interested in particiating, but did not know her work schedule until day of. lvm 12/14. Pt unable to schedule study visit prior to surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30767":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30768":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact. LVM.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30769":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM, unable to contact pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30770":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"States the study would be too much with cancer treatments and other appointments. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30771":{"redcap_data_access_group":"rush_university_me","main_record_id":"10248","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-09","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-09","date_and_time":"2021-12-09 10:24","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-17","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-01-28","sp_v3_3mo_date":"2022-03-18","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2021-12-15","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Subject canceled baseline visit and was unable to reschedule before surgery. ","sp_data_site":"N/A"},"30772":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-15","screening_age":"58","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPatient was waiting for a phone call and could not speak. Sent a copy of consent form for him to look over. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30773":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30774":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30775":{"redcap_data_access_group":"rush_university_me","main_record_id":"10262","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-09","screening_age":"83","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-20","date_and_time":"2021-12-20 14:00","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"83","sex":"N/A","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2021-12-29","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"Surgery canceled and will not be rescheduled due to medical concerns","sp_data_site":"N/A"},"30776":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"attempted to contact; pt hung up. Lvm 12/20/2021. Voicemail went to a person other than pt with same last name. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30777":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"lvm. Spoke and emailed consent. Not sure due to availability. Pt emailed stating unable to participate due to time of study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30778":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt not interested in coming to chicago and does not have time to participate in study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30779":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30780":{"redcap_data_access_group":"rush_university_me","main_record_id":"10261","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-10","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-20","date_and_time":"2021-12-20 12:38","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-26","sp_v1_preop_date":"2022-01-04","sp_v2_6wk_date":"2022-03-09","sp_v3_3mo_date":"2022-04-26","age":"68","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2022-02-28","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Missed blood draw appointment with no contact, and after appointment attempted to call on three separate occasions. No response. Lost to follow-up. ","sp_data_site":"N/A"},"30781":{"redcap_data_access_group":"rush_university_me","main_record_id":"10249","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-10","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-10","date_and_time":"2021-12-10 10:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-26","sp_v1_preop_date":"2022-01-11","sp_v2_6wk_date":"2022-03-09","sp_v3_3mo_date":"2022-04-26","age":"62","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30782":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated did not have time to complete study visit. Was thinking they'd even need to get the pt bag of supplies from medical store the day of. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30783":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-13","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30784":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-13","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30785":{"redcap_data_access_group":"rush_university_me","main_record_id":"10251","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"56","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"12/13 - Called back, expressed interest, sent info. Said she would call me back","obtain_date":"2021-12-14","date_and_time":"2021-12-14 11:33","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-23","sp_v1_preop_date":"2021-12-21","sp_v2_6wk_date":"2022-02-03","sp_v3_3mo_date":"2022-03-24","age":"56","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30786":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-13","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"12/20 - Called me back, expressed interest. Hesitation due to ongoing health concerns. Sent consent doc\r\n1/3/22 - LVM. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30787":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-13","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30788":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 1/7/2022. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30789":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate, stated they previously participated in a study and they currently have no time. Pt stated they appreciate the work in research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30790":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"84","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is really stressed out about upcoming surgery and doesn't want to have to worry about anything else. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30791":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPt requested a copy of the consent form to look over. \r\nLVM with no call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30792":{"redcap_data_access_group":"rush_university_me","main_record_id":"10255","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-16","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-16","date_and_time":"2021-12-16 15:58","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-03","sp_v1_preop_date":"2021-12-22","sp_v2_6wk_date":"2022-02-14","sp_v3_3mo_date":"2022-04-03","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30793":{"redcap_data_access_group":"rush_university_me","main_record_id":"10260","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-14","screening_age":"48","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt very interested in A2CPS. Stated they have a lot of experience in pain and has a pain condition. RA will double check eligibility information. RA emailed info to pt. RA read over consent form with pt and pt stated would sign shortly. ","obtain_date":"2021-12-20","date_and_time":"2021-12-20 11:32","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-20","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-03-03","sp_v3_3mo_date":"2022-04-20","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-01-21","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Patient continued to be unable to set up baseline visit due to concerns of other health issues. ","sp_data_site":"N/A"},"30794":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact (lvms)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30795":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt expressed interest 12/15. emailed consent. Pt currently on vacation requested call next week. After reviewing consent pt emailed they do not want to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30796":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient requested a copy of consent form to look over. \r\nLVM with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30797":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient only speaks polish. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30798":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-06","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30799":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-15","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient cancelled her surgery with Dr. Berger because he does not except her insurance. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30800":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-15","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Mobile number was daughters. Spoke with pt and they asked if RA could speak with their daughter because their English was better. RA stated study questionnaires were in English and we are not currently enrolling those unable to complete study components in English. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30801":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30802":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30803":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30804":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states they are going to Mexico after their surgery and would not be able to make visits.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30805":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt lvm 12/16 stating they are already participating in a study and would not like to participate in another at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30806":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30807":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"83","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact after emailing and mailing consent (calledx2 to f/up). ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30808":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt stated unwilling to do MRI at UIC and is afraid of exposure to Covid prior to sx. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30809":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-17","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt expressed interest. RA emailed consent. Answered question regarding eligibility 12/28. lvm 12/29/2022. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30810":{"redcap_data_access_group":"rush_university_me","main_record_id":"10273","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-20","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt was very interested in participating. Requested copy of consent mailed and emailed. Pt unable to find mailed consent, requested call Monday. lvm 1/3","obtain_date":"2022-01-13","date_and_time":"2022-01-13 12:15","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-26","sp_v1_preop_date":"2022-01-13","sp_v2_6wk_date":"2022-03-09","sp_v3_3mo_date":"2022-04-26","age":"76","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30811":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-23","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated they live in the suburbs and it would be a very long trip. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30812":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-23","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30814":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-28","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30815":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-28","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30816":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Doesn't want the government or anybody to know any of her business. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30817":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-28","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM's. Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30818":{"redcap_data_access_group":"rush_university_me","main_record_id":"10265","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-28","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt expressed interest. RA emailed info. ","obtain_date":"2021-12-29","date_and_time":"2021-12-29 13:29","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-20","sp_v1_preop_date":"2022-01-13","sp_v2_6wk_date":"2022-03-03","sp_v3_3mo_date":"2022-04-20","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30819":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-29","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"12/29: Expressed interest, sent consent document, made plans to call back next week. Requested evening times for call back\r\n1/4 - LVM\r\n1/6 - Did not pick up phone","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30820":{"redcap_data_access_group":"rush_university_me","main_record_id":"10271","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-29","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Expressed interest, sent study info, plan to call back next week ","obtain_date":"2022-01-11","date_and_time":"2022-01-11 13:07","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-04","sp_v1_preop_date":"2022-01-18","sp_v2_6wk_date":"2022-03-18","sp_v3_3mo_date":"2022-05-04","age":"53","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30821":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-29","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"12/29 - LVM\r\n1/5 - Requested call after 2pm \r\n1/5 - Called back, lvm\r\n1/13 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30822":{"redcap_data_access_group":"rush_university_me","main_record_id":"10269","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-29","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"12/29 - LVM\r\n1/5 - Sent consent info","obtain_date":"2022-01-06","date_and_time":"2022-01-06 11:03","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-04","sp_v1_preop_date":"2022-01-21","sp_v2_6wk_date":"2022-03-18","sp_v3_3mo_date":"2022-05-04","age":"58","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30823":{"redcap_data_access_group":"rush_university_me","main_record_id":"10267","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-05","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Need to verify a few things with Dr. Gerlinger before consenting patient. ","obtain_date":"2022-01-05","date_and_time":"2022-01-05 09:54","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-02","sp_v1_preop_date":"2022-01-28","sp_v2_6wk_date":"2022-06-13","sp_v3_3mo_date":"2022-08-02","age":"81","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-18 11:36:39","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's surgery date was changed from 02/07/2022 to 04/19/2022 which would put the baseline visit outside of the protocol range. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30824":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 1/14/2022. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30825":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt stated they were not interested in study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30826":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Not fluent in English","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30827":{"redcap_data_access_group":"rush_university_me","main_record_id":"10266","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-04","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-04","date_and_time":"2022-01-04 15:39","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-20","sp_v1_preop_date":"2022-01-12","sp_v2_6wk_date":"2022-03-03","sp_v3_3mo_date":"2022-04-20","age":"66","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30828":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30829":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt initially hesitant, spoke and emailed consent. Unable to contact after emailing consent (lvm)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30830":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt stated they were not interested in research at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30831":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that her surgery has been cancelled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30832":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unable to commute to Rush","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30833":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Is sick, plan to reschedule surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30834":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM. Pt cx sx and is having hip arthroplasty. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30835":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-14","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Have contacted patient several times with no answer and mailbox is full. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30836":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"71","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30837":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"64","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30838":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"80","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is really concerned with her age and how bad things are with covid, she does not want to risk it. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30839":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient states that she is going through a lot at the moment due to her husband being sick and everything with covid. She has temporarily cancelled her surgery but would like for us to stay in touch for when she reschedules. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30840":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate, stated they're already enrolled in a study and are starting to feel overwhelmed. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30841":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-07","screening_age":"54","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient was on her way to work and asked that I call her back before 10am. \r\nPatient states that she is still in bed and will call me back when she fully wakes up. \r\nPatient states that there are issues with an EKG she just had and her surgery will be cancelled. She has too much going on at the moment and does not want to be contacted again. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30842":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30843":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-07","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPatient states that he lives too far. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30844":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Sx canceled. Plan to reschedule","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30845":{"redcap_data_access_group":"rush_university_me","main_record_id":"10268","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-05","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"1/5 - Interested, sent info\r\nAsked to call back tomorrow","obtain_date":"2022-01-06","date_and_time":"2022-01-06 09:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-14","sp_v1_preop_date":"2022-01-11","sp_v2_6wk_date":"2022-02-25","sp_v3_3mo_date":"2022-04-14","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-01-13 13:20:24","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Subject unable to come in for baseline visit and did not complete baseline functional testing, QST, or imaging. This is because the baseline visit was scheduled for the same day as a different surgical procedure. ","erep_protdev_caplan":"Subject will complete baseline surveys and day of surgery blood draw. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-03-31 12:37:02","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Pt no-show for 6 wk blood draw and could not be reached to discuss surveys. When I did get through to her briefly, stated she was still interested in participating and requested call later. Did not get through later and no response to voicemail.","erep_protdev_caplan":"Plan to not do 6 week surveys or blood draw, and attempt to contact participant again at 3 months. ","erep_rel_covid19":"0"}}},"30846":{"redcap_data_access_group":"rush_university_me","main_record_id":"10270","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-05","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke and emailed consent, pt expressed interest","obtain_date":"2022-01-07","date_and_time":"2022-01-07 14:25","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-25","sp_v1_preop_date":"2022-01-11","sp_v2_6wk_date":"2022-03-08","sp_v3_3mo_date":"2022-04-25","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30847":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"82","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is not interested and does not want to be contacted again. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30848":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to commute to Rush","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30849":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"54","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states that he lives too far from the city and also has a lot to do before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30850":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"spoke and emailed consent, req call back around 3pm next day. lvm 1/6. Spoke briefly 1/7, asked for call back later. Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30851":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to commute to Rush for study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30852":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-06","screening_age":"52","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that as much as he would like to help with research that his time is very limited at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30853":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"lvm. Pt declined to participate due to time required to work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30854":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30855":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states she has a lot to deal with prior to surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30856":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-07","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30857":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-07","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Ptinterested, but not eligible to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30858":{"redcap_data_access_group":"rush_university_me","main_record_id":"10272","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-11","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"spoke and emailed consent form. lvm 1/12/2022","obtain_date":"2022-01-13","date_and_time":"2022-01-13 08:36","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-20","sp_v1_preop_date":"2022-01-18","sp_v2_6wk_date":"2022-03-03","sp_v3_3mo_date":"2022-04-20","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-22 11:30:42","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 wk visit, closer to 8 weeks","erep_protdev_caplan":"Continue participation ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-05-17 15:16:55","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 month visit a few days outside of timeline. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2022-06-28 14:45:55","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt 3 mos in person visit a few days outside of window","erep_protdev_caplan":"Pt continues participation","erep_rel_covid19":"0"}}},"30859":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"71","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient called me back. Asked that I send them a copy of the consent form to look over and will call them back tomorrow. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30860":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-12","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30861":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-12","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to come to Rush for study visit","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30862":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-12","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Said no to MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30863":{"redcap_data_access_group":"rush_university_me","main_record_id":"10280","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-31","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-31","date_and_time":"2022-01-31 15:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-07","sp_v1_preop_date":"2022-02-03","sp_v2_6wk_date":"2022-03-21","sp_v3_3mo_date":"2022-05-07","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30864":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-21","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. \r\n\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30865":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"46","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt asked that I call her back tomorrow morning. \r\nLVM\r\nPt requested a copy of the consent form to look over. \r\nLeft several messages with no response. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30866":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM\r\nPt called back and left voicemail asking that I call her after school hours. \r\nPatient states that she's working full time until day of surgery and does not have the time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30867":{"redcap_data_access_group":"rush_university_me","main_record_id":"10278","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-21","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt states they will sign consent on Sunday. ","obtain_date":"2022-01-24","date_and_time":"2022-01-24 15:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-04","sp_v1_preop_date":"2022-01-26","sp_v2_6wk_date":"2022-03-18","sp_v3_3mo_date":"2022-05-04","age":"63","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30868":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30869":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Jan - LVM x 3\r\n4/5 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30870":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"1/13 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30871":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30872":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30873":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"71","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is being seen at Munster.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30874":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is spanish speaking. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30875":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"1/13 - LVM\r\n1/18 - LVM\r\n1/24 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30876":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30877":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"71","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states that they don't have the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30878":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30879":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"1/13 - LVM\r\n1/18 - LVM\r\n1/24 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30880":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"1/13 - LVM\r\n1/18 - Expressed interest, hesitant about time commitment and possible rescheduling of surgery, will reach back out if interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30881":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated they do not have time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30882":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was interested. RA emailed consent to read over. lvm 1/19/2022. Unable to contact after sending consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30883":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states they live far away from Rush and short staffed with work therefore unable to participate in research that is in person.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30884":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-18","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30885":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-18","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"1/18 - LVM. Called me back, expressed interest, sent study info. \r\n1/21 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30886":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"1/19 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30887":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"81","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30889":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30890":{"redcap_data_access_group":"rush_university_me","main_record_id":"10274","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-19","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-19","date_and_time":"2022-01-19 12:05","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-16","sp_v1_preop_date":"2022-01-25","sp_v2_6wk_date":"2022-03-30","sp_v3_3mo_date":"2022-05-16","age":"N/A","sex":"1","genident":"1","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30891":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was at an appt and did not have time to speak. Requested a copy of the consent form to look over. \r\nPatient called me back and states that after reviewing the consent form, she's not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30892":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states husband is recovering from stem cell treatment and they do not have the time currently. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30893":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt hung up after answering phone. Number disconnected on attempt 2.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30894":{"redcap_data_access_group":"rush_university_me","main_record_id":"10276","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-19","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt interested in study. RA emailed consent and will f/up. lvm 1/21","obtain_date":"2022-01-24","date_and_time":"2022-01-24 07:15","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-11","sp_v1_preop_date":"2022-01-26","sp_v2_6wk_date":"2022-03-25","sp_v3_3mo_date":"2022-05-11","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30895":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"1/19 - Called, spoke, sent info. Seems somewhat confused.\r\n1/25 - LVM\r\n1/31 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30896":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt stated there was too much involved","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30897":{"redcap_data_access_group":"rush_university_me","main_record_id":"10275","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-19","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt hesitant w/ all study procedures, but expressed interest in study. RA emailed consent.","obtain_date":"2022-01-21","date_and_time":"2022-01-21 12:50","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-02","sp_v1_preop_date":"2022-01-27","sp_v2_6wk_date":"2022-03-16","sp_v3_3mo_date":"2022-05-02","age":"59","sex":"2","genident":"2","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30898":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-20","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30899":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-20","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30900":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-20","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"1/31 - Called, got through, was told that the number I called was wrong and was given a different number\r\n1/31 - Called, LVM at new number\r\n2/8 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30901":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"50","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Pt had to get to therapy, but requested a copy of the consent form to look over. \r\nPatient states that she lives too far and has no time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30902":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"52","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPt requested a copy of the consent form to look over. \r\nPatient has been on vacation and hasn't looked at the consent. They will look at it tonight and get back to me tomorrow. \r\nPatient never contacted me regarding study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30903":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt requested a copy of the consent form to look over. \r\nPt sent an email stating that after reviewing the consent form, she is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30904":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Pt was at work and couldn't speak. \r\nLVM\r\nPt asked that I call her back at 4:30. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30905":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"68","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPatient is interested but would like a copy of the consent form to look over. \r\nPatient will call me back after work. \r\nPatient asked that I mail her a copy of the consent form to look over and will touch base next week. \r\nLVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30906":{"redcap_data_access_group":"rush_university_me","main_record_id":"10277","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-24","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-24","date_and_time":"2022-01-24 12:52","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-17","sp_v1_preop_date":"2022-02-11","sp_v2_6wk_date":"2022-03-31","sp_v3_3mo_date":"2022-05-17","age":"59","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30907":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"1/24 - Spoke, seemed extremely confused. Unclear about study and worried about transportation for surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30908":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states that its too much for her to be traveling back and forth. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30909":{"redcap_data_access_group":"rush_university_me","main_record_id":"10284","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-09","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-09","date_and_time":"2022-02-09 15:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-17","sp_v1_preop_date":"2022-02-15","sp_v2_6wk_date":"2022-03-31","sp_v3_3mo_date":"2022-05-17","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2022-05-24","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient is currently going through a lot and is also planning on traveling outside the country. No longer has time to be in the study or do study related activities. ","sp_data_site":"N/A"},"30910":{"redcap_data_access_group":"rush_university_me","main_record_id":"10279","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-24","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt expressed interest in study, RA emailed consent. unable to speak at call back.","obtain_date":"2022-01-28","date_and_time":"2022-01-28 08:53","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-16","sp_v1_preop_date":"2022-02-07","sp_v2_6wk_date":"2022-03-30","sp_v3_3mo_date":"2022-05-16","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-28 14:59:24","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 week surveys are about 1 wk outside of window","erep_protdev_caplan":"Pt continues participation","erep_rel_covid19":"0"}}},"30911":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt does not like coming to Chicago but very friendly on phone and willing to answer surveys. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30912":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt does not like to come into Chicago and also is unable to leave long because a loved one has a seizure disorder. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30913":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient req call at later time 1/24. Pt requested call at later time 1/31. voicemail full 5pm 1/31. Unable to contact.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30914":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke w/ pt. Very interested. RA emailed consent and will call back. Pt stated they were no longer interested after reviewing consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30915":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke briefly, requested call back at later time. Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30916":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated they live about an hour away and are not willing to come in for the study visits, also stated they are unable to take off work for visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30917":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt not willing to come into Chicago for study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30918":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Objection to blood draw","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30919":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Not English fluent","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30920":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-25","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30921":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-25","screening_age":"64","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"1/25 - LVM\r\n1/31 - Called, seemed interested but hesitant, requested I send info\r\n2/2 - Called, hadn't looked at info, requested that I let him call me back if interested\r\nCanceled Surgery\r\nRescheduled surgery \r\n2/21 - Called me back, expressed interest, very hesitant about MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30922":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unwilling to do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30923":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"1/27 - Called me back, sent info\r\n1/28 - Called back, re-sent info. Said she had not received it.\r\n1/31 - Did receive it, wanted more time to read over, thinks she does want to participate. Plan to call back on Wednesday\r\n2/2 - Call back in an hour. Called back, no answer\r\n2/3 - She called, missed it, I called back ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30924":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Stated he is unable to do MRIs","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30925":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Participant lvm 1/28 stating they are not interested in participating in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30926":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt did not want to hear about research study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30927":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unwilling to do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30928":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30929":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-28","screening_age":"35","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Self disclosed that he is not MRI eligible due to shrapnel ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30930":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-28","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"1/28 - LVM\r\n2/1 - LVM\r\n2/8 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30931":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-28","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt self disclosed that she is unable to do an MRI due to implant","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30932":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-28","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30933":{"redcap_data_access_group":"rush_university_me","main_record_id":"10287","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-28","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"1/28 - LVM\r\n2/1 - LVM\r\n2/8 - Spoke, expressed interest, plan to call ","obtain_date":"2022-02-14","date_and_time":"2022-02-14 14:15","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-28","sp_v1_preop_date":"2022-02-14","sp_v2_6wk_date":"2022-04-11","sp_v3_3mo_date":"2022-05-28","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-17 08:06:12","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Visit was outside of timeline. Partipcant was contacted multiple times but did not answer. When they did it was outside of window. Therefore, when they did it was outside of the visit timeline. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30934":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-31","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30935":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-31","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt declined to participate prior to learning about study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30936":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-31","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left contact information w/ husband. Pt called back and states she has too many other health issues to deal with in order to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30937":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-31","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt prefers to call back after checking with workmans comp and reviewing consent. Did not hear back from patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30938":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-31","screening_age":"50","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt stated first study visit would be too long","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30939":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient has too much going on before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30940":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Mailbox is not in service. \r\nPatient requested at copy of the consent form to look over. \r\nPt asked me to resend consent form to look over. \r\nPt states that she doesn't think she would be a good candidate and really doesn't have the time to be in the study. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30941":{"redcap_data_access_group":"rush_university_me","main_record_id":"10281","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-01","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-01","date_and_time":"2022-02-01 16:24","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-16","sp_v1_preop_date":"2022-02-10","sp_v2_6wk_date":"2022-03-30","sp_v3_3mo_date":"2022-05-16","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30942":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient's listed phone number is not taking calls at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30943":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-02","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30944":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-02","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"2/2 - LVM\r\n2/8 - LVM\r\n2/14 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30945":{"redcap_data_access_group":"rush_university_me","main_record_id":"10282","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-02","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-02","date_and_time":"2022-02-02 12:56","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-25","sp_v1_preop_date":"2022-02-21","sp_v2_6wk_date":"2022-04-08","sp_v3_3mo_date":"2022-05-25","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-23 09:21:44","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Unable to access contralateral deltoid. Instead used spot lower on contralateral arm.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-06-29 10:14:02","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Visit being outside of timeline and surveys being outside of timeline. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30946":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt was hesitant. RA emailed consent and will f/up next week. On 2/9 Pt states they are too busy thinking about sx and to give call another day","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30947":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states they are sick and requested a call back the following week. Spoke w/ pt, states they are cancelling sx b/c their previous RTKA 2 yrs ago was unsuccessful and they cannot walk more than a block.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30948":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3|0","ptinterest_comment":"Pt interested, but unsure. Requested info mailed to them due to issue with email and will call back if interested. Pt called back after receiving packet of information. Stated the more they read the less they were interested as there isn't really a benefit for them and they do not want to have an MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30949":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Requested that headset be used for MRI. RA followed up with MRI center. MRI center gave additional information on ear plugs. Participant will think about participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30951":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30952":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-04","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"2/4 - Called, sent information, plan to call back next week \"anytime after 12pm\"\r\n2/8 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30953":{"redcap_data_access_group":"rush_university_me","main_record_id":"10283","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-04","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"2/4 - LVM","obtain_date":"2022-02-04","date_and_time":"2022-02-04 14:33","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-03","sp_v1_preop_date":"2022-02-15","sp_v2_6wk_date":"2022-04-14","sp_v3_3mo_date":"2022-06-03","age":"69","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-09 14:25:38","erep_ae_date":"2022-03-08","erep_visit_inv":"6","erep_ae_yn":"1","erep_onset_date":"2022-03-08 19:25","erep_resolution_date":"","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Pt fell at home a few days after surgery and badly injured surgical knee. Was admitted for emergency surgery. ","erep_action_taken":"No immediate action needed. Attached H&P notes for intake. ","erep_outcome":"","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-03-31 12:49:41","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Patient was unable to come in for blood draw due to mobility issues related to previous adverse event. Instead will only do surveys for 6 wks. ","erep_protdev_caplan":"Pt will do surveys for 6 wks and depending on his condition will come in for 3 month visit. ","erep_rel_covid19":"0"}}},"30954":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was interested. but self disclosed after learning about MRI that they have a deep brain stimulator and are unable to have MRI's.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30955":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt states they are not interested because they are having sx. RA informed that is why they qualify for study and pt was not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30956":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM's, unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30957":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30958":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30959":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"2/9 - LVM\r\n2/17 - LVM\r\n2/22 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30960":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states they are not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30961":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt states they are unwilling to do MRI as they are claustrophobic. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30962":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to travel to Chicago for study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30963":{"redcap_data_access_group":"rush_university_me","main_record_id":"10289","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-14","screening_age":"65","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt was very interested. RA meeting after appt to go over consent and part one of study visit. LVM 2/15/2022","obtain_date":"2022-02-15","date_and_time":"2022-02-15 15:13","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-28","sp_v1_preop_date":"2022-02-15","sp_v2_6wk_date":"2022-04-11","sp_v3_3mo_date":"2022-05-28","age":"65","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-04-18 09:32:30","erep_ae_date":"2022-04-13","erep_visit_inv":"6","erep_ae_yn":"1","erep_onset_date":"2022-04-13 09:32","erep_resolution_date":"2022-05-16 09:32","erep_ae_severity":"3","erep_ae_relation":"3","erep_ae_serious":"1","erep_ae_desc":"Pt requires a revision to knee arthroplasty due to improper healing of skin underneath incision. Pt states they feel great and the PT has been going as expected. They state they had no indication that something was wrong until a follow up visit with their doctor. ","erep_action_taken":"Pt continues participation in study.","erep_outcome":"N/A","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-04-27 09:14:50","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Blood draw 1 wk out of protocol range","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30964":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/15 - Phoned, did not get through, VM was of a different person. Did not LVM\r\n2/22 - LVM. VM of a different person\r\n07/18/22-lvm\r\n07/19/22-lvm\r\n07/25/22-participant denied to be a part of the study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30965":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"2/15 - Called, got through part of the script, she hung up on me not clear why. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30966":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/15 - LVM\r\n2/23: Sx postponed indefinitely \r\n4/28 - Sx rescheduled, LVM\r\nUnable to contact participant ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30967":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30968":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much time out of job. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30969":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30970":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30971":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"2/15 - LVM. Called me back, expressed interest, sent info\r\n2/21 - Hadn't seen email, found it, stated he would get back to me today.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30972":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30973":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-16","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"2/16 - LVM\r\n2/22 - Spoke, stated not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30974":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-16","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30975":{"redcap_data_access_group":"rush_university_me","main_record_id":"10301","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-16","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"2/16 - Spoke with him + wife - expressed interest, sent info. Wife is epidemiologist \r\n2/21: Requested call back Thursday\r\n2/24: LVM. Called me back, requested call back later.","obtain_date":"2022-02-25","date_and_time":"2022-02-25 09:57","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-15","sp_v1_preop_date":"2022-02-28","sp_v2_6wk_date":"2022-04-26","sp_v3_3mo_date":"2022-06-15","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-28 16:14:52","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-02-28 16:15","erep_resolution_date":"2022-03-01 14:42","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Pt stated that after MRI scanning is tinnitus was \"a whole level higher\" than it was prior to scanning. Before scan had not mentioned history of tinnitus. ","erep_action_taken":"RA will follow up with pt to see if tinnitus resolves. ","erep_outcome":"RA called pt about 24 hours after appointment. He stated that he had been concerned, but the tinnitus seemed to be back to normal. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"30976":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-16","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"2/16 - LVM\r\n2/22: Stated not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30977":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-16","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"2/16 - LVM\r\n2/17 - Called back, said she was not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30978":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she lives too far and it would be inconvenient for her. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30979":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"Patient isn't interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30980":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient is just not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30981":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/17 - Said he would call me back \r\n2/21 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30982":{"redcap_data_access_group":"rush_university_me","main_record_id":"10299","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-17","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"2/17 - Expressed interest, plans to call back, send info\r\n2/22: Still interested, requested call back tomorrow am\r\n2/23: LVM","obtain_date":"2022-02-24","date_and_time":"2022-02-24 10:52","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-17","sp_v1_preop_date":"2022-03-08","sp_v2_6wk_date":"2022-04-28","sp_v3_3mo_date":"2022-06-17","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30983":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"52","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPt states they will call me back during their lunch break. \r\nPatient states that his job is short staffed and wouldn't be able to take any days off prior to surgery. \r\nPatient called me back and left a vm stating that his surgery has been pushed and thinks he might be able to participate. LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30984":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"71","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30985":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"2/17 - LVM\r\n2/22 - LVM. Returned my call. Not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30986":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient was unable to talk and asked that I call back next week. \r\nPatient does not want to take any part in our research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30987":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states that the study sounds too involved and she does not have the time for it. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30988":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"44","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient states that she will be having a second surgery and thinks she may be a better candidate for that 2nd surgery. Will send her a copy of the consent form and call her at the end of March to touch base. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30989":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"55","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is not interested in the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30990":{"redcap_data_access_group":"rush_university_me","main_record_id":"10292","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-17","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"2/17 - Expressed interest, sent info","obtain_date":"2022-02-18","date_and_time":"2022-02-18 16:04","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-18","sp_v1_preop_date":"2022-03-01","sp_v2_6wk_date":"2022-04-29","sp_v3_3mo_date":"2022-06-18","age":"76","sex":"2","genident":"2","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-08-01 11:34:36","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient completed surveys outside of timeline window. Patient did not want to come in for 3 month visit. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"30991":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states they are unlikely to be able to fit in a study visit and will reach out if there is time. Pt states they currently do not have the time and declined to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30992":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt stated the study was a lot. Pt states they have conducted studies in the past, but not to this extent. After f/up the pt states they are unable to do the study due to all of the tasks involved. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30993":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt stated unable to have MRI's due to clip in her cheek. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30994":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Pt not interested in coming to Chicago, RA offered Lyft and pt still declined. Does not like expressways. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30995":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/17 - LVM\r\n2/21 - Contacted, stated he is not interested. Did not elaborate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30996":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-01","screening_age":"55","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM \r\nPatient states they are working up until the day of surgery and have no time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30997":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form and asked that I call her back tomorrow. \r\nPt needs a little more time to think about it and asked that I call back Monday. \r\nPatient is still thinking about it. Her surgery has been postponed pending insurance, will reach out to her in 2 wks. \r\nPt's surgery was never rescheduled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30998":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"71","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient states that she lives too far and it is not worth her time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30999":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"59","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"left several messages with no call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31000":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"57","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31001":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"80","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31002":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate, stated they are already very nervous about the surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31003":{"redcap_data_access_group":"rush_university_me","main_record_id":"10304","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-28","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-28","date_and_time":"2022-02-28 13:09","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-18","sp_v1_preop_date":"2022-03-01","sp_v2_6wk_date":"2022-04-29","sp_v3_3mo_date":"2022-06-18","age":"53","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2022-03-10","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient had some things come up and was unable to find time to be able to participate. ","sp_data_site":"N/A"},"31004":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is in too much pain and lives too far to be able to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31005":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt asked that I call them back later today. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31006":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-09","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient states that he went in for a second opinion and has decided to have his surgery at a surgery center in Hinsdale. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31007":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|3","ptinterest_comment":"Patient stated no interest after hearing about the MRI portion. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31008":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31009":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM\r\nPt called back and requested a copy of the consent form to look over. \r\nPt states they need a little more time to look over consent. \r\nLVM\r\nPatient states that now is not a good time for her to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31010":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-01","screening_age":"76","screening_gender":"2","screening_race":"0","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient shows interest but asked that I call them back tomorrow evening. \r\nPt thought about it and states that it would be difficult because she babysits her grandchild and does not drive. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31012":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states they have too much going on at the moment and don't live close enough to be able to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31013":{"redcap_data_access_group":"rush_university_me","main_record_id":"10295","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-23","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-23","date_and_time":"2022-02-23 11:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-09","sp_v1_preop_date":"2022-02-24","sp_v2_6wk_date":"2022-04-20","sp_v3_3mo_date":"2022-06-09","age":"63","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-07-05 16:00:09","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Participant was out of town and unable to make it in for her 3 month visit within the protocol range. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"31014":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31015":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Phone number was daughters; stated they are not willing to participate in study at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31016":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/22 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31017":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"2/23 - LVM\r\n3/1 - Called me back, called him back, LVM\r\n3/3 - Called me back, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31018":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31019":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"2/23 - VM not set up","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31020":{"redcap_data_access_group":"rush_university_me","main_record_id":"10302","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-23","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt states they are willing to participate. RA emailed consent and will follow up. ","obtain_date":"2022-02-25","date_and_time":"2022-02-25 11:25","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-16","sp_v1_preop_date":"2022-03-01","sp_v2_6wk_date":"2022-04-27","sp_v3_3mo_date":"2022-06-16","age":"72","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31021":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-01","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"LVM\r\nPatient asked for a copy of the consent form to look over. \r\nPatient states that it seems like there's too much involvement that he doesn't have time for. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31022":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-25","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/25 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31023":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-25","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt unwilling to have MRI due to severe claustrophobia. States she can only have open mri's. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31024":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/25: Unable to LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31025":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Spoke to patient's daughter and she states patient's English isn't that great and really doesn't have time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31026":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31027":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt has to talk it over with her husband.\r\nPatient states that it is too long of a drive for her. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31028":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-01","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"2/21 - LVM\r\n3/1 - LVM\r\n3/4 - LVM. Called me back, expressed interest but very hesitant about the time commitment. May reach back out to me. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31029":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-01","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/1 - Called, did not get through. Possibly hung up on.\r\n3/4 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31030":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"56","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/2 - LVM. Out of office returning thursday\r\n3/4 - Called, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31031":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/2 - Phone line did not go through\r\n3/4 - Hesitant about time, did express interest, did send info","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31032":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/2 - LVM\r\n3/7 - LVM\r\n3/18 - Requested call on Monday","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31033":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/2 - LVM\r\n3/4 - He returned my call, called him back lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31034":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/2 - LVM\r\nCalled me back, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31035":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/2 - LVM\r\n3/3 - Called me back. Not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31037":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/2 - Expressed interest, send info. Plan to call back tomorrow\r\n3/7 - Pt emailed, stating not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31038":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31039":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/3 - Spoke, expressed interest but hesitant about time commitment. Sent info. Will see if he reaches back out. \r\n3/4 - Emailed stating he's not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31040":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"3/3 - Got through, on a call, requested she call me back later\r\n3/7 - Expressed interest, sent info\r\n3/10 - Emailed expressing interest. Called back \r\nNot eligible due to scheduled knee replacement","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31041":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/3 - LVM, called me back, expressed interest, sent info\r\n3/11 - LVM\r\n3/16 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31042":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/3 - Called, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31043":{"redcap_data_access_group":"rush_university_me","main_record_id":"10313","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-04","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"3/4 - LVM\r\n3/11 - Expressed interest, sent info \r\n3/14- state they will sign consent, tonight. Pt very interested. ","obtain_date":"2022-03-15","date_and_time":"2022-03-15 10:52","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-23","sp_v1_preop_date":"2022-03-17","sp_v2_6wk_date":"2022-05-04","sp_v3_3mo_date":"2022-06-23","age":"65","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31044":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to commute to Chicago","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31045":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"3/4 - LVM\r\n3/11 - Got through, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31036":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-02","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/2 - LVM\r\n3/7 - Called, requested call back after 4pm. Called back, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31046":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/7: Call back later","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31047":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"3/7 - LVM \r\n07/08/22-Particpant hung up \r\n07/11/22-partcipant stated that they will have another knee replacement surgery within 3 months of the first. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31048":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/7 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31049":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"51","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of the consent form. \r\nPatient's surgery has been cancelled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31050":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Sent a copy of the consent form. \r\nLVM\r\nPatient called back and stated that she does not have the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31051":{"redcap_data_access_group":"rush_university_me","main_record_id":"10311","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-09","screening_age":"70","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt was very interested. RA approached in clinic. Gave consent form and will follow up. ","obtain_date":"2022-03-10","date_and_time":"2022-03-10 13:54","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-25","sp_v1_preop_date":"2022-03-14","sp_v2_6wk_date":"2022-05-06","sp_v3_3mo_date":"2022-06-25","age":"70","sex":"1","genident":"1","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-20 13:06:22","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"some 6 wk surveys completed closer to 3 month window","erep_protdev_caplan":"Pt continues participation","erep_rel_covid19":"0"}}},"31052":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-09","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/9 - LVM\r\n3/11 - LVM\r\n3/18 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31053":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-09","screening_age":"50","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/9 - Asked for callback later\r\n3/10 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31054":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/10 - Said that he would call me back tomorrow\r\n3/17 - LVM \r\n3/23 - Called requested he call me back later\r\n3/24 - Returned call, sent info. He's very hesitant about time commitment. \r\n08/11- Has too much going on and does not want to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31055":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/10: Called 1st number. Unable to LVM\r\n3/17: Called 2nd number. LVM\r\n3/22: Sent study info, epxressed interest but hesitant about time commitment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31056":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"RA stated they would call back if they notice the 2nd knee is sched outside of the 3 mos window. Pt expressed interest","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31057":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt not interested after asking if interested in learning more about study they can participate in.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31058":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"mailbox full. 3/21-expressed interest, emailed consent. Pt not interested in participating after reviewing consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31059":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"spoke briefly, requested call back at later time for more info, unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31060":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt very willing to participate; but disclosed they have had metal in their eye and are unable to provide proof it is no longer there. Unable to participate due to MRI eligibility. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31061":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined before hearing details of study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31062":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-14","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. 3/21/2022 Pt states was not a good time and would call me tomorrow.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31063":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-14","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to come into city","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31064":{"redcap_data_access_group":"rush_university_me","main_record_id":"10317","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-14","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Expressed interest, unsure if able to fit in prior to sx. RA emailed consent. spoke 3/15, pt still interested, but did not have chance to review consent","obtain_date":"2022-03-16","date_and_time":"2022-03-16 12:25","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-23","sp_v1_preop_date":"2022-03-17","sp_v2_6wk_date":"2022-05-04","sp_v3_3mo_date":"2022-06-23","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31065":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-14","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt states they knows they will not follow through.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31066":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/15 - Called, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31067":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/15 - Expressed interest, sent info\r\n3/16 - lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31068":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|1","ptinterest_comment":"3/15 - LVM\r\n Concerned about COVID exposure prior to sx","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31069":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/15 - Requested call back later","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31070":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"3/15 - Called, expressed interest, plans to call back tomorrow morning. \r\nCannot do MRI scans","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31071":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/15 - Expressed interest, sent info\r\n3/18 - Called, contacted, requested call me back later. Called later, LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31072":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31073":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"78","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient states that it's not a good time and she is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31074":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was interested, but unsure about coming into the city. RA emailed consent, pt prefers to call RA back if interested. Pt did not call back.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31075":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"83","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31076":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient states that it would be too inconvenient for her to come all the way to the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31077":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/16 - LVM\r\n3/22 - LVM\r\n3/28 - Not interested due to commute.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31078":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/16 - LVM\r\n3/22 - LVM\r\n3/29 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31079":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"3/16 - LVM\r\n3/22 - LVM\r\n3/29 - Not interested in experiencing pain or blood draw","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31080":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-25","screening_age":"66","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient asked that I call back at another time. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31081":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"44","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient asked that I send him a copy of the consent form and will discuss with his wife. \r\nLVM\r\nPatient states that he talked it over with his wife and they both agreed that its too much for him at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31082":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient was out at the store and asked that I call him back at a different time. \r\nLVM\r\nPatient not interested in participating in any research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31083":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"3/16 - LVM\r\n3/22 - Not English/Spanish fluent","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31084":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31085":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/16 - LVM\r\n3/17 - Called me back, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31086":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she does not have the time to come in for a baseline visit and will then be leaving to Brooklyn shortly after her surgery. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31087":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"55","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"mailbox is full and cannot leave vm. \r\nPatient has no time to come in for a baseline visit before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31088":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Pt requested a copy of the consent form to look over. \r\nPatient really doesn't have time to come in for a baseline visit and does not like coming in to the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31089":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 2- 4/5. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31090":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt declined prior to hearing details of study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31091":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/21 - Expressed interest, plan to call back later today. \r\n3/22 - Called back, she hung up on me","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31092":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt interrupted and declined prior to any description of study given","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31093":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-07","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is busy with work and cannot make time to commit to the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31094":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-07","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient called back and is on vacation. Asked that I send a copy of the consent form. \r\nLeft multiple voicemails with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31095":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"55","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31096":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Patient states she just had her right knee done. She also states that she would not be able to do the cold water test because she has Raynaud's disease.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31097":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"49","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt states she is unable to have MRI due to severe claustrophobia; otherwise would be interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31098":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient had her surgery moved up to this Wednesday. States that she is planning on having her 2nd knee done. Will keep in contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31099":{"redcap_data_access_group":"rush_university_me","main_record_id":"10337","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-21","screening_age":"34","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"lvm. lvm 2-3/28/2022. lvm 3-4/5. Spoke to participant and they are very interested in study. Emailed consent and will f/up.","obtain_date":"2022-04-06","date_and_time":"2022-04-06 12:28","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-15","sp_v1_preop_date":"2022-04-11","sp_v2_6wk_date":"2022-05-27","sp_v3_3mo_date":"2022-07-15","age":"34","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31100":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states he is currently in Naples, FL and will only be coming in for surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31101":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31102":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31103":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/21 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31104":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/21 - lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31105":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states they would have participated, but 2nd knee is likely going to be sched w/in 3 months of other knee. Emailed info and informed to give a call if their sx is scheduled after 3 months","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31106":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that they are going on vacation before their surgery and will have no time to come in for the baseline visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31107":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/21 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31108":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm, unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31109":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm, unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31110":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"72","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31111":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to come to chicago due to distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31112":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/21 - Called, plan to call back on Friday\r\n3/25 - Called, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31113":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"LVM\r\nPt asked to call her back when her husband is home to consent. \r\nPt has their surgery date postponed and now states that she has too much going on and does not want to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31114":{"redcap_data_access_group":"rush_university_me","main_record_id":"10320","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-21","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"3/21 - LVM","obtain_date":"2022-03-21","date_and_time":"2022-03-21 16:31","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-11","sp_v1_preop_date":"2022-04-07","sp_v2_6wk_date":"2022-05-23","sp_v3_3mo_date":"2022-07-11","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31115":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt not interested in participating in study involving pain questions.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31116":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt headed out of town and does not have time for study visit prior to sx. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31117":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm; unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31118":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"49","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt hesitant about participating due to MRI. RA emailed consent and will follow up. Pt did not have a chance to review when called 3/30; RA will call back. lvm 3/31. lvm 4/4.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31119":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-23","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/23 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31120":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-23","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/23 - LVM\r\n3/29 - Got through, seems confused, potentially interested, will call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31121":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-23","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"3/23 - LVM. Unwilling to do MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31122":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"47","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/24 - Not interested due to time constraints","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31123":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/24 - Called, seemed busy, requested emailed info","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31124":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31125":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt phone number is daughters. Pt daughter asked for study materials to be emailed to her as she knew about uppcoming sx and email+phone number in chart is hers. RA emailed info","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31126":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"50","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt declined prior to description of study given. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31127":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"3/28 - sx moved up","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31128":{"redcap_data_access_group":"rush_university_me","main_record_id":"10324","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-28","screening_age":"48","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-28","date_and_time":"2022-03-28 12:54","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-29","sp_v1_preop_date":"2022-04-06","sp_v2_6wk_date":"2022-06-10","sp_v3_3mo_date":"2022-07-29","age":"48","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31129":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"3/28 - Called home #, LVM\r\n4/4 - LVM mobile #","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31130":{"redcap_data_access_group":"rush_university_me","main_record_id":"10326","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-29","screening_age":"72","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-30","date_and_time":"2022-03-30 07:44","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-11","sp_v1_preop_date":"2022-03-30","sp_v2_6wk_date":"2022-05-23","sp_v3_3mo_date":"2022-07-11","age":"72","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31131":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"lvm. 4/14-Pt declined to participate prior to hearing about study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31132":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"3/28 - Not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31133":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/28 - LVM\r\n4/4 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31134":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 2-4/14","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31135":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate after learning visits are in Chicago.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31136":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/29 - LVM\r\n4/5 - LVM\r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31137":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"46","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/29 - Not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31138":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/29 - Interested, sent info\r\n3/30 - Tried to call, couldn't get through. \r\n4/6 - Tried to call, did not get through","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31139":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31140":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined to participate; states mother is in hospital and she has too much going on to participate, also stated her chronic pain in her nonsurgical leg is flaring due to the pain in her right. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31141":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"54","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31142":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31143":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"3/30 - Expressed interest, sent info","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31144":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-31","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"3/31 - Called, could not LVM. Called back, not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31145":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/4 - Expressed interest, sent info\r\n4/6 - Called, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31146":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-05","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Sent her a copy of the consent form to look over. \r\nLVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31147":{"redcap_data_access_group":"rush_university_me","main_record_id":"10336","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-06","screening_age":"65","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-06","date_and_time":"2022-04-06 10:59","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-15","sp_v1_preop_date":"2022-04-13","sp_v2_6wk_date":"2022-05-27","sp_v3_3mo_date":"2022-07-15","age":"65","sex":"2","genident":"2","ethnic":"1","dem_race":"6","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-08-17 10:59:41","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's 3 month visit was outside of protocol range. ","erep_protdev_caplan":"N/A","erep_rel_covid19":"0"}}},"31148":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"35","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM\r\nSent a copy of the consent form. \r\nPt states that she is in the middle of moving and unfortunately does not have time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31149":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Sent a copy of the consent form. \r\nLVM\r\nPatient states that she plans on moving to Tennessee after her surgery and does not have the time to commit to anything else. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31150":{"redcap_data_access_group":"rush_university_me","main_record_id":"10339","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-04","screening_age":"57","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"lvm. Pt expressed interest, RA emailed consent","obtain_date":"2022-04-06","date_and_time":"2022-04-06 16:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-22","sp_v1_preop_date":"2022-04-06","sp_v2_6wk_date":"2022-06-03","sp_v3_3mo_date":"2022-07-22","age":"57","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31151":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/4 - Probably not, but agreed to be emailed info","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31152":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/4 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31153":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"RA gave consent in person at clinic for pt review. RA called and pt states she is not interested in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31154":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-05","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke w/ pt husband and left contact information as pt was currently at work. Pt called back and stated that they are coming in 4/13. RA emailed info and asked they let them know if interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31155":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-05","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/5 - LVM\r\nCalled me back, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31156":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-06","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Dr. Jacobs called, pt unwilling to participate due to MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31157":{"redcap_data_access_group":"rush_university_me","main_record_id":"10343","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-07","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"4/6 - Dr. Jacobs called\r\n4/7 - Called back, expressed interest, requested info sent. Plan to call back in afternoon today or tomorrow. ","obtain_date":"2022-04-08","date_and_time":"2022-04-08 15:56","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-17","sp_v1_preop_date":"2022-05-10","sp_v2_6wk_date":"2022-06-28","sp_v3_3mo_date":"2022-08-17","age":"67","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31158":{"redcap_data_access_group":"rush_university_me","main_record_id":"10344","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-08","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-12","date_and_time":"2022-04-12 11:19","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-28","sp_v1_preop_date":"2022-04-19","sp_v2_6wk_date":"2022-06-09","sp_v3_3mo_date":"2022-07-28","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31159":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-11","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/11","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31160":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-11","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"4/11- Pt stated sx has been rescheduled to August. Emailed info, plan to reach out closer to new sx date\r\n07/01/22-lvm\r\n07/14/22-lvm\r\n07/20/22-lvm\r\nUnable to reach.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31161":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-11","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/11 - LVM. He called me back the other day.\r\n4/13 - Called him back. sx has been pushed till July. Is interested. \r\n4/15 - Called him back, made plans to call back closer to sx date. \r\nSx not rescheduled as of 05/26/2022.\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31162":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31163":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt requested a copy of the consent form. \r\nPt states that she plan on moving to Tennessee. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31164":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is polish speaking and does not speak English. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31165":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"72","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31166":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt asked that I call her back tomorrow. Sent a copy of the consent form. \r\nPt wants the weekend to think about it. I will reach out to her again on Monday. \r\nPt states that she will have not time to come in for a baseline visit before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31167":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/13 - Expressed interest, seemed distracted, sent info\r\nUnable to contact participant. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31168":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/13 - Called, was driving. \r\n4/15 - Requested call after 4pm\r\nSaid no","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31169":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"49","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt hesitant due to timing and work schedule. RA emailed consent and pt will call if interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31170":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt preferred emailed info, emailed to participant. \r\nNever heard back from participant. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31171":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 4/26","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31172":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt too overwhelmed with other tasks prior to surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31173":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt expressed a lot of interest. RA emailed consent. Pt emailed stating unable to find time to participate in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31174":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/13 - LVM\r\n4/14 - Expressed interest, sent info, plans to call back early next week. \r\n4/19 - LVM\r\n4/22 - Expressed interest, read through consent, said she would get back to me. \r\n4/28 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31175":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/13 - LVM\r\n4/20 - LVM, called me back requested call back in early May. Sent info. \r\nUnable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31176":{"redcap_data_access_group":"rush_university_me","main_record_id":"10368","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-13","screening_age":"55","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-05","date_and_time":"2022-05-05 11:44","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-05-05","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"55","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31177":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm; unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31178":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"47","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt on trip when called, will call back. Pt stated she's too nervous w/ sx to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31179":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"4/14 - Expressed interest, sent info, plan to call back tomorrow\r\n4/15 - Called back after 6pm as requested. Did not get through. LVM. \r\nUnable to contact participant. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31180":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"52","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient states she \"participated in something last time\" and is no longer interested in participating in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31181":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"77","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31182":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she does not like coming into the city and actually had her surgery moved up so she had surgery on 04/08/2022. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31183":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Left several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31184":{"redcap_data_access_group":"rush_university_me","main_record_id":"10346","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-15","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-15","date_and_time":"2022-04-15 11:44","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-25","sp_v1_preop_date":"2022-05-06","sp_v2_6wk_date":"2022-07-06","sp_v3_3mo_date":"2022-08-25","age":"63","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31185":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/14 - Busy, requested call back later\r\n4/15 - LVM\r\nUnable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31186":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Not comfortable coming into Chicago","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31187":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt unwilling to make trip to MOR, RA offered lyft and pt declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31188":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/14 - Requested call back Tuesday\r\n4/19 - LVM\r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31189":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt unwilling to try MRI unless it is an open MRI due to claustrophobia. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31190":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Pt expressed interest. RA emailed consent. knee replaced and schedules pretty packed also against collection of DNA. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31191":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt called back stating that there is a better time to call them. lvm 4/15.\r\nUnable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31192":{"redcap_data_access_group":"rush_university_me","main_record_id":"10361","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-14","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"4/14 - LVM\r\n4/19 - LVM. Called me back, expressed interest, made plans to call back next week on Monday. \r\n4/25 - Called back at arranged time, LVM\r\n4/28 - Called me back, expressed interest, went through consent but was unable to find email. Plan to call back tomorrow or consent at basline ","obtain_date":"2022-04-29","date_and_time":"2022-04-29 09:11","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-09","sp_v1_preop_date":"2022-05-05","sp_v2_6wk_date":"2022-06-20","sp_v3_3mo_date":"2022-08-09","age":"77","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31193":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/14 - LVM\r\nCalled back, not interested due to distance and time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31194":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"VM not setup, and unable to lvm w/ home, unable to contact mobile 4/28.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31195":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm. lvm 4/28.\r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31196":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4|0","ptinterest_comment":"Patient states that she has too much going on and will not have any help after surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31197":{"redcap_data_access_group":"rush_university_me","main_record_id":"10347","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-18","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-18","date_and_time":"2022-04-18 14:27","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-12","sp_v1_preop_date":"2022-04-25","sp_v2_6wk_date":"2022-06-23","sp_v3_3mo_date":"2022-08-12","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31198":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Poss delay sx","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31199":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"59","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"Pt states they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31200":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt asked that I call him back on Monday. \r\nPt states they will call me back when they have time. \r\nNever heard back from the patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31201":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/15 - Called, got through to daughter. She said she would have pt call me back at my number (RM). Plan to transfer to SM. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31202":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPt was driving and could not speak. Asked that I call back later. \r\nNever got in touch with the patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31203":{"redcap_data_access_group":"rush_university_me","main_record_id":"10349","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-18","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-18","date_and_time":"2022-04-18 17:33","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-02","sp_v1_preop_date":"2022-04-21","sp_v2_6wk_date":"2022-06-13","sp_v3_3mo_date":"2022-08-02","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31204":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states she lives too far. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31205":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was not home. \r\nLVM\r\nPatient is on vacation and asked that I call them back at a different time. \r\nNever got a hold of patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31206":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"84","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"Pt is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31207":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/15 - Very hesitant about time commitment, agreed to be sent info, requested that he contact me if interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31208":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to come into Chicago","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31209":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm; unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31210":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm; unable to contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31211":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt unwilling to come to Chicago","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31212":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt expressed interest, but wants to speak with husband regarding study as they are unsure they can add more to their plate. Pt emailed they will decline.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31213":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/20 - LVM\r\n4/25 - Went to VM then could not LVM (blocked?)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31214":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"4/20 - LVM\r\n4/25 - Sx canceled due to cancer\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31215":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/20 - Called, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31216":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"42","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/20 - LVM\r\nNo longer having sx at Rush","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31217":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"50","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/20 - LVM\r\n4/25 - LVM\r\n06/07- Participant has a full time job and does not have time ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31218":{"redcap_data_access_group":"rush_university_me","main_record_id":"10355","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-21","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Jacobs initially called this participant. RA called and patient requested consent to review, but is very interested. ","obtain_date":"2022-04-22","date_and_time":"2022-04-22 12:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-26","sp_v1_preop_date":"2022-05-20","sp_v2_6wk_date":"2022-07-07","sp_v3_3mo_date":"2022-08-26","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31219":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-22","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"4/22 - LVM\r\n4/28 - Unwilling to come into Chicago","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31220":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-22","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/22 - LVM\r\n4/28 - LVM\r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31221":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-22","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/22 - LVM\r\nWorks in Minnesota ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31222":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/25 - LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31223":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31224":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/25 - LVM\r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31225":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Sx canceled","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31226":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt unable to come in prior to surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31227":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"lvm. Pt already involved in another study and does not want to take the time to participate in another. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31228":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt not willing to do in person visits in the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31229":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"57","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient's mother just passed away. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31230":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"1","ptinterest_comment":"Pt struggles with getting transportation and is not comfortable taking offered Lyft due to possibility of covid. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31231":{"redcap_data_access_group":"rush_university_me","main_record_id":"10358","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-26","screening_age":"58","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-26","date_and_time":"2022-04-26 15:57","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-23","sp_v1_preop_date":"2022-05-17","sp_v2_6wk_date":"2022-07-04","sp_v3_3mo_date":"2022-08-23","age":"59","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31232":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"56","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Pt states that it would take up too much of his time and he is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31233":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"51","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nUnable to get a hold of participant. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31234":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"80","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPatient had company and asked that I call her after 2 pm. \r\nUnable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31235":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt asked that I call him back tomorrow. \r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31236":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"pt was at work and states that they will call me back later. \r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31237":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"75","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nUnable to contact pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31238":{"redcap_data_access_group":"rush_university_me","main_record_id":"10367","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-05","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-05","date_and_time":"2022-05-05 11:06","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-11","sp_v1_preop_date":"2022-05-09","sp_v2_6wk_date":"2022-06-22","sp_v3_3mo_date":"2022-08-11","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31239":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"81","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31240":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31241":{"redcap_data_access_group":"rush_university_me","main_record_id":"10384","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-28","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-19","date_and_time":"2022-05-19 09:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-20","sp_v1_preop_date":"2022-05-19","sp_v2_6wk_date":"2022-07-01","sp_v3_3mo_date":"2022-08-20","age":"73","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31242":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"1st sx not successful-2019. Can't exercise like want. Unable to have MRI due to bullet fragments in body. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31243":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Passed before hearing explanation of study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31244":{"redcap_data_access_group":"rush_university_me","main_record_id":"10362","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-28","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-02","date_and_time":"2022-05-02 10:34","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-03","sp_v1_preop_date":"2022-05-02","sp_v2_6wk_date":"2022-06-14","sp_v3_3mo_date":"2022-08-03","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31245":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"No dial tone","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31246":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt declined to learn about study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31247":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Jacobs initially contacted participant and they expressed interest. lvm. lvm 2 5/11","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31248":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM (Dr. Jacobs spoke to pt and they seemed interested)\r\nPatient would like a day or two to think about it. \r\nPt left a voicemail stating that after thinking about it, she would prefer not to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31249":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was sent consent and states that after further thought, study is too involved then he would like to be. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31250":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives too far, not willing to come in. Lyft services were offered. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31251":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"05/11-Unable to speak after pt picked up phone\r\nUnable to speak with Participant. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31252":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to come into Chicago because they live 2 hrs away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31253":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt was at clinic, asked to be called back at later time. Contacted participant and would like to think about it more before participating. Emailed consent.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31254":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"81","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states they do not want to come to Chicago for visits and they have a heavy volunteer schedule. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31255":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Study was too much, unable to get through full description","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31261":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"spoke w/ pt. stated they'd need to think about it and would get back in contact if interested. RA emailed consent. \r\nPatient never made contact to consent. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31269":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-20","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31270":{"redcap_data_access_group":"rush_university_me","main_record_id":"10390","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-20","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"pt very interested. req call monday after 12 pm","obtain_date":"2022-05-27","date_and_time":"2022-05-27 12:02","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-17","sp_v1_preop_date":"2022-06-02","sp_v2_6wk_date":"2022-07-29","sp_v3_3mo_date":"2022-09-17","age":"69","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31278":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt did not want to hear explanation before declining. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31279":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt was unable to make time for study visits.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31283":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt unable to participate because they are going to Europe shortly after surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31284":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt going to visit daughter in Virginia prior to surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31285":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"69","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to get in contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31286":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nLeft several messages with no call back. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31287":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"79","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke to son, he states he will talk it over with patient. Asked that I call back tomorrow. \r\nUnable to get in contact with participant. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31288":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke to daughter. She will discuss it with patient and they will call me if he is interested in participating. \r\nParticipant never called back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31289":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"Patient states that they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31273":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-20","screening_age":"58","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31290":{"redcap_data_access_group":"rush_university_me","main_record_id":"10397","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-25","screening_age":"67","screening_gender":"2","screening_race":"0","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-09","date_and_time":"2022-06-09 10:03","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-20","sp_v1_preop_date":"2022-06-13","sp_v2_6wk_date":"2022-08-01","sp_v3_3mo_date":"2022-09-20","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31291":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Participant cannot get around. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31272":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-20","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31292":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"52","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nLeft several messages, no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31293":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"52","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states that he is still working full time and has no time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31266":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-20","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nCalled several times with no call back. \r\n\r\n07/06/22-partcipant called back stating she had cancelled her surgery and may reschedule it. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31294":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"76","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Participant hung up on me. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31295":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"51","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt states his surgery is being postponed from 06/03/2022. Asked that I send a copy of consent form to look over. \r\n08/22- LVM\r\nUnable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31296":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states that she is no longer having surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31297":{"redcap_data_access_group":"rush_university_me","main_record_id":"10395","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-25","screening_age":"43","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-02","date_and_time":"2022-06-02 12:34","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-15","sp_v1_preop_date":"2022-06-13","sp_v2_6wk_date":"2022-07-27","sp_v3_3mo_date":"2022-09-15","age":"43","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31268":{"redcap_data_access_group":"rush_university_me","main_record_id":"10391","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-20","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-27","date_and_time":"2022-05-27 13:49","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-07","sp_v1_preop_date":"2022-06-02","sp_v2_6wk_date":"2022-07-19","sp_v3_3mo_date":"2022-09-07","age":"52","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31267":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"5/20-lvm\r\n5/23-sent econsent form \r\n5/26-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31298":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient does not like driving to Chicago. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31299":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt would like to speak with her daughter regarding study. Sent a copy of the consent form. \r\nPatient and daughter would like more time to think about it. \r\nNot interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31300":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31301":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"05/26-LVM\r\n06/06-Partcipant stated that the surgery is postponed until November. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31302":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Not able to come in due to granddaughters work schedule. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31303":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-01","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"06/01-lvm\r\n06/02- spoke with participant, does not want to drive downtown. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31304":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-01","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Participant cannot make the drive up to Chicago ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31305":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-01","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"06/01-Spoke with participant, sent econsent via email ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31306":{"redcap_data_access_group":"rush_university_me","main_record_id":"10396","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-02","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-06","date_and_time":"2022-06-06 17:01","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-16","sp_v1_preop_date":"2022-06-10","sp_v2_6wk_date":"2022-07-28","sp_v3_3mo_date":"2022-09-16","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31307":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/03- Sent econsent over \r\n06/06-Particpant went over research and is not interested anymore due to MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31308":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/03-Spoke with Participant, She is not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31309":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/06-LVM\r\n06/08-LVM\r\n06/15-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31310":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-06","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Sent a copy of the consent form. \r\nPt has decided to cancel her surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31311":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-06","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Participant will not be in town for visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31312":{"redcap_data_access_group":"rush_university_me","main_record_id":"10398","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-06","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-09","date_and_time":"2022-06-09 11:04","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-17","sp_v1_preop_date":"2022-06-14","sp_v2_6wk_date":"2022-07-29","sp_v3_3mo_date":"2022-09-17","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31313":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-06","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM. LVM 6/13.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31314":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-06","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31315":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-06","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that its difficult for her to get around. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31316":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"06/07-LVM \r\n06/08-Particpant stated they could not do the MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31317":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/12-sent econsent \r\n07/18/22-partcipant stated they have too much going on ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31318":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/07-sent econsent \r\n06/08-Partipcant declined to be part of the study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31319":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/07-Particpant stated to call back \r\n06/08-LVM\r\n06/16- Participant stated they are not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31320":{"redcap_data_access_group":"rush_university_me","main_record_id":"10417","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-07","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"06/07-Sent Econsent over. Spoke 6/9 morning and requested call back later in day. LVM. ","obtain_date":"2022-06-28","date_and_time":"2022-06-28 14:19","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-01","sp_v1_preop_date":"2022-06-30","sp_v2_6wk_date":"2022-08-12","sp_v3_3mo_date":"2022-10-01","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31321":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/07/2022-sent econsent over. lvm 6/10\r\n06/16-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31322":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Sent Econsent 06/07/2022\r\nLVM 6/14/2022\r\nLVM 06/16/2022\r\nCould not get ahold of the participant ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31324":{"redcap_data_access_group":"rush_university_me","main_record_id":"10405","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-08","screening_age":"68","screening_gender":"1","screening_race":"0","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-15","date_and_time":"2022-06-15 09:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-12","sp_v1_preop_date":"2022-06-23","sp_v2_6wk_date":"2022-08-23","sp_v3_3mo_date":"2022-10-12","age":"68","sex":"1","genident":"1","ethnic":"3","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31325":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"78","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states that it would be too much for her and she also would not be able to do the MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31326":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"71","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states she lives too far and does not want to drive in for study visits. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31327":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"56","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"lvm\r\nUnable to make contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31328":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"53","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient decided to decline as I was going over key points of the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31329":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"no answer\r\nLVM- unable to make contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31330":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31331":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt states they want to focus on surgery and relief from the pain ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31332":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states they are still in pain from previous surgery and will think about participating in a study and call back if interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31333":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"requested call back tomorrow. lvm 6/9/2022. Pt states they take care of their husband and handicapped son. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31334":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-13","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt no longer seeing physician for sx due to cost.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31335":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was unable to talk, asked that I call her back later. \r\nlvm, unable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31336":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31337":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"80","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM- unable to make contact\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31338":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"53","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM- unable to make contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31339":{"redcap_data_access_group":"rush_university_me","main_record_id":"10404","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-14","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-14","date_and_time":"2022-06-14 16:28","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-05","sp_v1_preop_date":"2022-06-22","sp_v2_6wk_date":"2022-08-16","sp_v3_3mo_date":"2022-10-05","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-06-23 15:11:59","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-06-22 08:30","erep_resolution_date":"","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Participant was laying on MRI table and started panicking as we were about to start the scans. Could not go through with MRI. ","erep_action_taken":"N/A","erep_outcome":"Participant will not be doing MRI for study visit. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"31340":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt states that her surgery is being postponed. Would like to be contacted once she knows when her sx is rescheduled for. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31341":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31342":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"42","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nUnable to make contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31343":{"redcap_data_access_group":"rush_university_me","main_record_id":"10408","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-14","screening_age":"64","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-21","date_and_time":"2022-06-21 07:58","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-14","sp_v1_preop_date":"2022-06-21","sp_v2_6wk_date":"2022-08-25","sp_v3_3mo_date":"2022-10-14","age":"64","sex":"2","genident":"2","ethnic":"1","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31344":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"48","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/15-sent econsent ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31345":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/15- LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31346":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"06/15/22-LVM\r\n06/16/22-LVM\r\n06/20/22-Particpant stated she has too many doctor visits and will not be able to fit any more visits in. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31347":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"70","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"LVM\r\nPatient states that he has a lot going on before surgery. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31348":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/15/22-sent econsent \r\n06/20/22-Spoke to participant, Participant stated he needs more time to think things through \r\n06/24/22-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31349":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/15/22-sent econsent \r\n06/20/22- Participant said she is not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31350":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"06/15/22 send econsent over \r\n06/20/22 participant states she does not want to be a part of the research study due to her believing it will interfere with her recovery and pain. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31351":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/16/2022-LVM\r\n06/20/2022-Particpant stated that they need more time to look things over. \r\n06/24/2022-Particpant stated that they are not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31352":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"45","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/16/22-Sent econsent \r\n06/21/22-participant wants another day to look it over ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31353":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/16/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31354":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/16-sent econsent ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31355":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/16/22-particpant stated they would call back\r\n06/20/22-participant stated that they cannot take off time at work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31356":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Participant cannot make the drive up to downtown for the visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31357":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/20/22-lvm\r\n07/08/22-particpant does not want to be apart of the study ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31358":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-21","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"06/21/22-LVM\r\n06/22/22-LVM\r\n07/01/22-Participant stated she does not have the ability to accommodate the study into her schedule ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31360":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/22/22-Participant stated he was not interested in participating","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31361":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-23","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Spoke and emailed consent. PT will call back if interested. Pt states the study is too much and she wishes she were 5 yrs younger to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31362":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-27","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she is working full time up until surgery and does not have time to come in. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31363":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"80","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that he would like to speak to his primary physician first. \r\nLVM\r\nUnable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31364":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"69","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states they live too far and all of his follow ups are in Indiana. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31365":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient does not want to come down to Rush for visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31366":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"78","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Patient states that he and his wife do not want to make the trip to Rush for the study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31367":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that they live too far and do not want to come in to Rush. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31368":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"73","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31369":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"74","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is afraid to come down to Rush. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31370":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt requested a copy of consent form to look over. \r\nLVM\r\nLVM\r\nUnable to make contact with patient. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31371":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"70","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nLVM\r\nLeft several messages with no call back. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31372":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she is not having her follow ups at Rush and would prefer not to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31373":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"06/30/22- participant stated she's going to have to push back the surgery to potentially august due to current health problems. \r\n08/17/22-lvm\r\n08/31/22-pt stated she's no longer interested in participating in research ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31374":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"06/30/22-partcipant stated they were not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31375":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/30/22-particpant stated they will not drive to the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31377":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/02/22-sent econsent\r\n07/08/22-lvm\r\n07/12/22-particpant stated they do not have the time ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31378":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/01/22-particpant said to call back later \r\n07/14/22-sent econsent, call back \r\n07/18/22-partcipant stated they are already in another study ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31379":{"redcap_data_access_group":"rush_university_me","main_record_id":"10421","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-01","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"07/01-sent econsent \r\n07/06-consented ","obtain_date":"2022-07-06","date_and_time":"2022-07-06 14:15","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-05","sp_v1_preop_date":"2022-07-12","sp_v2_6wk_date":"2022-09-16","sp_v3_3mo_date":"2022-11-05","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31380":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/01/22-particpant does not have the time availability.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31381":{"redcap_data_access_group":"rush_university_me","main_record_id":"10420","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-06","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-06","date_and_time":"2022-07-06 10:35","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-11","sp_v1_preop_date":"2022-07-07","sp_v2_6wk_date":"2022-08-22","sp_v3_3mo_date":"2022-10-11","age":"70","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31382":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/07/2022-lvm\r\n07/11/22-participant stated they do not have time ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31383":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/07/2022-Spoke with husband, says he will pass along the message. \r\n07/08/22-LVM\r\n07/14/22-LVM\r\nunable to reach participant ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31384":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/07/22-lvm\r\n07/12/22-lvm\r\n07/14/22-lvm\r\n\r\ncould not reach patient ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31385":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/07/22-surgery cancelled","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31386":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/08/22-lvm\r\n07/11/22-lvm\r\n07/19/22-lvm\r\n\r\ncould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31387":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/08/22-Partcipant stated to call back at another time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31388":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"74","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPatient called back and would like to talk to Dr. Paprosky before agreeing to anything. \r\nLVM\r\nUnable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31389":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that she is working full time up until her surgery and has no time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31390":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"Patient states she's too busy and is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31391":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Requested a copy of the consent form to look over.\r\n07/14 Pt needs more time to look over consent form. \r\nUnable to make anymore contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31392":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"56","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nNo Answer\r\nUnable to make contact with pt.\r\n\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31393":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient doesn't understand English that well. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31394":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"72","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\n2/25 LVM\r\nUnable to contact patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31395":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/8/22-lvm\r\n07/11/22-partcipant stated to call back next week \r\n07/19/22-lvm\r\n\r\ncould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31396":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/12/22-lvm\r\n07/14/22-call cannot go through \r\n07/18/22-LVM\r\n\r\nCould not reach before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31398":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/12/22-lvm\r\n07/14/22-lvm\r\n07/18/22-Participant stated they live in WI and its too far to drive to Chicago. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31399":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/12/22-particpant stated to call back at a different time \r\n07/26/22-LVM\r\n08/01/22-LVM\r\n\r\nCould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31400":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"07/12/-22-lvm\r\n07/26/22-sent copy of consent form \r\n07/28/22-pt declined to take part in the research ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31401":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/12/22-Calls are not going through \r\n\r\nCould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31402":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"07/12/22-lvm \r\n07/13/22-sent econsent \r\n07/26/22-lvm ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31403":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nUnable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31404":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"64","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nSent a copy of the consent form for pt to look over. \r\n7/25- Pt was busy and asked that I call her back tomorrow morning. \r\n7/26- Pt needs more time to think about it and asked that I call her back tomorrow. \r\nPt states that she will have to pass on participating. She is really nervous about surgery and feels like she has too much to do beforehand. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31405":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"73","screening_gender":"N/A","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"07/14/22-Needs Spanish interpreter \r\nPt states that she does not want to participate because she has claustrophobia and would be unable to do the MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31397":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/12-LVM \r\n07/14-Inelgibile; participant needs interpreter ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31406":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"07/14/22-pt said to call back later she is driving. \r\n07/18/22-sent econsent \r\n07/22/22-Husband took a message. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31407":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Pt requested a copy of the consent form to look over. \r\nPt states that she will be in and out of town for the next 8 wks and does not have time to participate. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31408":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPt states that she is moving and had her surgery postponed to January of next year. Sent her a copy of the consent form to look over and will reach out towards the end of the year. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31409":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states that she has panic attacks with MRIs and prefers not to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31410":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"07/14/22-pt stated they are not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31411":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/18/22-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31412":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/18/22-particpant stated they are not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31413":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"81","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/20/22-lvm\r\nparticipant stated they cannot drive to the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31414":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"63","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/20- LVM\r\n08/03- LVM\r\nCalled pt several times with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31415":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/20/22-emailed a copy of consent form \r\n08/03/22-stated to call back on Friday \r\n08/05/22-partcipant stated she lives too far away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31416":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"07/20/22-lvm\r\n07/26/22-partcipant stated they are not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31417":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"72","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is on vacation. Sent a copy of the consent form for him to look over. \r\nUnable to contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31418":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/20/22-partcipant said not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31419":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"80","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/20/22-lvm\r\nPt states she lives too far and doesn't want to make the time to come in for visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31420":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"68","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt would like time to think about it. Sent a copy of consent form for her to look over. \r\nUnable to make contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31421":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"07/20/22-partcipant stated that they are not interested in participating.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31422":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/2022-partcipant stated she will not drive to rush.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31424":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"76","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states they are already enrolled on another study and he does not want to be enrolled in more than one. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31425":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"75","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states that I have the wrong number. I verified phone #s in EPIC and ATHENA, they don't show anything different. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31426":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-21","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Participant is interested in participating. We are waiting to see when her pre op visit is scheduled to consent and schedule her baseline visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31427":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"64","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt was occupied and asked that I call him back later today.\r\n08/09- LVM\r\nLeft multiple vm with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31428":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\n07/26- LVM\r\n07/27- pt requested a copy of consent form to look over. \r\n08/11- Needed to resend copy of consent form.\r\n08/12- lvm\r\n08/23- pt sent an email declining to participate. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31429":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states that they have too much anxiety and would not be a good candidate because of that. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31430":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt just had sinus surgery and feels like she has too much going on before her knee surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31431":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/25/22-not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31432":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/26/22-lvm\r\n07/28/22-pt declined, too far to drive \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31433":{"redcap_data_access_group":"rush_university_me","main_record_id":"10435","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-26","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"07/26/22-Sent copy of consent form ","obtain_date":"2022-07-27","date_and_time":"2022-07-27 10:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-10","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-09-21","sp_v3_3mo_date":"2022-11-10","age":"76","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2022-08-04","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient refuses to drive to Chicago. Patient refuses to complete the MRI portion of the study visit. ","sp_data_site":"N/A"},"31434":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/26/22-MB is full, could not leave a message \r\n08/01/22-MB is full, could not leave a message \r\n08/09/22-lvm\r\n\r\ncould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31435":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/26/22-participant stated to call back later he is on a train. \r\n08/01/22-lvm\r\n08/12/22-MB is full\r\n\r\ncould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31436":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/26/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31437":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/26/22-participant stated she does not have time before her surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31438":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"07/28/22-participant stated they are not willing to do the MRI machine and do not have the time for it either. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31439":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/28/22-pt stated they will call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31440":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3|0","ptinterest_comment":"07/28/22-pt stated they do not have the time and are not willing to do the MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31441":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-01","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"008/01/22-participant stated they are not interested in participating in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31442":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/03/22-pt hung up \r\n08/08/22-sent a copy of econsent form\r\n08/18/22-lvm\r\n\r\ncould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31443":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"55","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/03/22- participant stated to call back at a later time \r\n08/09/22-participant stated they do not have time to come in before their surgery date. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31444":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"Patient does not want nor has the time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31445":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"51","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/03/33-sent a copy of the consent form \r\n08/23/22-declined, does not have the time before surgery to come in.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31446":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM\r\nPt called back and states she does not have time to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31447":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/03/22-lvm\r\n08/09/22-lvm\r\n08/17/22-lvm\r\n\r\ncould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31448":{"redcap_data_access_group":"rush_university_me","main_record_id":"10444","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-03","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-03","date_and_time":"2022-08-03 11:43","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-12","sp_v1_preop_date":"2022-08-09","sp_v2_6wk_date":"2022-09-23","sp_v3_3mo_date":"2022-11-12","age":"52","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31449":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/03/22-patient stated they do not have the time ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31450":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"75","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she'd like to think about it and would call me if she is interested in participating. \r\nPt never contacted us regarding study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31451":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"57","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|1","ptinterest_comment":"Patient thinks she might have Covid and has a lot to do before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31452":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"70","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states that he has too much going out and is feeling burnt out. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31453":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"67","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Tried calling patient and phone number is no longer in service. No other number listed on EPIC OR ATHENA. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31454":{"redcap_data_access_group":"rush_university_me","main_record_id":"10445","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-03","screening_age":"55","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-04","date_and_time":"2022-08-04 07:54","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-22","sp_v1_preop_date":"2022-08-09","sp_v2_6wk_date":"2022-10-03","sp_v3_3mo_date":"2022-11-22","age":"55","sex":"1","genident":"1","ethnic":"1","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31455":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nPt states they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31456":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt requested a copy of the consent form to look over. \r\nPatient was on a call and asked that I call them back. \r\nHad to resend consent form and will call back the pt next week. \r\nPt states he thought about it and feels that he has too much to do prior to surgery and does not want to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31457":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"71","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact patient","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31458":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"08/09/22-lvm\r\n08/17/22-participant declined due to MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31459":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"08/09/22-Participant stated that they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31460":{"redcap_data_access_group":"rush_university_me","main_record_id":"10452","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-10","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-22","date_and_time":"2022-08-22 15:13","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-01","sp_v1_preop_date":"2022-08-30","sp_v2_6wk_date":"2022-10-13","sp_v3_3mo_date":"2022-12-01","age":"73","sex":"1","genident":"1","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31461":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt does not want to make the trip into Chicago for these visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31462":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient's voicemail is not setup.\r\n08/22- pt is in Florida right now and asked that I call her back on Thursday.\r\nLeft several messages with no call back.\r\n\r\n\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31463":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient has a lot on her plate at the moment and we do not have MRI availability at the time she would need. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31464":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient states that she has a lot to do before her surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31465":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nLeft several messages with no call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31466":{"redcap_data_access_group":"rush_university_me","main_record_id":"10447","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-11","screening_age":"50","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-11","date_and_time":"2022-08-11 12:13","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-24","sp_v1_preop_date":"2022-08-15","sp_v2_6wk_date":"2022-10-05","sp_v3_3mo_date":"2022-11-24","age":"50","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31467":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"71","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke to pt's husband and he states pt has an emergency in Europe and needs to cancel surgery and they would prefer to focus on that right now. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31468":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\n08/23- lvm\r\nLeft several messages with no call back.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31469":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"46","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\n08/23- pt requested copy of consent form and asked that I call her back tomorrow.\r\nPt states that she doesn't like the idea of the tests that need to be done and would prefer no to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31470":{"redcap_data_access_group":"rush_university_me","main_record_id":"10453","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-11","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-23","date_and_time":"2022-08-23 13:23","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-09","sp_v1_preop_date":"2022-09-06","sp_v2_6wk_date":"2022-10-21","sp_v3_3mo_date":"2022-12-09","age":"68","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31471":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"57","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt was boarding a flight and asked that I call him back next week. Requested a copy of the consent form to look over. \r\n08/15- LVM\r\n08/26- Pt unwilling to do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31472":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"69","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nUnable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31473":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/12/22-participant declined, stated she lives too far.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31474":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/12/22-LVM\r\n08/19/22-LVM\r\n\r\nCould not reach before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31475":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"81","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"08/12/22-sent a copy of the consent form.\r\n08/15/22-pt stated they are still unsure, asked to give a call back later in the week.\r\n08/18/22-MB full, could not leave a voice message\r\n\r\nCould not reach before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31476":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/12/22-Participant stated their surgery is being postponed.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31477":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/12/22-no mb\r\n08/30/22-no mb\r\n09/07/22-no mb","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31478":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"08/12/-22-patient stated they are not interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31479":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"08/12/22-lvm \r\n08/30/22-lvm\r\n08/31/22-pt gave a call back and stated she is not interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31480":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/12/22-participant states she lives in Indiana and its too far to drive up.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31481":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/16/22-pt stated the study it is too far away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31482":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"08/16/22-pt stated no. Not interested in research","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31483":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/16/22-lvm\r\n08/23/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31484":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/16/22-pt stated they don't have enough time to come in for a baseline visit prior to surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31485":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/16/22-daughter said she will be back home later to give a call back.\r\n08/30/22-pt stated she has a sick husband and it is too far of a drive.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31486":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-17","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"08/17/22-sent a copy of the consent form. Home phone # is disconnected. \r\n08/23/22-paricipant stated they need more time to look at consent form. \r\n08/24/22-participant stated they want their mother to look over, asked for more time.\r\n09/1/22-participant declined being in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31487":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-17","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"08/17/22-lvm\r\n08/23/22-lvm\r\n08/29/22-sent a copy of the consent form \r\n9/2/22-pt declined being in the study. Stated that they live too far away ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31489":{"redcap_data_access_group":"rush_university_me","main_record_id":"10449","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-12","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-18","date_and_time":"2022-08-18 16:28","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-01","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-13","sp_v3_3mo_date":"2022-12-01","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31490":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/19/22-pt stated they do not want to make extra trips to rush.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31491":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-22","screening_age":"56","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nUnable to make contact with patient. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31492":{"redcap_data_access_group":"rush_university_me","main_record_id":"10451","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-22","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-22","date_and_time":"2022-08-22 13:41","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-14","sp_v1_preop_date":"2022-08-25","sp_v2_6wk_date":"2022-10-26","sp_v3_3mo_date":"2022-12-14","age":"74","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31493":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"75","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31494":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"83","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt unavailable to talk. Wife asked that I call back another time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31495":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"73","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Son will have patient call me. \r\n09/01/2022- Patient is not a good candidate because need assistances and her son lives out of the state. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31496":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"76","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt states that he currently has too much on his plate and has no time at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31497":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"64","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt was busy at work and asked that I call him back on Thursday. \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31498":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt states that she cannot participate because her husband works full time and he's the only one she'll allow to drive her to her visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31499":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt isn't interested in participating. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31500":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"54","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM\r\nLeft several messages with no call back.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31501":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"65","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31502":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"60","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31503":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31504":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/23/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31505":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31506":{"redcap_data_access_group":"rush_university_me","main_record_id":"10458","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-23","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-24","date_and_time":"2022-08-24 10:58","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-19","sp_v1_preop_date":"2022-08-29","sp_v2_6wk_date":"2022-10-31","sp_v3_3mo_date":"2022-12-19","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31507":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"08/23/22-lvm\r\n08/26/22-sent a copy of consent form\r\n08/31/22-declined being in the study, no longer interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31508":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"83","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"8/24/22-lvm\r\n9/2/22-patient declined, too far ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31509":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/24/22-lvm\r\n09/2/22-pt stated shes at meeting give a call back ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31510":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"08/24/22-sent a copy of the consent form.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31488":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-17","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/24/22-participant does not want to drive up to chicago for the visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31511":{"redcap_data_access_group":"rush_university_me","main_record_id":"10457","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-24","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-24","date_and_time":"2022-08-24 10:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-13","sp_v1_preop_date":"2022-09-12","sp_v2_6wk_date":"2022-10-25","sp_v3_3mo_date":"2022-12-13","age":"57","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31513":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPt called back and requested a copy of the consent form to look over. \r\n08/31- LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31514":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPt called back and requested a copy of the consent form to look over. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31515":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"77","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31516":{"redcap_data_access_group":"rush_university_me","main_record_id":"10459","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-24","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-24","date_and_time":"2022-08-24 16:33","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-21","sp_v1_preop_date":"2022-09-15","sp_v2_6wk_date":"2022-11-02","sp_v3_3mo_date":"2022-12-21","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31517":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/25/22-sent a copy of the consent form. \r\n0826/22-lvm\r\n08/30/22-pt declined, stated his wife is handicap and noone will be able to take care of her. Also stated it takes too much time ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31518":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/25/22-patient stated she hates driving to the city with a passion.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31519":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/25/22-sent a copy of the consent. \r\n09/1/22-lvm\r\n9/2/22-pt stated cannot make it in for the baseline ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31520":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"08/25/22-pt stated she hates completing surveys.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31521":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/25/22-pt stated alot is going on in her life right now and she can't focus on research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31522":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/25/22-pt stated its too far of a drive. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31523":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/25/22-pt stated she is pushing her D.O.S. back to April","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31524":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"66","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/25/22-pt stated its too far of a drive. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31525":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"61","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM\r\nPt called back today and states that he has cancelled is knee surgery for now. He plans on having a hip replacement first and does not know when he will be rescheduling for the knee. He would like for us to keep in touch an perhaps he'll be willing to participate in the future. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31526":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"58","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31527":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"66","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31528":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"65","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31529":{"redcap_data_access_group":"rush_university_me","main_record_id":"10464","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"39","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"08/30/22-sent a copy of consent form ","obtain_date":"2022-09-06","date_and_time":"2022-09-06 09:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-28","sp_v1_preop_date":"2022-09-13","sp_v2_6wk_date":"2022-11-08","sp_v3_3mo_date":"2022-12-28","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31530":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"08/30/22-pt states she's in a lot of pain currently and not sure how she will react to more pain testing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31531":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/30/22-lvm\r\n9/7/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31532":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/30/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31533":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"08/30/22- Stated he's a caregiver for his wife and canno't take the time off to go to the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31534":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/31/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31535":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"08/31/22-participant declined ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31536":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"08/31/22-lvm\r\n9/1/22-sent a copy of the consent form \r\n9/7/22-pt declined, not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31537":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"08/31/22-lvm\r\n09/01/22-sent copy of consent form ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31538":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/1/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31539":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"82","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"09/1/22-Participant declined being in the study ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31540":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/1/22-MB not set up ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31541":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"09/01/2022- She is under a lot of stress now and she does not have enough time to participate in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31542":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09/2/22-declined, not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31543":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"52","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/02/2022- Sent a copy of consent form.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31544":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/02/2022- Sent a copy of consent form.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31545":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"9/2/22-lvm\r\n9/7/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31546":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"42","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09/02/2022- Was contacted, the person answered said is wrong number.\r\n09/06/2022- she is not interested to participate in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31547":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"09/2/22-patient stated its too far of a drive","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31548":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09/02/2022- Patient is not interested in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31549":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/02/2022- wrong phone number","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31550":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/02/2022- sent a copy of consent form \r\n09/07/2022-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31551":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"9/2/22-Lvm\r\n9/7/22-Pt declined stated that it is too far of a drive and they are already worried about going to the city for their surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31552":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09/2/22-sent a copy of the consent form \r\n09/6/22-pt stated she is no longer interested in participating ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31553":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"09/02/2022- Sent a copy of consent form.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31554":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"09/02/2022- she will check her daughter availability/ sent a copy of consent form ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31555":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09/02/2022- Patient said she so is old to do all the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31556":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09/07/2022- Patient hospitalized. Son answer phone call and make decision on his behalf and declined his father participate in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31557":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"46","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09-07-2022- LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31558":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"57","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09-07-2022- LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31559":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"80","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09-07-2022- LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31560":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09-07-2022- Patient declined to participate in the study. He will change surgery date because healthy issues.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31561":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"9/07/2022-LVM.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31562":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"9/7/22-call could not go through ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31563":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"9/7/22-sent a copy of the consent form.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31564":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"75","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"9/7/22-pt states she is claustrophobic and cannot do the MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31565":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"9/7/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31566":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/07/2022- No answer","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31567":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"62","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"9/7/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31568":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"9/7/22-pt declined, too much going on ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31569":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"9/7/22-pt declined, too far ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31570":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"9/7/22-pt declined, too far ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31571":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31572":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"49","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31573":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"53","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31574":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"84","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"9/7/22-pt declined, does not have time ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31575":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30050":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-13","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Unable to contact for follow up on consent form. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30062":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-12","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt uninterested in participating in this study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30063":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-12","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt not interested in participating in this research study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30068":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-14","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She can't speak English. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30133":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-04-26","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient requested a copy of consent and asked that I not call again. He will contact me if he is interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30552":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt is not having surgery done at Rush. Stated Rush does not take his insurance. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30568":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30587":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-20","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30601":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30749":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"12/3: Requested call back Mon or Tues after 3\r\n12/6 - LVM \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30813":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-28","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30888":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"30950":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31011":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"2/21 - LVM\r\n2/22 - Returned my call, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31256":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Participant is not comfortable with doing MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31257":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to contact participant. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31262":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"05/18-LVM\r\n05/24-LVM\r\n05/26-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31263":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31264":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31274":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-20","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31277":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31280":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31281":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31282":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"05/24-LVM\r\n05/26-Spoke with, call back the next day \r\n06/06- Participant says she has no time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31265":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"1","ptinterest_comment":"Afraid to be out in public ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31323":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"06/07-lvm\r\n06/08-Particpant cannot drive from Indiana to Chicago ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31359":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-21","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/21/22-sent econsent\r\n06/22/22-lvm\r\n07/14/22-lvm\r\nUnable to make contact with","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31376":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/01/22-lvm\r\n07/12/22-lvm\r\n07/14/22-partcipant stated they have too much going on ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31423":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"07/20/22 - sent a copy of the consent form \r\n07/22/22-participant stated that the surgery was cancelled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31512":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31576":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31258":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"participant lives in IN and does not have the time commitment ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31259":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Cannot make it to Chicago ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31271":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31275":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"patient states she is too old ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31276":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"31260":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40001":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|1","ptinterest_comment":"Does not want to travel all the way to Evanston - too far from where he lives.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40002":{"redcap_data_access_group":"northshore","main_record_id":"10042","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-05-24","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke to pt on 5/28, sent consent form to review","obtain_date":"2021-05-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-23","sp_v1_preop_date":"2021-06-10","sp_v2_6wk_date":"2021-08-04","sp_v3_3mo_date":"2021-09-23","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"2021-09-29","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient's mother died and he couldn't find time to come in for the 3 month follow up visit.","sp_data_site":"N/A"},"40003":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"73","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"Patient declined participation due to only wanting to have tests that are needed for his surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40004":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient is very claustrophobic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40005":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-27","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson spoke to pt, and she expressed interest\r\nEG LM 5/28\r\nEG LM on 6/9/21","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40006":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"50","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"\"Not up for it\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40007":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-20","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Doesn't have time before his surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40008":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"VM has been left","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40009":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"VM has been left","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40010":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40011":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is unavailable to do study visit before her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40012":{"redcap_data_access_group":"northshore","main_record_id":"10047","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-08","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Very willing to participate ","obtain_date":"2021-06-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-06","sp_v1_preop_date":"2021-06-28","sp_v2_6wk_date":"2021-08-17","sp_v3_3mo_date":"2021-10-06","age":"54","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40013":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"\"Too busy, not enough time\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40014":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Takes care of her grandkids during the day, no time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40015":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too busy, does not want to fill out more questionnaires ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40016":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40017":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40018":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40019":{"redcap_data_access_group":"northshore","main_record_id":"10061","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-18","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-13","sp_v1_preop_date":"2021-07-07","sp_v2_6wk_date":"2021-08-24","sp_v3_3mo_date":"2021-10-13","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40020":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Sole caretaker for her elderly mother","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40021":{"redcap_data_access_group":"northshore","main_record_id":"10054","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-08","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient prefers to be called after 2:00pm","obtain_date":"2021-06-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-01","sp_v1_preop_date":"2021-06-23","sp_v2_6wk_date":"2021-08-12","sp_v3_3mo_date":"2021-10-01","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40022":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Out of town until just before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40023":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40024":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Already involved in another research study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40025":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40026":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much time commitment ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40027":{"redcap_data_access_group":"northshore","main_record_id":"10050","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-10","screening_age":"60","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-02","sp_v1_preop_date":"2021-06-22","sp_v2_6wk_date":"2021-08-13","sp_v3_3mo_date":"2021-10-02","age":"60","sex":"1","genident":"1","ethnic":"2","dem_race":"2","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-09-03 13:35:12","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Patient was asked at time of enrollment if he was planning on having his second knee replaced within three months of his first, and he said no. After having his first knee replaced, he has since scheduled to have his second knee done within 90 days. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40028":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to significant claustrophobia. Requires tranquilizers to have an open MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40030":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient is interested, but wants to go to Rush as he lives closer ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40031":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"58","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient declined due to having too much going on and he is still working","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40032":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"64","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient declined due to not being able to take time off","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40033":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Call patient after 2pm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40034":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is unavailable prior to his surgery to come in","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40035":{"redcap_data_access_group":"northshore","main_record_id":"10053","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-16","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-30","sp_v1_preop_date":"2021-06-24","sp_v2_6wk_date":"2021-08-11","sp_v3_3mo_date":"2021-09-30","age":"79","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40036":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is too busy","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40037":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to requiring too much time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40038":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to it being too much of a time commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40039":{"redcap_data_access_group":"northshore","main_record_id":"10059","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-22","screening_age":"80","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-14","sp_v1_preop_date":"2021-07-09","sp_v2_6wk_date":"2021-08-25","sp_v3_3mo_date":"2021-10-14","age":"80","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40040":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"74","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much time and distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40041":{"redcap_data_access_group":"northshore","main_record_id":"10060","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-22","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-15","sp_v1_preop_date":"2021-07-06","sp_v2_6wk_date":"2021-08-26","sp_v3_3mo_date":"2021-10-15","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40042":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"46","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient is working and doesn't have time to take half day off, will think about it but most likely a no.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40043":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Study was too involved","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40044":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is going through breast cancer treatment, doesn't have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40045":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Claustrophobic, and doesn't have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40046":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-22","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40047":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-23","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40048":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-23","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much time involved ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40049":{"redcap_data_access_group":"northshore","main_record_id":"10073","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-23","screening_age":"55","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-12","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-19","sp_v1_preop_date":"2021-07-13","sp_v2_6wk_date":"2021-08-30","sp_v3_3mo_date":"2021-10-19","age":"55","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40050":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-23","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt is not eligible due to middle ear implant we learned about after speaking to patient and checking with manufacturer ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40051":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Evanston is too far and too busy","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40052":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LM TKA-R (7/13/2021)\r\nTKA-L patient declined participation due to still working and not having the time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40053":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"45","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40054":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"70","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40055":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"attempted to leave VM, but none was set up","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40056":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40057":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"VM x2","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40058":{"redcap_data_access_group":"northshore","main_record_id":"10070","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-29","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-15","sp_v1_preop_date":"2021-07-08","sp_v2_6wk_date":"2021-08-26","sp_v3_3mo_date":"2021-10-15","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40059":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too busy to go Evanston; Getting ready to retire\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40060":{"redcap_data_access_group":"northshore","main_record_id":"10071","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-29","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-19","sp_v1_preop_date":"2021-07-14","sp_v2_6wk_date":"2021-08-30","sp_v3_3mo_date":"2021-10-19","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40061":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Watches her granddaughter and does not have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40062":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40063":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"69","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Hung up immediately ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40064":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Study is too involved","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40065":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-30","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to time commitment while getting ready for surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40066":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-30","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to time commitment while getting ready for surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40067":{"redcap_data_access_group":"northshore","main_record_id":"10077","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-30","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-27","sp_v1_preop_date":"2021-07-26","sp_v2_6wk_date":"2021-09-07","sp_v3_3mo_date":"2021-10-27","age":"59","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40068":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being busy with her other appointments and Evanston being too far away. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40069":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"68","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40070":{"redcap_data_access_group":"northshore","main_record_id":"10076","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-02","screening_age":"49","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-05","sp_v1_preop_date":"2021-07-29","sp_v2_6wk_date":"2021-09-16","sp_v3_3mo_date":"2021-11-05","age":"49","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-10-14 13:45:25","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient came in 7 days after the 6 week post op window. Was unable to reach patient prior.","erep_protdev_caplan":"Attempt to reach patient earlier.","erep_rel_covid19":"0"}}},"40071":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-02","screening_age":"72","screening_gender":"1","screening_race":"0","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"patient declined participation due to lack of interest and does not want to do it.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40072":{"redcap_data_access_group":"northshore","main_record_id":"10084","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-02","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-04","sp_v1_preop_date":"2021-07-28","sp_v2_6wk_date":"2021-09-15","sp_v3_3mo_date":"2021-11-04","age":"63","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-10-14 13:56:38","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient came in 8 days after their 6 week follow up visit window. Patient lives in Wyoming and flew in after the 6 week window.","erep_protdev_caplan":"None.","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-02-23 11:56:26","erep_ae_date":"2021-07-28","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2021-07-28 12:17","erep_resolution_date":"","erep_ae_severity":"1","erep_ae_relation":"","erep_ae_serious":"0","erep_ae_desc":"Patient went into scanner and became claustrophobic and hit the emergency squeeze button. Patient was pulled out of the scanner and the scan was stopped.","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40073":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-02","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to it being too much of a commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40074":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"patient is consider it","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40075":{"redcap_data_access_group":"northshore","main_record_id":"10075","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-01","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-03","sp_v1_preop_date":"2021-07-23","sp_v2_6wk_date":"2021-09-14","sp_v3_3mo_date":"2021-11-03","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40076":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"severe claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40077":{"redcap_data_access_group":"northshore","main_record_id":"10074","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-01","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-02","sp_v1_preop_date":"2021-07-30","sp_v2_6wk_date":"2021-09-13","sp_v3_3mo_date":"2021-11-02","age":"57","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40078":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40079":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to it being too much for him ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40080":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40081":{"redcap_data_access_group":"northshore","main_record_id":"10092","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-08","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-05","sp_v1_preop_date":"2021-08-02","sp_v2_6wk_date":"2021-09-16","sp_v3_3mo_date":"2021-11-05","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40082":{"redcap_data_access_group":"northshore","main_record_id":"10080","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-04-08","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-05","sp_v1_preop_date":"2021-07-22","sp_v2_6wk_date":"2021-09-16","sp_v3_3mo_date":"2021-11-05","age":"63","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40083":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-09","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Study is too involved ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40084":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-15","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40085":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"VM x2","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40086":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"VMx2 7/7;7/8\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40087":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"72","screening_gender":"3","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"VMx2 7/8\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40088":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40089":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"80","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Need detail on stent from card; VMx2 7/8\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40090":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"voice mail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40091":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40092":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Study is too much work","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40093":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LEFT VOICE MAIL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40094":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"56","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LEFT VOICE MAIL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40095":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LEFT VOICE MAIL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40096":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Widowed; Limited driving; No internet access\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40097":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Limited in traveling; Doesn't use e-mail or internet\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40098":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-14","screening_age":"85","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unwilling to travel to Evanston\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40099":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40100":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40101":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-14","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives in Wisconsin; Too far\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40102":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40103":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Call back Wed 2-4pm 7/7; Keep trying\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40104":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40105":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Evanston too far; ?Rush/UIC; Call back next week\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40106":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"10am Friday;VM\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40107":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"VMx2\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40108":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives in Elmhust; Too far\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40109":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"No voice mail; Called x3 - No answer\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40110":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40111":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-14","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Doesn't have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40112":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-15","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to living in Wisconsin and the distance being too far.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40113":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-15","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being the primary caregiver for his wife and not being able to leave her alone.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40114":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-15","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40115":{"redcap_data_access_group":"northshore","main_record_id":"10086","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-15","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-11","sp_v1_preop_date":"2021-08-03","sp_v2_6wk_date":"2021-09-22","sp_v3_3mo_date":"2021-11-11","age":"60","sex":"1","genident":"1","ethnic":"3","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40116":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"he decided it was too involved and doesn't want to go through 2 MRIs.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40117":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to it being too involved.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40118":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40119":{"redcap_data_access_group":"northshore","main_record_id":"10085","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-16","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-05","sp_v1_preop_date":"2021-07-29","sp_v2_6wk_date":"2021-09-16","sp_v3_3mo_date":"2021-11-05","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40120":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient is thinking about it and will get back to Dr. Wixson","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40121":{"redcap_data_access_group":"northshore","main_record_id":"10095","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-16","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-16","sp_v1_preop_date":"2021-08-04","sp_v2_6wk_date":"2021-09-27","sp_v3_3mo_date":"2021-11-16","age":"57","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40122":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-20","screening_age":"84","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"patient declined participation due to having decided at her age that she would only do things she wants to do.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40123":{"redcap_data_access_group":"northshore","main_record_id":"10094","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-07-20","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-10","sp_v1_preop_date":"2021-08-05","sp_v2_6wk_date":"2021-09-21","sp_v3_3mo_date":"2021-11-10","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40124":{"redcap_data_access_group":"northshore","main_record_id":"10093","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-22","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-18","sp_v1_preop_date":"2021-08-12","sp_v2_6wk_date":"2021-09-29","sp_v3_3mo_date":"2021-11-18","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40125":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Going out of town, unable to participate ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40126":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Husband just had surgery, and she doesn't have time to do study before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40127":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too busy and may cancel","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40128":{"redcap_data_access_group":"northshore","main_record_id":"10091","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-22","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-18","sp_v1_preop_date":"2021-08-09","sp_v2_6wk_date":"2021-09-29","sp_v3_3mo_date":"2021-11-18","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-02-23 11:58:31","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2021-08-09 12:19","erep_resolution_date":"","erep_ae_severity":"1","erep_ae_relation":"","erep_ae_serious":"0","erep_ae_desc":"Patient became claustrophobic during the MRI scan and pressed the emergency squeeze button and the scan was stopped. ","erep_action_taken":"Continue to be in the study. No MRI in the future.","erep_outcome":"","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40129":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient will be leaving Illinois for the winter soon and cannot participate ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40130":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40131":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":" the patient declined participation due to not wanting to have to go for extra visits at Evanston hospital","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40132":{"redcap_data_access_group":"northshore","main_record_id":"10100","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-22","screening_age":"74","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-16","sp_v1_preop_date":"2021-08-10","sp_v2_6wk_date":"2021-09-27","sp_v3_3mo_date":"2021-11-16","age":"74","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40133":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being out of town before her surgery and Evanston is too far from where she lives near the Wisconsin border. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40134":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"66","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"the patient wanted to think about it. Dr Wixson sent her the A2CPS information brochure through NSC and will call her back next week.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40135":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"surgery canceled","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40136":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too busy to take the time since she has kids, college, is working and has not extra time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40137":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too far ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40138":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40139":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient doesn't have time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40140":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"73","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia and presence of an implanted pain stimulator","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40141":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40142":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"312-933-9683","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40143":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"76","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40144":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"too much of a time commitment and not being interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40145":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too far","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40146":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40147":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"wants to think about it over the weekend\r\n- patient declined participation due to it being too much for her to commit to","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40148":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40149":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-30","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40150":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-30","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to having a special needs daughter at home that she cannot leave alone for the time needed for the testing. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40151":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"declined participation due to lack of time since he is a solo practice attorney working up until surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40152":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"76","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40153":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40154":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40155":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40156":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Way too busy to take the time\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40157":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40158":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40159":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40161":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40162":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient said she had no time at all to come in before her scheduled surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40163":{"redcap_data_access_group":"northshore","main_record_id":"10220","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-04","screening_age":"66","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-11","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-01","sp_v1_preop_date":"2021-11-24","sp_v2_6wk_date":"2022-01-12","sp_v3_3mo_date":"2022-03-02","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"2","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"2":{"erep_local_dtime":"2022-03-09 11:26:57","erep_ae_date":"2022-03-08","erep_visit_inv":"4","erep_ae_yn":"1","erep_onset_date":"2022-03-08 12:21","erep_resolution_date":"","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Patient had her blood drawn at the phlebotomy lab, by a trained phlebotomist. After the blood was drawn, the patient said that it was more painful than normal. Some time later there was some swelling at the blood draw location. Patient then called the next day and said she had a hematoma where the blood draw occurred. She said it decreased in size when she applied pressure. All relevant information was relayed to PI, Dr. Wixson. ","erep_action_taken":"Patient will continue to be in study. There are no more in person visits for this patient and she wishes to remain in the study.","erep_outcome":"Patient said it seemed to be resolving and would contact Northshore if it got worse. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40164":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40165":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40166":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too involved and doesn't want to go to Evanston\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40167":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"60","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VMx2","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40168":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40169":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"84","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40170":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40171":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VMx2","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40172":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"55","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40173":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM, MedHx OK; Cancelled call 7/23; VM7/29\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40174":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"69","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40175":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Surgery 7/28/21\r\nDr. Wixson VMx2 7/7;7/8\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40176":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VMx2\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40177":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"After reviewing the consent form, patient was concerned about data security. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40178":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to it being too much for her to commit to","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40179":{"redcap_data_access_group":"northshore","main_record_id":"10101","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-08-06","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-01","sp_v1_preop_date":"2021-08-17","sp_v2_6wk_date":"2021-10-13","sp_v3_3mo_date":"2021-12-01","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40180":{"redcap_data_access_group":"northshore","main_record_id":"10116","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-08-10","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-02","sp_v1_preop_date":"2021-08-26","sp_v2_6wk_date":"2021-10-14","sp_v3_3mo_date":"2021-12-02","age":"78","sex":"1","genident":"1","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40181":{"redcap_data_access_group":"northshore","main_record_id":"10105","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-10","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-12","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-30","sp_v1_preop_date":"2021-08-20","sp_v2_6wk_date":"2021-10-11","sp_v3_3mo_date":"2021-11-30","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40182":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-10","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40183":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-10","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Evanston is too far from him.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40184":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-10","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40185":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-10","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient is canceling surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40186":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-10","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient has to work every day leading up to surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40187":{"redcap_data_access_group":"northshore","main_record_id":"10104","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-08-11","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-12","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-08","sp_v1_preop_date":"2021-08-19","sp_v2_6wk_date":"2021-10-20","sp_v3_3mo_date":"2021-12-08","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40188":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient doesn't have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40189":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"patient declined participation due to being too disabled by other problems to get to Evanston.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40190":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-12","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40191":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-12","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"pt declined participation due to previous claustrophobic experiences in an MRI machine.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40192":{"redcap_data_access_group":"northshore","main_record_id":"10117","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-12","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-02","sp_v1_preop_date":"2021-08-27","sp_v2_6wk_date":"2021-10-14","sp_v3_3mo_date":"2021-12-02","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40193":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to leaving for Palm Springs 8 weeks after surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40194":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"70","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to having too much else going on before her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40195":{"redcap_data_access_group":"northshore","main_record_id":"10113","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-13","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-14","sp_v1_preop_date":"2021-09-08","sp_v2_6wk_date":"2021-10-26","sp_v3_3mo_date":"2021-12-14","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40196":{"redcap_data_access_group":"northshore","main_record_id":"10118","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-13","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-08","sp_v1_preop_date":"2021-08-30","sp_v2_6wk_date":"2021-10-20","sp_v3_3mo_date":"2021-12-08","age":"51","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40197":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"too far to travel and not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40198":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt is too busy before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40199":{"redcap_data_access_group":"northshore","main_record_id":"10112","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-16","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-14","sp_v1_preop_date":"2021-08-25","sp_v2_6wk_date":"2021-10-26","sp_v3_3mo_date":"2021-12-14","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40200":{"redcap_data_access_group":"northshore","main_record_id":"10111","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-16","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-13","sp_v1_preop_date":"2021-09-02","sp_v2_6wk_date":"2021-10-25","sp_v3_3mo_date":"2021-12-13","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40201":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-17","screening_age":"45","screening_gender":"2","screening_race":"4","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40202":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-17","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40204":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-18","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"the patient declined participation due to not wanting to.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40205":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-18","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Evanston too far","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40206":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-18","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40207":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"due to not wanting to do anything extra before her surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40208":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"due to having too much else going on","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40209":{"redcap_data_access_group":"northshore","main_record_id":"10122","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-20","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-15","sp_v1_preop_date":"2021-09-02","sp_v2_6wk_date":"2021-10-27","sp_v3_3mo_date":"2021-12-15","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40210":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"due to planning on cancelling surgery leaving for Arizona for the winter at end of October","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40211":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40212":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"due to leaving for Florida for the winter 8 weeks after surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40213":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40214":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40215":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"50","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"She does not drive and can only participate if transportation can be arranged","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40216":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient has mold in her basement and doesn't have time to come in before surgery - soft decline","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40217":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-25","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient was initially interested, but now is overwhelmed and doesn't have time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40218":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"2","ptinterest_comment":"compensation inadequate for all that time and having two MRIs.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40219":{"redcap_data_access_group":"northshore","main_record_id":"10128","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-24","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-03","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-21","sp_v1_preop_date":"2021-09-07","sp_v2_6wk_date":"2021-11-02","sp_v3_3mo_date":"2021-12-21","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40220":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to having too much else going on at this time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40221":{"redcap_data_access_group":"northshore","main_record_id":"10138","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-24","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"She is a nurse and knowledgeable. Had L TKA Nov 2020 with a lot of pain and difficult recovery. Experiences severe fibromyalgia.. ","obtain_date":"2021-09-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-21","sp_v1_preop_date":"2021-09-13","sp_v2_6wk_date":"2021-11-02","sp_v3_3mo_date":"2021-12-21","age":"56","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40222":{"redcap_data_access_group":"northshore","main_record_id":"10141","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-24","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-21","sp_v1_preop_date":"2021-09-17","sp_v2_6wk_date":"2021-11-02","sp_v3_3mo_date":"2021-12-21","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40223":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"68","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40224":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-31","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"1","ptinterest_comment":"patient declined participation due to concern about an unnecessary hospital visit with increasing incidence of Delta variant, particularly since his is immunocompromised due to Crohn's disease","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40225":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-31","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to leaving town in November for the winter.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40226":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-31","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40227":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-01","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Evanston is too far away","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40228":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-01","screening_age":"73","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too busy ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40229":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-02","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"9/9/21 After reviewing the information on the study the patient called back Dr. Wixson and declined participation in the study. No reason given.\r\n\r\nAfter discussing it and clarifying what was involved, she wants to think about and see if she will have time. I sent her the information brochure on the study and will reach out again next week.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40230":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-02","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40231":{"redcap_data_access_group":"northshore","main_record_id":"10139","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-03","screening_age":"60","screening_gender":"3","screening_race":"1","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-28","sp_v1_preop_date":"2021-09-14","sp_v2_6wk_date":"2021-11-08","sp_v3_3mo_date":"2021-12-28","age":"60","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40232":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"patient declined participation due to having just completed a knee pain study at Northwestern that was similar and does not want to do it again.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40233":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to Evanston being too far.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40234":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"1","ptinterest_comment":"patient declined participation due to fear of increased exposure to the Delta covid-19 variant before her surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40235":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"47","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to transportation issues. Car is in body shop and taking bus too difficult.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40236":{"redcap_data_access_group":"northshore","main_record_id":"10145","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-07","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-29","sp_v1_preop_date":"2021-09-16","sp_v2_6wk_date":"2021-11-09","sp_v3_3mo_date":"2021-12-29","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40237":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40238":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-07","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40239":{"redcap_data_access_group":"northshore","main_record_id":"10137","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-09-08","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-28","sp_v1_preop_date":"2021-09-23","sp_v2_6wk_date":"2021-11-08","sp_v3_3mo_date":"2021-12-28","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40240":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-08","screening_age":"62","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too busy.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40241":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-09","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia and not wanting to have an MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40242":{"redcap_data_access_group":"northshore","main_record_id":"10140","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-09-10","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-04","sp_v1_preop_date":"2021-10-01","sp_v2_6wk_date":"2021-11-14","sp_v3_3mo_date":"2022-01-03","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-09-18","ewprimaryreason":"1","ewdisreasons":"5|1","ewpireason":"N/A","ewcomments":"Patient emailed and would like to withdraw from the study. Gave no reason.","sp_data_site":"N/A"},"40243":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-10","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to it being too involved.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40244":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Surgery was canceled ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40245":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-13","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40246":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-10","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being interested and too far.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40247":{"redcap_data_access_group":"northshore","main_record_id":"10157","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-10","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-05","sp_v1_preop_date":"2021-09-28","sp_v2_6wk_date":"2021-11-15","sp_v3_3mo_date":"2022-01-04","age":"68","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40248":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-10","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient called back and declined participation due to having too much going on now.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40249":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-10","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to having to care for a son-in-law undergoing cancer treatment at UCH.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40250":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-14","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not being able to take time off from work","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40251":{"redcap_data_access_group":"northshore","main_record_id":"10151","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-14","screening_age":"54","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Her car is still being repaired so timing/transportation may be an issue. \r\nLH left message 9/15/21","obtain_date":"2021-09-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-29","sp_v1_preop_date":"2021-09-27","sp_v2_6wk_date":"2021-11-09","sp_v3_3mo_date":"2021-12-29","age":"54","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40252":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-14","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being the type of person who does this type of thing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40253":{"redcap_data_access_group":"northshore","main_record_id":"10160","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-15","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-05","sp_v1_preop_date":"2021-09-28","sp_v2_6wk_date":"2021-11-15","sp_v3_3mo_date":"2022-01-04","age":"76","sex":"2","genident":"2","ethnic":"2","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40254":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working and no time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40255":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working and not having time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40256":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"65","screening_gender":"1","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much time commitment ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40257":{"redcap_data_access_group":"northshore","main_record_id":"10164","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-18","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-12","sp_v1_preop_date":"2021-10-05","sp_v2_6wk_date":"2021-11-22","sp_v3_3mo_date":"2022-01-11","age":"65","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40258":{"redcap_data_access_group":"northshore","main_record_id":"10161","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-17","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-12","sp_v1_preop_date":"2021-10-04","sp_v2_6wk_date":"2021-11-22","sp_v3_3mo_date":"2022-01-11","age":"72","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40259":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40260":{"redcap_data_access_group":"northshore","main_record_id":"10163","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-16","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-12","sp_v1_preop_date":"2021-10-05","sp_v2_6wk_date":"2021-11-22","sp_v3_3mo_date":"2022-01-11","age":"57","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40261":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"83","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to it being too involved","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40262":{"redcap_data_access_group":"northshore","main_record_id":"10162","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-09-16","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-07","sp_v1_preop_date":"2021-10-04","sp_v2_6wk_date":"2021-11-17","sp_v3_3mo_date":"2022-01-06","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40263":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"planning to have a 2nd knee replacement within 3 months","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40264":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-20","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40265":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-21","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40266":{"redcap_data_access_group":"northshore","main_record_id":"10165","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-21","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-13","sp_v1_preop_date":"2021-10-07","sp_v2_6wk_date":"2021-11-23","sp_v3_3mo_date":"2022-01-12","age":"78","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40267":{"redcap_data_access_group":"northshore","main_record_id":"10158","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-24","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-18","sp_v1_preop_date":"2021-09-29","sp_v2_6wk_date":"2021-11-28","sp_v3_3mo_date":"2022-01-17","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40268":{"redcap_data_access_group":"northshore","main_record_id":"10175","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-22","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-13","sp_v1_preop_date":"2021-10-06","sp_v2_6wk_date":"2021-11-23","sp_v3_3mo_date":"2022-01-12","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40269":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to developing significant back pain lying in MRI scanner. Othwerwise, would be willing to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40270":{"redcap_data_access_group":"northshore","main_record_id":"10172","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-09-22","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-04","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-13","sp_v1_preop_date":"2021-10-11","sp_v2_6wk_date":"2021-11-23","sp_v3_3mo_date":"2022-01-12","age":"78","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2021-10-11","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40271":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation since he doesn't do that type of thing.\r\nDecline again for second knee 4/25","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40272":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not driving and distance being too far.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40273":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":" the patient declined participation due to being too busy at work and getting ready for surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40274":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to transportation difficulties and time commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40275":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":" the patient called me back that he would not be able to take time off from work before the surgery and declined participation.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40276":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to having too much else going on.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40277":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"71","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40278":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-23","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"patient declined participation due to living in Wheaton with a hour drive to Evanston and being worked up for acute sciatica.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40279":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-23","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to being too busy at work getting ready for surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40280":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to having too much else going on in their personal lives.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40281":{"redcap_data_access_group":"northshore","main_record_id":"10168","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-24","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-18","sp_v1_preop_date":"2021-10-12","sp_v2_6wk_date":"2021-11-28","sp_v3_3mo_date":"2022-01-17","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40282":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being unable to take time off from work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40283":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to privacy concerns.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40284":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"75","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not having time and not wanting to go to Evanston.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40285":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"68","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia. Otherwise, she would have been willing to participate.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40286":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-24","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia. Otherwise, he would have been willing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40287":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to time commitment would be strain on wife.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40288":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to severe claustrophobia, otherwise would have been willing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40289":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"70","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being interested in research.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40290":{"redcap_data_access_group":"northshore","main_record_id":"10167","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-27","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-21","sp_v1_preop_date":"2021-10-13","sp_v2_6wk_date":"2021-12-01","sp_v3_3mo_date":"2022-01-20","age":"78","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40291":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"69","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being able to participate due to work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40292":{"redcap_data_access_group":"northshore","main_record_id":"10197","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-09-27","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-25","sp_v1_preop_date":"2021-10-22","sp_v2_6wk_date":"2021-12-05","sp_v3_3mo_date":"2022-01-24","age":"70","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40293":{"redcap_data_access_group":"northshore","main_record_id":"10166","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-27","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-25","sp_v1_preop_date":"2021-10-18","sp_v2_6wk_date":"2021-12-05","sp_v3_3mo_date":"2022-01-24","age":"73","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40294":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40295":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"77","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to still working and not being able to take the time off.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40296":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-28","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to leaving town for the winter at 4 weeks after surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40297":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-28","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being out of town until just before surgery.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40298":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-28","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":" the patient declined participation due to being unable to take time off from work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40299":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-28","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40300":{"redcap_data_access_group":"northshore","main_record_id":"10179","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-28","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-26","sp_v1_preop_date":"2021-10-14","sp_v2_6wk_date":"2021-12-06","sp_v3_3mo_date":"2022-01-25","age":"78","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40301":{"redcap_data_access_group":"northshore","main_record_id":"10171","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-30","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-04","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-01","sp_v1_preop_date":"2021-10-22","sp_v2_6wk_date":"2021-12-13","sp_v3_3mo_date":"2022-01-31","age":"73","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40302":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He is trying to \"work for a living\" and doesn't have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40303":{"redcap_data_access_group":"northshore","main_record_id":"10191","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-30","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"His son is a researcher who does clinical trials. May want to review consent form","obtain_date":"2021-10-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-01","sp_v1_preop_date":"2021-10-25","sp_v2_6wk_date":"2021-12-13","sp_v3_3mo_date":"2022-01-31","age":"73","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2021-10-26 15:35:10","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2021-10-26 07:35","erep_resolution_date":"","erep_ae_severity":"1","erep_ae_relation":"2","erep_ae_serious":"0","erep_ae_desc":"The visit went fine. After the MRI, the patient was a little dizzy after laying down for an hour. MRI tech had him sit for a while until he felt well enough to stand up. He then got changed and I walked him to the front without incident. He verbally told me he felt fine and found the study interesting. He then left me a voicemail early this morning claiming the MRI gave him vertigo and the vertigo is still happening this morning. He said in the past he has used \"healing crystals\" to help as he has had vertigo issues before.","erep_action_taken":"I communicated this issue to the PI, and spoke to the patient. I recommended that the patient follow up with his primary care doctor.","erep_outcome":"Patient is going to follow up with his Primary care if the vertigo persists.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40304":{"redcap_data_access_group":"northshore","main_record_id":"10170","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-30","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"She is having a simple R TKRevision surgery and does not have much pain to start with compared to knee osteoarthritis","obtain_date":"2021-10-04","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-02","sp_v1_preop_date":"2021-10-21","sp_v2_6wk_date":"2021-12-14","sp_v3_3mo_date":"2022-02-01","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40305":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"66","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient was contacted for participation in the study. After discussing it and clarifying what was involved, the patient declined participation due to working all day.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40306":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to it being too involved.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40307":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"78","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"the patient declined participation due to not being sure his insurance company will authorize the surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40308":{"redcap_data_access_group":"northshore","main_record_id":"10203","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-30","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-01","sp_v1_preop_date":"2021-10-27","sp_v2_6wk_date":"2021-12-13","sp_v3_3mo_date":"2022-01-31","age":"59","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40309":{"redcap_data_access_group":"northshore","main_record_id":"10180","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-30","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-11","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-01","sp_v1_preop_date":"2021-10-26","sp_v2_6wk_date":"2021-12-13","sp_v3_3mo_date":"2022-01-31","age":"70","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40310":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to Evanston being too far away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40311":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"73","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to busy with other activities.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40312":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"patient declined participation due to planning a 2nd TKA within 3 months and being concerned about having to travel to Evanston in the winter.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40313":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-05","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to having too tight a schedule.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40314":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-05","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":" the patient declined participation due to being out of town in Louisiana in response to the hurricane until just before surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40315":{"redcap_data_access_group":"northshore","main_record_id":"10177","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-05","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-01","sp_v1_preop_date":"2021-10-20","sp_v2_6wk_date":"2021-12-13","sp_v3_3mo_date":"2022-01-31","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40316":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-05","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too busy before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40317":{"redcap_data_access_group":"northshore","main_record_id":"10206","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-06","screening_age":"48","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-04","sp_v1_preop_date":"2021-10-27","sp_v2_6wk_date":"2021-12-16","sp_v3_3mo_date":"2022-02-03","age":"48","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40318":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too much of a wimp and too many other doctor appointments.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40319":{"redcap_data_access_group":"northshore","main_record_id":"10190","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-07","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-25","sp_v1_preop_date":"2021-10-21","sp_v2_6wk_date":"2021-12-05","sp_v3_3mo_date":"2022-01-24","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40320":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"patient declined participation due to being too busy at work prior to surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40321":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia, however he would have otherwise participated","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40322":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia, however he otherwise would have participated","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40323":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to leaving town for the winter at two months postop","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40324":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Time-related issue","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40325":{"redcap_data_access_group":"northshore","main_record_id":"10182","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-07","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-12","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-11","sp_v1_preop_date":"2021-10-28","sp_v2_6wk_date":"2021-12-23","sp_v3_3mo_date":"2022-02-10","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40326":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"involving too much time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40327":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40328":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"53","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"time related","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40329":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Still is working and doesn't have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40330":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"no reason","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40331":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"time related","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40332":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"After reviewing the consent, study was too overwhelming ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40333":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40334":{"redcap_data_access_group":"northshore","main_record_id":"10192","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-12","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-11","sp_v1_preop_date":"2021-10-29","sp_v2_6wk_date":"2021-12-23","sp_v3_3mo_date":"2022-02-10","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"2":{"erep_local_dtime":"2022-03-09 14:30:56","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient was brought in outside of their window per protocol.","erep_protdev_caplan":"","erep_rel_covid19":"1"}}},"40335":{"redcap_data_access_group":"northshore","main_record_id":"10185","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-12","screening_age":"78","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-09","sp_v1_preop_date":"2021-11-03","sp_v2_6wk_date":"2021-12-21","sp_v3_3mo_date":"2022-02-08","age":"78","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"2":{"erep_local_dtime":"2022-03-09 14:29:48","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient was brought in outside of their window per protocol.","erep_protdev_caplan":"","erep_rel_covid19":"1"}}},"40336":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-13","screening_age":"60","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"procedure in 2016 involved placing a titanium plate over the skull defect, which could be problematic for the brain fMRI. Advised that we should not move forward with including her in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40337":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Is not interested due to the MRI portion of the study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40338":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40339":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40340":{"redcap_data_access_group":"northshore","main_record_id":"10215","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-15","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-09","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-19","sp_v1_preop_date":"2021-11-11","sp_v2_6wk_date":"2021-12-31","sp_v3_3mo_date":"2022-02-18","age":"63","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40341":{"redcap_data_access_group":"northshore","main_record_id":"10194","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-15","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-17","sp_v1_preop_date":"2021-11-03","sp_v2_6wk_date":"2021-12-29","sp_v3_3mo_date":"2022-02-16","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40342":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"60","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to busy at work leading up to surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40343":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to being too busy and planning 2nd TKA in two months","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40344":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-20","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40345":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-20","screening_age":"50","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40346":{"redcap_data_access_group":"northshore","main_record_id":"10198","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-20","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-16","sp_v1_preop_date":"2021-11-10","sp_v2_6wk_date":"2021-12-28","sp_v3_3mo_date":"2022-02-15","age":"75","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40347":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-20","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient\u00a0was excluded\u00a0due to planning on having his 2nd TKA within 3 months","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40348":{"redcap_data_access_group":"northshore","main_record_id":"10205","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-21","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-17","sp_v1_preop_date":"2021-11-11","sp_v2_6wk_date":"2021-12-29","sp_v3_3mo_date":"2022-02-16","age":"73","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40349":{"redcap_data_access_group":"northshore","main_record_id":"10202","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-22","screening_age":"62","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-22","sp_v1_preop_date":"2021-11-15","sp_v2_6wk_date":"2022-01-03","sp_v3_3mo_date":"2022-02-21","age":"62","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40350":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"He is an attorney and is still on trial and doesn't have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40351":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40352":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40353":{"redcap_data_access_group":"northshore","main_record_id":"10199","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-22","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-15","sp_v1_preop_date":"2021-11-12","sp_v2_6wk_date":"2021-12-27","sp_v3_3mo_date":"2022-02-14","age":"69","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"2":{"erep_local_dtime":"2022-02-23 12:00:20","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2021-11-12 12:20","erep_resolution_date":"","erep_ae_severity":"1","erep_ae_relation":"","erep_ae_serious":"0","erep_ae_desc":"Patient became claustrophobic during the MRI scan and pressed the emergency squeeze button and the scan was stopped. ","erep_action_taken":"Still in the study, no MRI in the future","erep_outcome":"","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40354":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Single mom and does not have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40355":{"redcap_data_access_group":"northshore","main_record_id":"10231","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-22","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-02","sp_v1_preop_date":"2021-11-23","sp_v2_6wk_date":"2022-01-13","sp_v3_3mo_date":"2022-03-03","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40356":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"72","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40357":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"76","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"severe claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40358":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"too busy and claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40359":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40360":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt is not eligible for the study after further MRI review","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40361":{"redcap_data_access_group":"northshore","main_record_id":"10207","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-26","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-19","sp_v1_preop_date":"2021-11-09","sp_v2_6wk_date":"2021-12-31","sp_v3_3mo_date":"2022-02-18","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40362":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40363":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"spinal cord stimulator incompatible with MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40364":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Left several voicemails, never heard back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40365":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-29","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to not wanting to have to come back in the winter with ice/snow; too busy; Evanston Hosp parking lot too difficult and will not allow anyone to drive her care including the valet parking attendants.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40366":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-29","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient was contacted for participation in the study. After discussing it and clarifying what was involved, the patient declined participation due to claustrophobia. Otherwise, he would have considered participating.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40367":{"redcap_data_access_group":"northshore","main_record_id":"10221","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-29","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-01","sp_v1_preop_date":"2021-11-18","sp_v2_6wk_date":"2022-01-12","sp_v3_3mo_date":"2022-03-02","age":"69","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"2":{"erep_local_dtime":"2022-03-03 14:01:21","erep_ae_date":"2022-03-03","erep_visit_inv":"4","erep_ae_yn":"1","erep_onset_date":"2022-03-03 13:00","erep_resolution_date":"2022-03-03 13:10","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Patient came in for their three month visit. During the MRI scan the patient said she had post-nasal drip and reflux issues when she was laying down in the scanner and she asked to be pulled out. She then dry heaved a little bit. There was no further incident. She did not complete the scan because of this.","erep_action_taken":"NO further action","erep_outcome":"Scan was not completed.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40368":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-29","screening_age":"72","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Left several voicemails, never heard back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40369":{"redcap_data_access_group":"northshore","main_record_id":"10238","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-29","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-09","sp_v1_preop_date":"2021-12-03","sp_v2_6wk_date":"2022-01-20","sp_v3_3mo_date":"2022-03-10","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40370":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-29","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too busy between now and her surgery date to commit that much time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40371":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-29","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to living in Libertyville and not being interested.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40372":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40374":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"43","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to working full time up until her surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40375":{"redcap_data_access_group":"northshore","main_record_id":"10211","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-03","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-17","sp_v1_preop_date":"2021-11-15","sp_v2_6wk_date":"2021-12-29","sp_v3_3mo_date":"2022-02-16","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40376":{"redcap_data_access_group":"northshore","main_record_id":"10212","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-04","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-06","sp_v1_preop_date":"2021-11-16","sp_v2_6wk_date":"2022-01-17","sp_v3_3mo_date":"2022-03-07","age":"N/A","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40377":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to distance from where she lives in Dyer, IN.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40378":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"left multiple VM, never heard back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40379":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too busy","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40380":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40381":{"redcap_data_access_group":"northshore","main_record_id":"10223","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-05","screening_age":"50","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-15","sp_v1_preop_date":"2021-12-09","sp_v2_6wk_date":"2022-01-26","sp_v3_3mo_date":"2022-03-16","age":"50","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40382":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"55","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40384":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40385":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Could not accommodate his schedule\r\n - second TKA scheduled on 3/7/2022 - declined on 2/22/2022 - no reason given","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40386":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to it being too much of a commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40387":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to it being more than she wants to be involved in.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40388":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"65","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to having to attend to too many other medical issues prior to his surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40389":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40390":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"67","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40391":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40392":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40393":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40394":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40395":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40396":{"redcap_data_access_group":"northshore","main_record_id":"10234","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-10","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-15","sp_v1_preop_date":"2021-12-02","sp_v2_6wk_date":"2022-01-26","sp_v3_3mo_date":"2022-03-16","age":"77","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40397":{"redcap_data_access_group":"northshore","main_record_id":"10246","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-11","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-14","sp_v1_preop_date":"2021-12-08","sp_v2_6wk_date":"2022-01-25","sp_v3_3mo_date":"2022-03-15","age":"68","sex":"2","genident":"2","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40398":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-11","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40399":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-17","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"doesn't have time before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40400":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-17","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40401":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-17","screening_age":"52","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40402":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-17","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40403":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Left several VMs","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40404":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt is having neck surgery and may have to delay TKA, will reach out again after Thanksgiving","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40405":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia. Otherwise, he would have been willing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40406":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working and not having the time available.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40407":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"66","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40408":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"53","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40409":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Works full time and can't take time off before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40410":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40411":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-22","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to having a spinal cord stimulator and unable to have an MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40412":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"63","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40413":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40414":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-29","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to busy between now and her surgery date.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40415":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-29","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to leaving town on vacation until just before her surgery and not having time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40416":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40417":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to not being able to drive or fill out forms. Only his wife can communicate for him","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40418":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"68","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to already having an MRI of her knee and not needing another one","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40419":{"redcap_data_access_group":"northshore","main_record_id":"10250","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-30","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-09","sp_v1_preop_date":"2021-12-20","sp_v2_6wk_date":"2022-03-23","sp_v3_3mo_date":"2022-05-09","age":"81","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40420":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to being too busy to take the time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40421":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40422":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"77","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40423":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40424":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to it being too involved","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40425":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40426":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to being uncomfortable having and MRI and having to remove her glucose monitor","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40427":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to still having to come to terms with needing a knee replacement much less anything else.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40428":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being a FedEx driver with no time between now and surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40429":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to Evanston being too far away and being too busy with the Holidays and going away between now and his surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40430":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40431":{"redcap_data_access_group":"northshore","main_record_id":"10257","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-09","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-15","sp_v1_preop_date":"2021-12-22","sp_v2_6wk_date":"2022-03-29","sp_v3_3mo_date":"2022-05-15","age":"72","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40432":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40433":{"redcap_data_access_group":"northshore","main_record_id":"10258","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-09","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-28","sp_v1_preop_date":"2022-02-24","sp_v2_6wk_date":"2022-04-11","sp_v3_3mo_date":"2022-05-28","age":"77","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40434":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-09","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"leaves town after the surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40435":{"redcap_data_access_group":"northshore","main_record_id":"10253","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-10","screening_age":"73","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-01-04","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40436":{"redcap_data_access_group":"northshore","main_record_id":"10264","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-10","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-01-06","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-01-07","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"Patient's surgery was cancelled due to increase in COVID cases. Unable to bring in when surgery was rescheduled because in person research had not been re-started. ","sp_data_site":"N/A"},"40437":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Left several VM, never heard back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40438":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40439":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to being too busy","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40440":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too busy","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40441":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-14","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"still working full time and distance ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40442":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-15","screening_age":"73","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to the time commitment","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40443":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-15","screening_age":"61","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to being primarily concerned about how she was going to do with the surgery rather than participating in a research study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40444":{"redcap_data_access_group":"northshore","main_record_id":"10263","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-16","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-01-11","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-01-07","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"Patient's surgery was canceled due to COVID cases increasing in January. Patient was attempted to be re-contacted, but was unreachable. ","sp_data_site":"N/A"},"40445":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too much of a time commitment","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40446":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-15","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"the patient declined participation due to \"not wanting to do it\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40447":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-17","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"patient declined participation due to feeling she is not a good candidate for research","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40448":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Did not like the genetic language in the consent","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40449":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"48","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":" the patient is going to think about it and will call us back after the New Year if he is interested in pursuing it","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40450":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"68","screening_gender":"1","screening_race":"1","screening_ethnicity":"0","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40451":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-21","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40452":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40453":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to distance to Evanston Hospital too far.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40454":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to leaving town as soon as possible after his surgery.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40455":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-21","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to claustrophobia with MRIs. Otherwise, would consider participating","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40456":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-21","screening_age":"74","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to being too busy at work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40457":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-21","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40458":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-22","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40459":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-22","screening_age":"79","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40460":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-22","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working full time until just before her surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40461":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"12/22/2021 the patient is not inclined to participate but wants to consider it and will get back to us if decides.\r\nsurgery rescheduled from January to March due to Covid situation\r\n2/14/2022 pt did not want to participate because of the brain MRI involved","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40462":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-22","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to still working full time until just before her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40463":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-22","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to running our emergency room in the middle of a covid surge and having no time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40464":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-22","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40465":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-22","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to it being too much time and effort.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40466":{"redcap_data_access_group":"northshore","main_record_id":"10285","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-04","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-11","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-22","sp_v1_preop_date":"2022-02-15","sp_v2_6wk_date":"2022-04-05","sp_v3_3mo_date":"2022-05-22","age":"71","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40467":{"redcap_data_access_group":"northshore","main_record_id":"10288","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-08","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-22","sp_v1_preop_date":"2022-02-17","sp_v2_6wk_date":"2022-04-05","sp_v3_3mo_date":"2022-05-22","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40468":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Pt is interested, but currently no days on the schedule work. Will give her a call if something opens up","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40469":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"patient declined participation due to having just retired and wanting to relax","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40470":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to not being able to take time off from work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40471":{"redcap_data_access_group":"northshore","main_record_id":"10400","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-08","screening_age":"56","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-23","sp_v1_preop_date":"2022-06-13","sp_v2_6wk_date":"2022-08-04","sp_v3_3mo_date":"2022-09-23","age":"57","sex":"1","genident":"N/A","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40472":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Can't take time off from work","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40473":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40474":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Totally booked","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40475":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"pt declined participation due to not having enough time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40476":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40477":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"78","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too much involvement","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40478":{"redcap_data_access_group":"northshore","main_record_id":"10293","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-15","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-02","sp_v1_preop_date":"2022-02-23","sp_v2_6wk_date":"2022-04-13","sp_v3_3mo_date":"2022-06-02","age":"63","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40479":{"redcap_data_access_group":"northshore","main_record_id":"10294","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-15","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-02","sp_v1_preop_date":"2022-02-23","sp_v2_6wk_date":"2022-04-13","sp_v3_3mo_date":"2022-06-02","age":"74","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40480":{"redcap_data_access_group":"northshore","main_record_id":"10300","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-16","screening_age":"79","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-04","sp_v1_preop_date":"2022-02-25","sp_v2_6wk_date":"2022-04-15","sp_v3_3mo_date":"2022-06-04","age":"N/A","sex":"2","genident":"2","ethnic":"N/A","dem_race":"2","ewdateterm":"2022-03-02","ewprimaryreason":"1","ewdisreasons":"4","ewpireason":"N/A","ewcomments":"Could not come to her initial appointment, then had to get COVID test for her surgery and quarantine. Unable to come in after.","sp_data_site":"N/A"},"40481":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-16","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"pt declined participation due to distance to travel","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40482":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-16","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much of a time commitment for patient, lives further north","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40483":{"redcap_data_access_group":"northshore","main_record_id":"10303","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-16","screening_age":"55","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-03","sp_v1_preop_date":"2022-02-28","sp_v2_6wk_date":"2022-04-14","sp_v3_3mo_date":"2022-06-03","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40484":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40485":{"redcap_data_access_group":"northshore","main_record_id":"10296","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-18","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-02-25","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"74","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40486":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-18","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt does not want to participate as he is getting two knees done very close together and has a lot going on. May be interested in study for his second knee.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40487":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-18","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40488":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-18","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"too busy between now and surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40489":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-18","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"\"Not something I am interested in spending my time doing\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40490":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40491":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to being in too much pain and still working","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40492":{"redcap_data_access_group":"northshore","main_record_id":"10298","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-22","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-17","sp_v1_preop_date":"2022-03-07","sp_v2_6wk_date":"2022-04-28","sp_v3_3mo_date":"2022-06-17","age":"78","sex":"1","genident":"1","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40493":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"pt declined participation due to his wife just having shoulder surgery and can't be away from home that much","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40494":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"too busy and not having time for the testing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40495":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40496":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40497":{"redcap_data_access_group":"northshore","main_record_id":"10297","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-22","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-08","sp_v1_preop_date":"2022-03-08","sp_v2_6wk_date":"2022-04-19","sp_v3_3mo_date":"2022-06-08","age":"38","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40498":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia with the MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40499":{"redcap_data_access_group":"northshore","main_record_id":"10305","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-23","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-17","sp_v1_preop_date":"2022-03-11","sp_v2_6wk_date":"2022-04-28","sp_v3_3mo_date":"2022-06-17","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40500":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to too bus working to take the time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40501":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too busy to take the time and travel to Evanston","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40502":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40503":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40504":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-25","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40505":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working and cannot take the time off before his surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40506":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being interested.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40507":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"83","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Her daughter answered the phone and indicated her mother was very limited in English, a bit older, and would probably not be a good candidate for the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40508":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"After discussing it and clarifying what was involved, the patient declined participation due to it being too much for her.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40509":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"48","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"The patient declined participation due to it being too much for her.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40510":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40511":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40512":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40513":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-08","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":" the patient declined participation due to being the sole caregiver for his disabled wife and not being able to take the time to leaver her alone.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40514":{"redcap_data_access_group":"northshore","main_record_id":"10314","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-09","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-28","sp_v1_preop_date":"2022-03-18","sp_v2_6wk_date":"2022-05-09","sp_v3_3mo_date":"2022-06-28","age":"80","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40515":{"redcap_data_access_group":"northshore","main_record_id":"10319","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-09","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-29","sp_v1_preop_date":"2022-03-24","sp_v2_6wk_date":"2022-05-10","sp_v3_3mo_date":"2022-06-29","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40516":{"redcap_data_access_group":"northshore","main_record_id":"10318","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-09","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-30","sp_v1_preop_date":"2022-03-25","sp_v2_6wk_date":"2022-05-11","sp_v3_3mo_date":"2022-06-30","age":"72","sex":"2","genident":"2","ethnic":"N/A","dem_race":"2|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40517":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-09","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being that interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40518":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-09","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40519":{"redcap_data_access_group":"northshore","main_record_id":"10312","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-10","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-23","sp_v1_preop_date":"2022-03-16","sp_v2_6wk_date":"2022-05-04","sp_v3_3mo_date":"2022-06-23","age":"64","sex":"N/A","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40520":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives too far from Evanston","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40521":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40522":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40523":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40524":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too many appointments leading up to his surgery, does not have time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40525":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40526":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Does not have time before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40527":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40528":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40529":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40530":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40531":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40532":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not wanting anyone to look at her brain.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40533":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40534":{"redcap_data_access_group":"northshore","main_record_id":"10322","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-16","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-03-30","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"74","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40535":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not being able to take time off from work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40537":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40538":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40539":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"the patient declined participation due to distance and an aversion to an hour in the MRI machine.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40540":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to needing to concentrate on a non-healing leg wound before surgery and not enough time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40541":{"redcap_data_access_group":"northshore","main_record_id":"10330","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-18","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-04","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-14","sp_v1_preop_date":"2022-04-04","sp_v2_6wk_date":"2022-05-26","sp_v3_3mo_date":"2022-07-14","age":"N/A","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40542":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40543":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"63","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to distance to Evanston from Palos.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40544":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being our of town for the 3 month followup period.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40545":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40546":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not having the time for the testing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40547":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"the patient declined participation due to her husband being blind and not able to be away from him.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40548":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to to busy to take the time before surgery due to work and all the other activities.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40549":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to distance and time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40550":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"43","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40551":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"53","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40552":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40553":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40554":{"redcap_data_access_group":"northshore","main_record_id":"10333","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-22","screening_age":"46","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-18","sp_v1_preop_date":"2022-04-06","sp_v2_6wk_date":"2022-05-30","sp_v3_3mo_date":"2022-07-18","age":"46","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40555":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not driving any distance and not using e-mail.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40556":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40557":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to being too overwhelmed by everything else going on in her life.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40558":{"redcap_data_access_group":"northshore","main_record_id":"10334","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-23","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-18","sp_v1_preop_date":"2022-04-07","sp_v2_6wk_date":"2022-05-30","sp_v3_3mo_date":"2022-07-18","age":"76","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-08-03 11:51:27","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Participant came one day outside of protocol range due to scheduling. ","erep_protdev_caplan":"None.","erep_rel_covid19":"0"}}},"40559":{"redcap_data_access_group":"northshore","main_record_id":"10340","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-23","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-20","sp_v1_preop_date":"2022-04-11","sp_v2_6wk_date":"2022-06-01","sp_v3_3mo_date":"2022-07-20","age":"53","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40561":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-23","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She is not interested in participating in the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40562":{"redcap_data_access_group":"northshore","main_record_id":"10328","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-23","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-31","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-12","sp_v1_preop_date":"2022-04-04","sp_v2_6wk_date":"2022-05-24","sp_v3_3mo_date":"2022-07-12","age":"60","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40563":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too busy remodelling condo.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40564":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to no longer driving and not wanting to participate.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40565":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40566":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40567":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-25","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40568":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"69","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to distance from Evanston to Oak Lawn.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40569":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-25","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":" patient declined participation due to multiple trips out of town prior to surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40570":{"redcap_data_access_group":"northshore","main_record_id":"10345","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-25","screening_age":"65","screening_gender":"1","screening_race":"5","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-26","sp_v1_preop_date":"2022-04-18","sp_v2_6wk_date":"2022-06-07","sp_v3_3mo_date":"2022-07-26","age":"65","sex":"1","genident":"1","ethnic":"2","dem_race":"2","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-08-03 13:23:51","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-04-18 13:24","erep_resolution_date":"","erep_ae_severity":"1","erep_ae_relation":"2","erep_ae_serious":"0","erep_ae_desc":"Patient reported at 3 month study visit that the cuff from his baseline visit was very uncomfortable and caused the veins in his legs to bulge out. He is not in any pain. He did not mention this at his 6 week follow up visit or on any follow up phone calls.","erep_action_taken":"No MRI with cuff was done. ","erep_outcome":"No MRI was done. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"40571":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-25","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40572":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-26","screening_age":"45","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40573":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"46","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to working and not having time before her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40574":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too much involvement.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40575":{"redcap_data_access_group":"northshore","main_record_id":"10342","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-28","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-26","sp_v1_preop_date":"2022-04-12","sp_v2_6wk_date":"2022-06-07","sp_v3_3mo_date":"2022-07-26","age":"75","sex":"N/A","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40576":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to being in Florida until just before her surgery. Also somewhat claustrophobic and nervous about MRI.\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40577":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"41","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being busy working and claustrophobia about the MRI.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40578":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being a tax accountant with surgery scheduled on 4/18/22.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40579":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to working full time up until his surgery.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40580":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-11","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to working full time up until her surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40581":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"49","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40582":{"redcap_data_access_group":"northshore","main_record_id":"10352","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-12","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-26","sp_v1_preop_date":"2022-04-21","sp_v2_6wk_date":"2022-06-07","sp_v3_3mo_date":"2022-07-26","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40583":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40584":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40585":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not wanting to travel that far.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40586":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"84","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"She is a physician; Interested in participating and will call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40587":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"83","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too much of a commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40588":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"50","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40589":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"48","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Never heard back from patient.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40590":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to claustrophobia with MRI. Otherwise, would have participated.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40591":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"declined participation due to being too busy taking care of her grandchildren.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40592":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to distance and time to travel to Evanston Hospital.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40593":{"redcap_data_access_group":"northshore","main_record_id":"10353","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-14","screening_age":"74","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-03","sp_v1_preop_date":"2022-04-27","sp_v2_6wk_date":"2022-06-14","sp_v3_3mo_date":"2022-08-03","age":"74","sex":"1","genident":"1","ethnic":"2","dem_race":"2","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40594":{"redcap_data_access_group":"northshore","main_record_id":"10348","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-14","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-05","sp_v1_preop_date":"2022-05-02","sp_v2_6wk_date":"2022-06-16","sp_v3_3mo_date":"2022-08-05","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"2|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40595":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40596":{"redcap_data_access_group":"northshore","main_record_id":"10351","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-15","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-04-28","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-04-28 14:56:20","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"0","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient was unable to complete the MRI. He has severe spinal stenosis and the MRI technologist was unable to snap head coil on due to the spine issues. He was unable to be positioned and the technologist could not complete the scan.","erep_protdev_caplan":"Patient will not be scanned at the 3 month visit.","erep_rel_covid19":"0"}}},"40597":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not wanting to do it.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40598":{"redcap_data_access_group":"northshore","main_record_id":"10357","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-15","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-09","sp_v1_preop_date":"2022-05-03","sp_v2_6wk_date":"2022-06-20","sp_v3_3mo_date":"2022-08-09","age":"73","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40599":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being sure he is even going to go ahead with the surgery.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40600":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Seemed interested but then stated it was too much. Requested more info, which I sent via NSC. Advised him how to contact us if he changes his mind. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40601":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too much of a commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40602":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40603":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40604":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being in Florida until just before his ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40605":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not being able to take time off from work as a teacher.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40606":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Does not have time before her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40607":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"40","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40608":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-21","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40609":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too much of a commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40610":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40611":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"She had not reviewed the information brochure but requested more information and will get back to us if interested. A2CPS info sent via NSConnect.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40612":{"redcap_data_access_group":"northshore","main_record_id":"10374","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-25","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-09","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-13","sp_v1_preop_date":"2022-05-09","sp_v2_6wk_date":"2022-06-24","sp_v3_3mo_date":"2022-08-13","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2022-05-09","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient called and canceled baseline visit, he does not have time for it before his surgery","sp_data_site":"N/A"},"40613":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"76","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40614":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia with the MRI.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40615":{"redcap_data_access_group":"northshore","main_record_id":"10375","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-26","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-09","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-17","sp_v1_preop_date":"2022-05-11","sp_v2_6wk_date":"2022-06-28","sp_v3_3mo_date":"2022-08-17","age":"80","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40616":{"redcap_data_access_group":"northshore","main_record_id":"10366","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-26","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-17","sp_v1_preop_date":"2022-05-06","sp_v2_6wk_date":"2022-06-28","sp_v3_3mo_date":"2022-08-17","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40617":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"72","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not wanting to make that commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40618":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not wanting to talk about it.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40619":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"the patient is interested but somewhat concerned about MRI. Also has small veins that roll with blood draws always a problem. Wants to think about it. Will call again on Thursday.\r\n\u00a0Interested but somewhat concerned about MRI. Also has small veins that roll with blood draws always a problem. Wants to think about it. Will call again on Thursday. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40620":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not wanting to go up to Evanston.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40621":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"73","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40622":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40623":{"redcap_data_access_group":"northshore","main_record_id":"10364","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-27","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-03","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-23","sp_v1_preop_date":"2022-05-10","sp_v2_6wk_date":"2022-07-04","sp_v3_3mo_date":"2022-08-23","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40624":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40625":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt is too busy watching his grandchildren during the day","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40626":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to having to take care of grandchildren every day.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40627":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40628":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40629":{"redcap_data_access_group":"northshore","main_record_id":"10376","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-02","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-09","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-16","sp_v1_preop_date":"2022-05-12","sp_v2_6wk_date":"2022-06-27","sp_v3_3mo_date":"2022-08-16","age":"76","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40630":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Overwhelmed before her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40631":{"redcap_data_access_group":"northshore","main_record_id":"10381","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-02","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-23","sp_v1_preop_date":"2022-05-18","sp_v2_6wk_date":"2022-07-04","sp_v3_3mo_date":"2022-08-23","age":"75","sex":"1","genident":"N/A","ethnic":"4","dem_race":"5","ewdateterm":"2022-05-18","ewprimaryreason":"1","ewdisreasons":"6","ewpireason":"N/A","ewcomments":"Day of appointment patient called and said it was too overwhelming. ","sp_data_site":"N/A"},"40632":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40633":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"concerns about pressure on varicose veins in calf and generally being overwhelmed preparing for the surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40634":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working and too busy to participate with the time needed for the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40635":{"redcap_data_access_group":"northshore","main_record_id":"10382","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-02","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-25","sp_v1_preop_date":"2022-05-19","sp_v2_6wk_date":"2022-07-06","sp_v3_3mo_date":"2022-08-25","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40636":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-03","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"the patient declined participation without specifying a reason.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40637":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-03","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40638":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-04","screening_age":"78","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40639":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-04","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40640":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-04","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40641":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-04","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"working full time, moving and distance to Evanston.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40642":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-04","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to having a bone anchored ear implant as a contradiction to the high intensity research MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40643":{"redcap_data_access_group":"northshore","main_record_id":"10388","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-04","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40644":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40645":{"redcap_data_access_group":"northshore","main_record_id":"10379","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-05","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-10","sp_v1_preop_date":"2022-05-16","sp_v2_6wk_date":"2022-09-21","sp_v3_3mo_date":"2022-11-10","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2022-07-13","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient's cat is having surgery and she is overwhelmed before her surgery and can no longer participate. ","sp_data_site":"N/A"},"40646":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-06","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40647":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-06","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to now living in Kentucky.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40648":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-06","screening_age":"62","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to being a private person and not wanting to be involved in any research.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40649":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-06","screening_age":"78","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"\r\nHe is intereted but wants to discuss with wife and children. Sent info via NSC. I will re-contact next week.\r\n\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40650":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-10","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40651":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-10","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40652":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-10","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"After discussing it and clarifying what was involved, the patient declined participation due to having changed surgeons to avoid preop MRI for knee that was to be used for creating patient specific instruments.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40653":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-10","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40654":{"redcap_data_access_group":"northshore","main_record_id":"10394","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-11","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-31","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-07","sp_v1_preop_date":"2022-05-31","sp_v2_6wk_date":"2022-07-19","sp_v3_3mo_date":"2022-09-07","age":"N/A","sex":"2","genident":"2","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40655":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to busy to take the time for the testing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40656":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"78","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to concerns about claustrophobia with the MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40657":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-11","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to having a two day old granddaughter she has to help take care of.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40658":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to anxiety about upcoming surgery and too much going on in her family life. Scheduled for 2nd TKA 3 months and one week after the 1st knee and willing to consider participating at that time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40659":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"clarifying what was involved, the patient declined participation due to not wanting to travel to Evanston.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40660":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She was not interested in the study and was frustrated that she could not find a doctor for pre-op medical clearance.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40661":{"redcap_data_access_group":"northshore","main_record_id":"10380","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-12","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-09","sp_v1_preop_date":"2022-06-02","sp_v2_6wk_date":"2022-07-21","sp_v3_3mo_date":"2022-09-09","age":"74","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40662":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-13","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40663":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-13","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40664":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-13","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to needing to care for grandchildren.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40665":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-13","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40666":{"redcap_data_access_group":"northshore","main_record_id":"10385","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-13","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-10","sp_v1_preop_date":"2022-05-24","sp_v2_6wk_date":"2022-07-22","sp_v3_3mo_date":"2022-09-10","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40667":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-13","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not wanting to participate and distance to Evanston.'","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40668":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-13","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40669":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-16","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40670":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-16","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":" the patient declined participation due to being in Oak Brook and doesn't have time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40671":{"redcap_data_access_group":"northshore","main_record_id":"10386","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-16","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-13","sp_v1_preop_date":"2022-06-06","sp_v2_6wk_date":"2022-07-25","sp_v3_3mo_date":"2022-09-13","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40672":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-16","screening_age":"69","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"the patient wants to think about it.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40673":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-16","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"the patient declined participation due to claustrophobia and time/distance to Evanston form NW suburbs.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40674":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not wanting to be bothered.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40675":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40676":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working and no time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40677":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"78","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40678":{"redcap_data_access_group":"northshore","main_record_id":"10383","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-17","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-15","sp_v1_preop_date":"2022-06-09","sp_v2_6wk_date":"2022-07-27","sp_v3_3mo_date":"2022-09-15","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40679":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40680":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to claustrophobia and thinking about the study would make her too anxious.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40681":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40682":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40683":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40684":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40685":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"he requested information in writing and to be called again. Sent A2CPS info via NSC.\r\nI will contact again.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40686":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"59","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40687":{"redcap_data_access_group":"northshore","main_record_id":"10387","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-19","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-20","sp_v1_preop_date":"2022-06-07","sp_v2_6wk_date":"2022-08-01","sp_v3_3mo_date":"2022-09-20","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40688":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"74","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to distance.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40690":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"44","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40689":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to severe Benign paroxysmal positional vertigo (BPPV) where she is unable to lay supine for more than a few minutes, which is the position in the MRI scanner.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40691":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too busy and not having reliable transportation. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40692":{"redcap_data_access_group":"northshore","main_record_id":"10402","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-24","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-22","sp_v1_preop_date":"2022-06-15","sp_v2_6wk_date":"2022-08-03","sp_v3_3mo_date":"2022-09-22","age":"79","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40693":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working full time up until surgery.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40694":{"redcap_data_access_group":"northshore","main_record_id":"10432","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-26","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-01","sp_v1_preop_date":"2022-07-25","sp_v2_6wk_date":"2022-09-12","sp_v3_3mo_date":"2022-11-01","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40695":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40696":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to taking too much time.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40697":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":" patient declined participation due to having read the information brochure and decided to not do it.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40698":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to not being comfortable with her genetic material being part of the study and in a repository.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40699":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"80","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not having or using e-mail.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40700":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to still working and no time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40701":{"redcap_data_access_group":"northshore","main_record_id":"10401","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-10","screening_age":"72","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-22","sp_v1_preop_date":"2022-06-16","sp_v2_6wk_date":"2022-08-03","sp_v3_3mo_date":"2022-09-22","age":"72","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40702":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being a single mom and working full time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40703":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"74","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40704":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"58","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40705":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to no time, busy with 15 grandchildren and still working.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40706":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-13","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to it being too much of a commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40707":{"redcap_data_access_group":"northshore","main_record_id":"10406","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-13","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-12","sp_v1_preop_date":"2022-06-27","sp_v2_6wk_date":"2022-08-23","sp_v3_3mo_date":"2022-10-12","age":"65","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40708":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40709":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to not wanting to experience any of the discomfort associated with the testing.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40710":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to distance to Evanston from Southside and hates e-mails.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40711":{"redcap_data_access_group":"northshore","main_record_id":"10407","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-14","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-14","sp_v1_preop_date":"2022-06-23","sp_v2_6wk_date":"2022-08-25","sp_v3_3mo_date":"2022-10-14","age":"64","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40712":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to time commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40713":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40714":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined due to being too busy. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40716":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"She is willing to participate but planning on re-scheduling surgery in the Fall and will call me back at that time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40715":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"48","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Had insurance issues getting everything approved and now no longer has time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40717":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-21","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40718":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-21","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40719":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-21","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40720":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-21","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to already having too many doctor appointments.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40721":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-21","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40722":{"redcap_data_access_group":"northshore","main_record_id":"10415","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-22","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-05","sp_v1_preop_date":"2022-06-29","sp_v2_6wk_date":"2022-08-16","sp_v3_3mo_date":"2022-10-05","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40723":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40724":{"redcap_data_access_group":"northshore","main_record_id":"10414","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-22","screening_age":"78","screening_gender":"1","screening_race":"3","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-20","sp_v1_preop_date":"2022-07-07","sp_v2_6wk_date":"2022-08-31","sp_v3_3mo_date":"2022-10-20","age":"78","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40725":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-24","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40726":{"redcap_data_access_group":"northshore","main_record_id":"10427","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-24","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-21","sp_v1_preop_date":"2022-07-13","sp_v2_6wk_date":"2022-09-01","sp_v3_3mo_date":"2022-10-21","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40727":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to having a ton of health problems, too many CTs and MRIs and not up for it.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40728":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40729":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40730":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40731":{"redcap_data_access_group":"northshore","main_record_id":"10428","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-28","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-19","sp_v1_preop_date":"2022-07-14","sp_v2_6wk_date":"2022-08-30","sp_v3_3mo_date":"2022-10-19","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40732":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"55","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40733":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to having some medical appointment or test nearly every day until surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40734":{"redcap_data_access_group":"northshore","main_record_id":"10419","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-29","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-27","sp_v1_preop_date":"2022-07-18","sp_v2_6wk_date":"2022-09-07","sp_v3_3mo_date":"2022-10-27","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40735":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Wants to discuss with husband; Sent info via NSC; Will call back next week","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40736":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"63","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to distance and too involved.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40737":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to living in Wisconsin.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40738":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40739":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40740":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40741":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40742":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40743":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40744":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40745":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"57","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40746":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40747":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40748":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40749":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40750":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"77","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"declined participation due to not seeing the need to go to Evanston Hospital if surgery is at Skokie Hospital.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40751":{"redcap_data_access_group":"northshore","main_record_id":"10433","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-11","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-02","sp_v1_preop_date":"2022-07-26","sp_v2_6wk_date":"2022-09-13","sp_v3_3mo_date":"2022-11-02","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40752":{"redcap_data_access_group":"northshore","main_record_id":"10430","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-11","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-03","sp_v1_preop_date":"2022-07-27","sp_v2_6wk_date":"2022-09-14","sp_v3_3mo_date":"2022-11-03","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40753":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"After discussing her history and reviewing the record, she has multiple auto-immune conditions including inflammatory arthritis which is an exclusion for this study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40754":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"80","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to distance and difficulty getting to Evanston Hospital.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40755":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"80","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40756":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"75","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40757":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40758":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40759":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40760":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"77","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40761":{"redcap_data_access_group":"northshore","main_record_id":"10429","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-13","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-10","sp_v1_preop_date":"2022-08-03","sp_v2_6wk_date":"2022-09-21","sp_v3_3mo_date":"2022-11-10","age":"79","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40762":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40763":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40764":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40765":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40766":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"patient declined participation due to being sole caregiver for her husband and not having time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40767":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40768":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40769":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40770":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40771":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40772":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Doesn't want an MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40773":{"redcap_data_access_group":"northshore","main_record_id":"10431","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-18","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-08","sp_v1_preop_date":"2022-07-28","sp_v2_6wk_date":"2022-09-19","sp_v3_3mo_date":"2022-11-08","age":"75","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40774":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"the patient felt it was too involved to participate but will discuss it with her husband.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40775":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40776":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to baby sits grandchildren full time until surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40777":{"redcap_data_access_group":"northshore","main_record_id":"10437","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-18","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-16","sp_v1_preop_date":"2022-08-10","sp_v2_6wk_date":"2022-09-27","sp_v3_3mo_date":"2022-11-16","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40778":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-19","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40779":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to distance and care for 90 yo mother.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40780":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"67","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40781":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"pt has claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40782":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40783":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40784":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-21","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40785":{"redcap_data_access_group":"northshore","main_record_id":"10434","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-22","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-18","sp_v1_preop_date":"2022-08-08","sp_v2_6wk_date":"2022-09-29","sp_v3_3mo_date":"2022-11-18","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40786":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40787":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40788":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40789":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"62","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40790":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"58","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40791":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40792":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"61","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40793":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to having to answer a lot of questionnaires and being subjected to a lot of discomfort sounds like what they do to you in prison.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40794":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40795":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40796":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"63","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40797":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40798":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40799":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-02","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40800":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"\r\nIs getting a 2nd opinion and will decide next week. Described study fully and sent him the info brochure via NSC. He indicated he would call back but if he does not, call and see if he is interested. I specified testing would need to be done before 8/12 \r\n\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40801":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40802":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40803":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"75","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40804":{"redcap_data_access_group":"northshore","main_record_id":"10460","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-23","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-13","sp_v1_preop_date":"2022-09-06","sp_v2_6wk_date":"2022-10-25","sp_v3_3mo_date":"2022-12-13","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40805":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"The patient declined participation due to already having too much on her plate.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40806":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"The patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40807":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"72","screening_gender":"2","screening_race":"1","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40808":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"The patient indicated she was claustrophobic but could do an MRI with valium. I explained that we could not do that and she may not be eligible. She is going to think about it, review the material and may get back to us if she is interested and thinks she can have a brain MRI and stay still inside the tube for nearly an hour.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40809":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"72","screening_gender":"N/A","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being an accountant and needing to get all the tax work due on 9/15 done before her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40810":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|1","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40811":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Retired physician. Understood elements of study. For next five days will be on a bike trip in Appalachian mountains, unable to answer phone. She will be able to answer texts or e-mails. Prefers to not have to use NSConnect. Tue or Fri after Labor day would work out the best. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40812":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"79","screening_gender":"2","screening_race":"3","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to already being a nervous wreck.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40813":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to having too many other issues going on.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40814":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40815":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40816":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"78","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40817":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-29","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40818":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-29","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40819":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-29","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to no available time between work and taking grandkids to Disney.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40820":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"65","screening_gender":"2","screening_race":"1","screening_ethnicity":"0","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40821":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"the patient declined participation due to not being interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40822":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40823":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to claustrophobia.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40824":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to having too much else to do preparing for surgery.\r\n\u00a0","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40825":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to not being available at 3 month visit due to going to Fla for winter.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40826":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Followed up with the patient about the study who now recalls she had spine neurostimulator that was removed but left with broken wires and advised to not have an MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40827":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"the patient declined participation due to time and distance to Evanston.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40828":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"83","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40829":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"78","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40830":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40831":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"78","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40832":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40833":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40834":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"73","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40835":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"72","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40836":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to owning his own business and not being able to take time off from work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40837":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"66","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"After discussing it and clarifying what was involved, the patient declined participation due to still working full time until just before the surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40838":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40029":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"N/A","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Evanston is too far away","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40203":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-18","screening_age":"N/A","screening_gender":"2","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"had cosmetic enhancement with microblading of her eyebrows with placement of iron oxide","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40373":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"N/A","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40383":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"N/A","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40536":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"N/A","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"the patient declined participation due to being too busy at work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40560":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-23","screening_age":"N/A","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40160":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Dr. Wixson left VM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"40000":{"redcap_data_access_group":"northshore","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50001":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50002":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50003":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"50","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50004":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50005":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"66","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She's concerned about how her recovery will go ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50006":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"2","screening_race":"4","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50008":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"needs an LAR","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50009":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"69","screening_gender":"2","screening_race":"0","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50010":{"redcap_data_access_group":"uchicago","main_record_id":"10036","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-05-24","screening_age":"60","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-05-25","date_and_time":"2021-05-25 09:53","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-06-29","sp_v1_preop_date":"2021-06-22","sp_v2_6wk_date":"2021-08-10","sp_v3_3mo_date":"2021-09-29","age":"60","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50011":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"82","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50012":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50013":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"51","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50014":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-25","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Doesn't want to do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50015":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50016":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50017":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50018":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50019":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-24","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50020":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50021":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-25","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives far away. Doesn't want to drive","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50022":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-26","screening_age":"50","screening_gender":"1","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50023":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"84","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50024":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"84","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Hung up phone during call","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50025":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-26","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Hung up phone during study description ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50026":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-01","screening_age":"53","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50027":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"72","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50028":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-05-28","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Indicated during screening call that revision is for possible infection that cannot be cultured until after surgery. Confirmed with surgeon. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50029":{"redcap_data_access_group":"uchicago","main_record_id":"10040","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-02","screening_age":"49","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-03","date_and_time":"2021-07-01 11:27","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-18","sp_v1_preop_date":"2021-08-12","sp_v2_6wk_date":"2021-09-29","sp_v3_3mo_date":"2021-11-18","age":"49","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50030":{"redcap_data_access_group":"uchicago","main_record_id":"10064","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-29","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-01","date_and_time":"2021-07-01 11:17","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-16","sp_v1_preop_date":"2021-07-20","sp_v2_6wk_date":"2021-09-27","sp_v3_3mo_date":"2021-11-16","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50031":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-03","screening_age":"58","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Asked to be re called in 10 minutes. Declined all calls after ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50032":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-07","screening_age":"55","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50033":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-03","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50034":{"redcap_data_access_group":"uchicago","main_record_id":"10399","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-06-09","screening_age":"68","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-19","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-08-30","sp_v3_3mo_date":"2022-10-19","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50035":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-09","screening_age":"46","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50036":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-07","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Study visits take too long","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50037":{"redcap_data_access_group":"uchicago","main_record_id":"10055","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-08","screening_age":"39","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-21","date_and_time":"2021-06-14 10:07","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-06","sp_v1_preop_date":"2021-07-06","sp_v2_6wk_date":"2021-09-17","sp_v3_3mo_date":"2021-11-06","age":"39","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50038":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50039":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50040":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-08","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"call when anesthesia appt is scheduled","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50041":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"67","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50042":{"redcap_data_access_group":"uchicago","main_record_id":"10046","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-06-10","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-11","date_and_time":"2021-07-01 12:43","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-22","sp_v1_preop_date":"2021-07-13","sp_v2_6wk_date":"2021-09-02","sp_v3_3mo_date":"2021-10-22","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2022-01-26","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Subject has missed standard of care appointments and no contact with research via phone or email. Last contact was 10/18/2021 surgical follow-up with her surgeon. ","sp_data_site":"N/A"},"50043":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-02","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50044":{"redcap_data_access_group":"uchicago","main_record_id":"10058","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-24","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-24","date_and_time":"2021-07-01 13:26","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-27","sp_v1_preop_date":"2021-07-14","sp_v2_6wk_date":"2021-09-07","sp_v3_3mo_date":"2021-10-27","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50045":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50046":{"redcap_data_access_group":"uchicago","main_record_id":"10290","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-01","screening_age":"48","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-16","date_and_time":"2022-02-16 09:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-08","sp_v1_preop_date":"2022-02-16","sp_v2_6wk_date":"2022-04-19","sp_v3_3mo_date":"2022-06-08","age":"48","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject no called/no showed to the first visit. Study staff attempted to reschedule the visit but were not able to contact the subject. Surveys were completed for V1 but no other procedures. ","sp_data_site":"N/A"},"50047":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50048":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"38","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50049":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"55","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50050":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"64","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50051":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-10","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Just not interested in research","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50052":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50053":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-11","screening_age":"62","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50054":{"redcap_data_access_group":"uchicago","main_record_id":"10049","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-14","screening_age":"80","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-15","date_and_time":"2021-06-24 12:10","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-11","sp_v1_preop_date":"2021-07-16","sp_v2_6wk_date":"2021-09-22","sp_v3_3mo_date":"2021-11-11","age":"80","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50055":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-14","screening_age":"56","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50056":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-16","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50057":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-15","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50058":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-15","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50059":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"78","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50060":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"54","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50061":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-16","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Will not have time to do the daily surveys","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50062":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-16","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50063":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-18","screening_age":"49","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50064":{"redcap_data_access_group":"uchicago","main_record_id":"10067","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-30","screening_age":"44","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-01","date_and_time":"2021-07-01 11:28","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-20","sp_v1_preop_date":"2021-07-13","sp_v2_6wk_date":"2021-08-31","sp_v3_3mo_date":"2021-10-20","age":"44","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50065":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-23","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Might go to another hospital because of insurance problems ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50066":{"redcap_data_access_group":"uchicago","main_record_id":"10065","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-06-24","screening_age":"56","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-01","date_and_time":"2021-07-01 12:52","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-08","sp_v1_preop_date":"2021-08-03","sp_v2_6wk_date":"2021-12-20","sp_v3_3mo_date":"2022-02-07","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50067":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-24","screening_age":"56","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50068":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-24","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50069":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50070":{"redcap_data_access_group":"uchicago","main_record_id":"10066","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-30","screening_age":"64","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-01","date_and_time":"2021-07-01 11:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-10","sp_v1_preop_date":"2021-08-06","sp_v2_6wk_date":"2021-09-21","sp_v3_3mo_date":"2021-11-10","age":"65","sex":"1","genident":"N/A","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50071":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-02","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Transportation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50072":{"redcap_data_access_group":"uchicago","main_record_id":"10083","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-22","screening_age":"62","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-22","date_and_time":"2021-07-22 11:50","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-08-09","sp_v1_preop_date":"2021-08-03","sp_v2_6wk_date":"2021-09-20","sp_v3_3mo_date":"2021-11-09","age":"63","sex":"1","genident":"1","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50073":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-30","screening_age":"72","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Cannot get MRI due to defibrillator","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50074":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50075":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-30","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50076":{"redcap_data_access_group":"uchicago","main_record_id":"10069","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-07-01","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-06","date_and_time":"2021-07-06 12:19","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50077":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50078":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-29","screening_age":"59","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50079":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She's in too much pain to partake in the tests. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50080":{"redcap_data_access_group":"uchicago","main_record_id":"10068","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-06","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-06","date_and_time":"2021-07-06 12:11","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-07-14","sp_v1_preop_date":"2021-07-09","sp_v2_6wk_date":"2021-08-25","sp_v3_3mo_date":"2021-10-14","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50081":{"redcap_data_access_group":"uchicago","main_record_id":"10363","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-07-07","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-04","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-06-15","sp_v3_3mo_date":"2022-08-04","age":"65","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50082":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50083":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50084":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"No transportation to main campus ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50085":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-15","screening_age":"70","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50086":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50087":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50088":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50090":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50091":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-15","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50092":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-20","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50093":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"66","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50094":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50095":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Extremely claustrophobic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50096":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-27","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50097":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50098":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50099":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-27","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50100":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-27","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50101":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much time for baseline visit","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50102":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Spoke with family and declined after ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50104":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-29","screening_age":"65","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50105":{"redcap_data_access_group":"uchicago","main_record_id":"10143","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-07-29","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-16","date_and_time":"2021-09-16 10:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-07","sp_v1_preop_date":"2021-09-16","sp_v2_6wk_date":"2021-11-17","sp_v3_3mo_date":"2022-01-06","age":"65","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50089":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50106":{"redcap_data_access_group":"uchicago","main_record_id":"10096","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-02","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-04","date_and_time":"N/A","consent_process_form_complete":"0","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-02","sp_v1_preop_date":"2021-08-31","sp_v2_6wk_date":"2021-10-14","sp_v3_3mo_date":"2021-12-02","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-08-31","ewprimaryreason":"1","ewdisreasons":"1|5","ewpireason":"N/A","ewcomments":"Subject had personal issues and feeling overwhelmed. She was willing to do it after her surgery but per study protocol that would exclude her. ","sp_data_site":"N/A"},"50107":{"redcap_data_access_group":"uchicago","main_record_id":"10098","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-08-05","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-05","date_and_time":"2021-08-19 08:23","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-03","sp_v1_preop_date":"2021-08-18","sp_v2_6wk_date":"2021-10-15","sp_v3_3mo_date":"2021-12-03","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50109":{"redcap_data_access_group":"uchicago","main_record_id":"10102","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-06","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-11","date_and_time":"2021-08-19 08:19","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-07","sp_v1_preop_date":"2021-08-24","sp_v2_6wk_date":"2021-10-19","sp_v3_3mo_date":"2021-12-07","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50110":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50111":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"74","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50112":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-09","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50113":{"redcap_data_access_group":"uchicago","main_record_id":"10103","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-09","screening_age":"71","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-10","date_and_time":"2021-09-09 15:45","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-14","sp_v1_preop_date":"2021-10-11","sp_v2_6wk_date":"2021-11-24","sp_v3_3mo_date":"2022-01-13","age":"71","sex":"2","genident":"2","ethnic":"2","dem_race":"2","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50114":{"redcap_data_access_group":"uchicago","main_record_id":"10341","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-09","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-07","date_and_time":"2022-04-07 11:58","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-11","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-05-23","sp_v3_3mo_date":"2022-07-11","age":"60","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-07-28 11:41:37","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Study staff conducted imaging and cuff procedures without asking the subject the contraindication questions. After the imaging was completed, research staff asked the question regarding contraindication of cuff. Subject reported having a history of neuropathy. Study staff had a conversation with the subject about the increased risk of complication from the cuff. Study staff asked if the subject had any questions. Subject reported no. Study staff asked if the subject would like to speak to a physician/PI. Subject reported no. Study staff asked if the subject was comfortable continuing with study procedures. Subject reported yes. Study staff informed subject that if they had any change to their health at any point now or in the future to please contact the research team. ","erep_protdev_caplan":"Research staff had a brief retraining session on the importance of screening questions before study procedures. ","erep_rel_covid19":"0"}}},"50115":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-09","screening_age":"60","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50116":{"redcap_data_access_group":"uchicago","main_record_id":"10133","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-09","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-07","date_and_time":"N/A","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-10","sp_v1_preop_date":"2021-09-07","sp_v2_6wk_date":"2021-10-22","sp_v3_3mo_date":"2021-12-10","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50103":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Is uncomfortable with getting an MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50117":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50118":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"61","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"call monday","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50119":{"redcap_data_access_group":"uchicago","main_record_id":"10120","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-16","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-31","date_and_time":"2021-08-31 10:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-11","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2021-12-23","sp_v3_3mo_date":"2022-02-10","age":"60","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50120":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-17","screening_age":"81","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50121":{"redcap_data_access_group":"uchicago","main_record_id":"10114","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-17","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-25","date_and_time":"2021-08-25 09:35","consent_process_form_complete":"2","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"2","ewcomments":"Subject was enrolled in the study, but elected to get the second knee done within three months after she had signed consent. No study related procedures were preformed. ","sp_data_site":"N/A"},"50122":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50123":{"redcap_data_access_group":"uchicago","main_record_id":"10136","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-08-20","screening_age":"70","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-09","date_and_time":"2021-09-13 14:34","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-20","sp_v1_preop_date":"2021-09-14","sp_v2_6wk_date":"2021-11-01","sp_v3_3mo_date":"2021-12-20","age":"N/A","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50124":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-01","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50125":{"redcap_data_access_group":"uchicago","main_record_id":"10147","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-26","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-21","date_and_time":"2021-09-09 12:13","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-25","sp_v1_preop_date":"2021-10-20","sp_v2_6wk_date":"2021-12-05","sp_v3_3mo_date":"2022-01-24","age":"56","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50126":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-26","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50127":{"redcap_data_access_group":"uchicago","main_record_id":"10119","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-30","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-08-30","date_and_time":"2021-09-02 10:20","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-10-05","sp_v1_preop_date":"2021-10-01","sp_v2_6wk_date":"2021-11-15","sp_v3_3mo_date":"2022-01-04","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50128":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-30","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"said will call us if interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50129":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-30","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Said will call office if interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50130":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-02","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Cannot get MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50131":{"redcap_data_access_group":"uchicago","main_record_id":"10135","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-02","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-08","date_and_time":"2021-09-08 14:31","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-30","sp_v1_preop_date":"2021-09-21","sp_v2_6wk_date":"2021-11-10","sp_v3_3mo_date":"2021-12-30","age":"66","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50132":{"redcap_data_access_group":"uchicago","main_record_id":"10132","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-07","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-07","date_and_time":"N/A","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-20","sp_v1_preop_date":"2021-09-17","sp_v2_6wk_date":"2021-11-01","sp_v3_3mo_date":"2021-12-20","age":"68","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50133":{"redcap_data_access_group":"uchicago","main_record_id":"10153","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-14","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-23","date_and_time":"2021-11-23 13:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-30","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-01-11","sp_v3_3mo_date":"2022-03-01","age":"57","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50134":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-18","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50135":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50136":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50137":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Did not answer follow-up calls after repeated tries","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50138":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"53","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Not comfortable with information shared at the federal government level","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50139":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-02","screening_age":"75","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50140":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50141":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-09","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophbic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50142":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Already had surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50143":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50144":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50145":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-09","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50146":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"80","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50147":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-14","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50148":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-14","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50149":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"60","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50150":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-21","screening_age":"64","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50151":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-20","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Subject has a metal insert in her lumbar region that prevents her from getting MRIs","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50152":{"redcap_data_access_group":"uchicago","main_record_id":"10152","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-09-21","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-23","date_and_time":"2021-09-30 16:00","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-09-27","sp_v1_preop_date":"2021-09-23","sp_v2_6wk_date":"2021-11-07","sp_v3_3mo_date":"2021-12-27","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50153":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-21","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50154":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-20","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50155":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-23","screening_age":"77","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50157":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-28","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50158":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-16","screening_age":"48","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"will call if interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50159":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-28","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Claustrophobic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50160":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Subject in too much pain and doesn't have anyone to help her get about. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50161":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50162":{"redcap_data_access_group":"uchicago","main_record_id":"10186","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-12","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"0","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-08-24","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"No surgery ","sp_data_site":"N/A"},"50163":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"65","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50164":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Not ready for surgery yet","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50165":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50166":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"58","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"No transportation ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50167":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-18","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Will call us","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50168":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Will call us","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50169":{"redcap_data_access_group":"uchicago","main_record_id":"10193","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-19","screening_age":"47","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-19","date_and_time":"2021-10-20 08:06","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-19","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-03-02","sp_v3_3mo_date":"2022-04-19","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50170":{"redcap_data_access_group":"uchicago","main_record_id":"10201","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-19","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-25","date_and_time":"2021-10-25 16:53","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-11-03","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2021-12-15","sp_v3_3mo_date":"2022-02-02","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50171":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-28","screening_age":"65","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50172":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Subject now wants to be called in the first week o January because she's unsure if she wants to maintain the surgery date or push it to spring","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50173":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50174":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"73","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50175":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50176":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50177":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-29","screening_age":"59","screening_gender":"2","screening_race":"0","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"No transportation, coming from suburb","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50178":{"redcap_data_access_group":"uchicago","main_record_id":"10244","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-02","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-06","date_and_time":"2021-12-20 10:16","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-15","sp_v1_preop_date":"2022-02-22","sp_v2_6wk_date":"2022-04-26","sp_v3_3mo_date":"2022-06-15","age":"69","sex":"2","genident":"2","ethnic":"N/A","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50179":{"redcap_data_access_group":"uchicago","main_record_id":"10235","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-03","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Before first study visit","obtain_date":"2021-11-30","date_and_time":"2021-12-20 10:14","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-15","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-04-26","sp_v3_3mo_date":"2022-06-15","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50182":{"redcap_data_access_group":"uchicago","main_record_id":"10331","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-10","screening_age":"73","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-04","date_and_time":"2022-04-04 12:08","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-12","sp_v1_preop_date":"2022-04-04","sp_v2_6wk_date":"2022-05-24","sp_v3_3mo_date":"2022-07-12","age":"74","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50183":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-10","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She will contact us","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50181":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Never showed up for in-person visit. Surgery already occurred","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50184":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-08","screening_age":"64","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50185":{"redcap_data_access_group":"uchicago","main_record_id":"10229","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-11","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject no called/no showed to the first visit. Study staff attempted to reschedule the visit but were not able to make contact with the subject before their surgery. No study related procedures were completed. ","sp_data_site":"N/A"},"50186":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-15","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50187":{"redcap_data_access_group":"uchicago","main_record_id":"10228","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-11-16","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-19","date_and_time":"N/A","consent_process_form_complete":"0","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject was not able to schedule a visit before their surgery. No study related tasks were completed.","sp_data_site":"N/A"},"50188":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-16","screening_age":"63","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Subject never returned calls or answered follow up call. Surgery occurred","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50189":{"redcap_data_access_group":"uchicago","main_record_id":"10237","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-18","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-01","date_and_time":"2021-12-01 08:01","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-27","sp_v1_preop_date":"2021-12-01","sp_v2_6wk_date":"2022-02-07","sp_v3_3mo_date":"2022-03-28","age":"58","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50190":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50191":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"72","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50192":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-02","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50193":{"redcap_data_access_group":"uchicago","main_record_id":"10256","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-02","screening_age":"54","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-17","date_and_time":"2021-12-17 08:00","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2021-12-21","sp_v1_preop_date":"2021-12-17","sp_v2_6wk_date":"2022-02-01","sp_v3_3mo_date":"2022-03-22","age":"54","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50194":{"redcap_data_access_group":"uchicago","main_record_id":"10245","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-03","screening_age":"51","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-06","date_and_time":"2021-12-06 15:58","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-24","sp_v1_preop_date":"2022-03-23","sp_v2_6wk_date":"2022-05-05","sp_v3_3mo_date":"2022-06-24","age":"52","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50195":{"redcap_data_access_group":"uchicago","main_record_id":"10242","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-03","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-03","date_and_time":"2021-12-06 16:00","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-11","sp_v1_preop_date":"2022-01-07","sp_v2_6wk_date":"2022-02-22","sp_v3_3mo_date":"2022-04-11","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-02-08","ewprimaryreason":"1","ewdisreasons":"1|4|6","ewpireason":"N/A","ewcomments":"Subject elected to withdraw from the study due to COVID and time constraints. ","sp_data_site":"N/A"},"50196":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50197":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50198":{"redcap_data_access_group":"uchicago","main_record_id":"10243","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-03","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-06","date_and_time":"2021-12-20 09:51","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-01-04","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-02-15","sp_v3_3mo_date":"2022-04-04","age":"78","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50199":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50200":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50201":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50202":{"redcap_data_access_group":"uchicago","main_record_id":"10365","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-15","date_and_time":"2022-05-05 08:28","consent_process_form_complete":"2","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-20","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"Subject Signed consent 12/15/2021with a surgery date of 1/25/2022, and then canceled surgery on 12/20/202. Subject has not called to reschedule or returned to joints clinic since. ","sp_data_site":"N/A"},"50203":{"redcap_data_access_group":"uchicago","main_record_id":"10259","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"72","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-20","date_and_time":"2021-12-20 10:06","consent_process_form_complete":"2","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject was not able to find time before surgery to schedule their visit. No study related procedures were completed. ","sp_data_site":"N/A"},"50204":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-13","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50205":{"redcap_data_access_group":"uchicago","main_record_id":"10252","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-14","date_and_time":"2021-12-20 10:09","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-02-25","sp_v1_preop_date":"2022-01-05","sp_v2_6wk_date":"2022-04-08","sp_v3_3mo_date":"2022-05-25","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50206":{"redcap_data_access_group":"uchicago","main_record_id":"10254","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-16","date_and_time":"2021-12-20 10:11","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-28","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-05-09","sp_v3_3mo_date":"2022-06-28","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject signed up for the study, but study staff was unable to schedule a visit that would work with the subject schedule prior to surgery. No study related procedures were completed. ","sp_data_site":"N/A"},"50180":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-03","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Wrong entry. Subject's surgery occurred in October","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50207":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Subject lives in the suburb. She was willing to do it if the study occurred in the Orland Park campus. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50208":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50209":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-10","screening_age":"60","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|1","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50210":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-10","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Will call when she picks a surgery date ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50211":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-19","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50212":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-20","screening_age":"53","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50213":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-21","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50214":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-21","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Drive is too far","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50215":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-25","screening_age":"48","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Subject stopped answering phone ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50216":{"redcap_data_access_group":"uchicago","main_record_id":"10286","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-28","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-10","date_and_time":"2022-02-11 13:05","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-15","sp_v1_preop_date":"2022-03-01","sp_v2_6wk_date":"2022-04-26","sp_v3_3mo_date":"2022-06-15","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-12","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject had V1 and all pre-op appointments on the same day with the intention of doing everything in one day. The visit started with the MRI. A few minutes into the MRI the subject asked to be removed and brought to her appointments. She did not complete anything related to the study after that. ","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-05-19 09:51:11","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-03-01 10:00","erep_resolution_date":"2022-03-01 10:10","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"While subject was undergoing research MRI as a part of her\r\nBaseline A2CPS visit she reported feeling short of breath and\r\n\"having trouble breathing\" and asked to be removed from\r\nthe scanner. After being removed from the scanner the\r\nsubject reported she had experienced claustrophobia during\r\npast MRI's requiring sedation. She reported feeling better as\r\nsoon as she was out of the MRI and no further symptoms.\r\nShe was seen by multiple providers from her clinical care\r\nteam throughout the rest of the day as a part of her preoperative SOC visit.","erep_action_taken":"Research MRI halted and not resumed","erep_outcome":"Recovered without sequelae","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"50217":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50218":{"redcap_data_access_group":"uchicago","main_record_id":"10291","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-03","screening_age":"59","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-16","date_and_time":"2022-02-16 14:31","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"59","sex":"1","genident":"1","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50219":{"redcap_data_access_group":"uchicago","main_record_id":"10327","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-07","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-30","date_and_time":"2022-04-15 14:55","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-21","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-06-02","sp_v3_3mo_date":"2022-07-21","age":"56","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50220":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-08","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50221":{"redcap_data_access_group":"uchicago","main_record_id":"10306","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-28","screening_age":"58","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke with again, still thinking about it ","obtain_date":"2022-03-03","date_and_time":"2022-03-03 08:34","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject no called/no showed to the first visit. Study team attempted to reschedule but no contact was made. No study related procedures were completed. ","sp_data_site":"N/A"},"50222":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-07","screening_age":"51","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50223":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"49","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Stopped answering phone","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50224":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Travel issues ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50225":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"50","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50226":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50227":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50229":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50230":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-25","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Potential subject is interested in doing study but lives in Indiana and will have trouble with transportation so she declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50231":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50232":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Is ruled out for wanting second knee done ASAP","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50234":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50235":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-01","screening_age":"66","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50236":{"redcap_data_access_group":"uchicago","main_record_id":"10307","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-02","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-03","date_and_time":"2022-03-03 14:39","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-16","sp_v1_preop_date":"2022-03-07","sp_v2_6wk_date":"2022-04-27","sp_v3_3mo_date":"2022-06-16","age":"78","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50237":{"redcap_data_access_group":"uchicago","main_record_id":"10309","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-02","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-04","date_and_time":"2022-03-04 13:05","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-29","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-05-10","sp_v3_3mo_date":"2022-06-29","age":"63","sex":"2","genident":"2","ethnic":"3","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50238":{"redcap_data_access_group":"uchicago","main_record_id":"10308","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-03","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-04","date_and_time":"2022-03-04 10:49","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-09","sp_v1_preop_date":"2022-05-04","sp_v2_6wk_date":"2022-06-20","sp_v3_3mo_date":"2022-08-09","age":"72","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50239":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"59","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50240":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50241":{"redcap_data_access_group":"uchicago","main_record_id":"10350","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-28","screening_age":"67","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Wants to meet in person to discuss further ","obtain_date":"2022-04-20","date_and_time":"2022-07-11 15:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-28","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-06-09","sp_v3_3mo_date":"2022-07-28","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50242":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50243":{"redcap_data_access_group":"uchicago","main_record_id":"10332","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-04","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-05","date_and_time":"2022-04-05 13:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-20","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-06-01","sp_v3_3mo_date":"2022-07-20","age":"60","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50244":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50245":{"redcap_data_access_group":"uchicago","main_record_id":"10310","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-09","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-10","date_and_time":"2022-03-10 07:23","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-16","sp_v1_preop_date":"2022-03-10","sp_v2_6wk_date":"2022-04-27","sp_v3_3mo_date":"2022-06-16","age":"61","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-03-10 14:48:47","erep_ae_date":"","erep_visit_inv":"1","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"1","erep_protdev_desc":"Subject was enrolled the night of March 9th, 2022. During their visit on March 10th, study staff realized that only 86 days had elapsed between the first TKA and the second TKA. Visit was conducted as normal. ","erep_protdev_caplan":"New plan to allowed one business day between enrollment and visit one must occur now to prevent this from occurring again. ","erep_rel_covid19":"0"}}},"50246":{"redcap_data_access_group":"uchicago","main_record_id":"10371","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-10","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-05","date_and_time":"2022-07-11 15:22","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-19","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-06-30","sp_v3_3mo_date":"2022-08-19","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50247":{"redcap_data_access_group":"uchicago","main_record_id":"10315","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-10","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-16","date_and_time":"2022-03-16 10:11","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-03-18","sp_v1_preop_date":"2022-03-16","sp_v2_6wk_date":"2022-04-29","sp_v3_3mo_date":"2022-06-18","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50248":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"50","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50250":{"redcap_data_access_group":"uchicago","main_record_id":"10325","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-17","screening_age":"58","screening_gender":"2","screening_race":"4","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-28","date_and_time":"2022-03-28 13:55","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-06","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-05-18","sp_v3_3mo_date":"2022-07-06","age":"64","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50254":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50255":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50256":{"redcap_data_access_group":"uchicago","main_record_id":"10378","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-22","screening_age":"60","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-12","date_and_time":"2022-07-11 15:19","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-27","sp_v1_preop_date":"2022-05-24","sp_v2_6wk_date":"2022-07-08","sp_v3_3mo_date":"2022-08-27","age":"60","sex":"2","genident":"2","ethnic":"1","dem_race":"1","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50257":{"redcap_data_access_group":"uchicago","main_record_id":"10455","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-22","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-08-24","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"Subject was not able to schedule baseline before surgery ","sp_data_site":"N/A"},"50252":{"redcap_data_access_group":"uchicago","main_record_id":"10321","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-17","screening_age":"64","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-24","date_and_time":"2022-03-24 08:23","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-11","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-05-23","sp_v3_3mo_date":"2022-07-11","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50258":{"redcap_data_access_group":"uchicago","main_record_id":"10323","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-24","screening_age":"59","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-25","date_and_time":"2022-03-25 08:54","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-04","sp_v1_preop_date":"2022-03-15","sp_v2_6wk_date":"2022-05-16","sp_v3_3mo_date":"2022-07-04","age":"59","sex":"1","genident":"1","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50259":{"redcap_data_access_group":"uchicago","main_record_id":"10329","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-29","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-01","date_and_time":"2022-07-11 15:25","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-12","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-05-24","sp_v3_3mo_date":"2022-07-12","age":"62","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50260":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50262":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"72","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50263":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50264":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50265":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50266":{"redcap_data_access_group":"uchicago","main_record_id":"10377","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-30","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-12","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-25","sp_v1_preop_date":"2022-08-12","sp_v2_6wk_date":"2022-10-06","sp_v3_3mo_date":"2022-11-25","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50267":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-31","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50268":{"redcap_data_access_group":"uchicago","main_record_id":"10335","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-31","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-05","date_and_time":"2022-07-11 15:30","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-22","sp_v1_preop_date":"2022-04-15","sp_v2_6wk_date":"2022-06-03","sp_v3_3mo_date":"2022-07-22","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-08-08 12:34:15","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Cuff was applied to the subject during QST assessment. Research staff inflated the cuff to baseline and then assessed the prior history contraindications. Subject reported a history of blood clots. Cuff was removed and assessment was stopped. Cuff was applied the MRI but not inflated. Subject was informed that this increased their risk and was offered an opportunity to speak with a physician or PI. Subject declined. Subject was instructed to monitor their health and notify the research team if anything changes. Subject agreed to continue the remaining portion of the visit. ","erep_protdev_caplan":"Research assistant wrote in permanent marker \"Ask History\" on the cuff and added a checkbox to the checklist to make sure history is assessed before QSTs are started. ","erep_rel_covid19":"0"}}},"50269":{"redcap_data_access_group":"uchicago","main_record_id":"10338","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-04-05","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-06","date_and_time":"2022-04-15 11:43","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-04-25","sp_v1_preop_date":"2022-04-21","sp_v2_6wk_date":"2022-06-06","sp_v3_3mo_date":"2022-07-25","age":"68","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50270":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-11","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50271":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50272":{"redcap_data_access_group":"uchicago","main_record_id":"10360","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-18","screening_age":"58","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-27","date_and_time":"2022-04-27 16:21","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-13","sp_v1_preop_date":"2022-05-05","sp_v2_6wk_date":"2022-06-24","sp_v3_3mo_date":"2022-08-13","age":"58","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50273":{"redcap_data_access_group":"uchicago","main_record_id":"10354","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-19","screening_age":"73","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-21","date_and_time":"2022-04-26 12:47","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-05-13","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-06-24","sp_v3_3mo_date":"2022-08-13","age":"73","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50274":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"70","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50275":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50276":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-21","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50277":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50278":{"redcap_data_access_group":"uchicago","main_record_id":"10356","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-25","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-25","date_and_time":"2022-04-25 10:49","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-09","sp_v1_preop_date":"2022-06-29","sp_v2_6wk_date":"2022-09-20","sp_v3_3mo_date":"2022-11-09","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50279":{"redcap_data_access_group":"uchicago","main_record_id":"10403","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-26","screening_age":"80","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-14","date_and_time":"2022-07-11 15:32","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-23","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-08-04","sp_v3_3mo_date":"2022-09-23","age":"80","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50280":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50281":{"redcap_data_access_group":"uchicago","main_record_id":"10359","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-26","screening_age":"63","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-27","date_and_time":"2022-04-27 15:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"0","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"1","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-05-03","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"Upon further review, the PI could not rule out revision for infection for this subject. They decided to end their enrollment in the study before any study related activities could occur. ","sp_data_site":"N/A"},"50283":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50284":{"redcap_data_access_group":"uchicago","main_record_id":"10426","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-29","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-12","date_and_time":"2022-07-12 14:43","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-18","sp_v1_preop_date":"2022-07-12","sp_v2_6wk_date":"2022-08-29","sp_v3_3mo_date":"2022-10-18","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50285":{"redcap_data_access_group":"uchicago","main_record_id":"10442","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-03","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"After expressing interest, subject did not return calls after several tries. ","obtain_date":"2022-08-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-13","sp_v1_preop_date":"2022-08-18","sp_v2_6wk_date":"2022-10-25","sp_v3_3mo_date":"2022-12-13","age":"68","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50286":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-03","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50287":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50289":{"redcap_data_access_group":"uchicago","main_record_id":"10369","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-04","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-05","date_and_time":"2022-05-05 12:29","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-05-11","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50290":{"redcap_data_access_group":"uchicago","main_record_id":"10370","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-04","screening_age":"50","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-05","date_and_time":"2022-07-11 15:34","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-05","sp_v1_preop_date":"2022-06-08","sp_v2_6wk_date":"2022-08-16","sp_v3_3mo_date":"2022-10-05","age":"50","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50291":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-04","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50292":{"redcap_data_access_group":"uchicago","main_record_id":"10372","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-05","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-06","date_and_time":"2022-07-11 15:36","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-21","sp_v1_preop_date":"2022-06-10","sp_v2_6wk_date":"2022-08-02","sp_v3_3mo_date":"2022-09-21","age":"66","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50294":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-09","screening_age":"78","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50293":{"redcap_data_access_group":"uchicago","main_record_id":"10411","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-10","screening_age":"81","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-23","date_and_time":"2022-07-11 15:40","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-07","sp_v1_preop_date":"2022-07-06","sp_v2_6wk_date":"2022-08-18","sp_v3_3mo_date":"2022-10-07","age":"81","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50295":{"redcap_data_access_group":"uchicago","main_record_id":"10410","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-11","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-23","date_and_time":"2022-07-11 15:43","consent_process_form_complete":"0","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-08-24","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject missed two appointments for baseline and was unable to reschedule before he surgery. ","sp_data_site":"N/A"},"50296":{"redcap_data_access_group":"uchicago","main_record_id":"10409","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-16","screening_age":"80","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-23","date_and_time":"2022-07-11 15:17","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-01","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-09-12","sp_v3_3mo_date":"2022-11-01","age":"80","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50297":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"77","screening_gender":"1","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50298":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"71","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Surgeon mentioned study prior to a member of the research team entering the room and reported they declined before research approached. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50299":{"redcap_data_access_group":"uchicago","main_record_id":"10392","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-26","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-27","date_and_time":"2022-07-11 10:06","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-03","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-09-14","sp_v3_3mo_date":"2022-11-03","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50300":{"redcap_data_access_group":"uchicago","main_record_id":"10393","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-26","screening_age":"48","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-27","date_and_time":"2022-07-11 11:39","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-18","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-08-29","sp_v3_3mo_date":"2022-10-18","age":"48","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50301":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50302":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-27","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50303":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50304":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50305":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-01","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50306":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-09","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50307":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-01","screening_age":"52","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Surgery cancelled till further notice","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50308":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50309":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-20","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50310":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"54","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50311":{"redcap_data_access_group":"uchicago","main_record_id":"10412","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-02","screening_age":"73","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"1","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"1","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-06-23","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"Subject signed consent on 6/3/2022 before PI review. PI assessed eligibility on 6/23/2022 and reported the subject has rheumatoid arthritis. Subject was notified and withdrawn. ","sp_data_site":"N/A"},"50312":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50313":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50314":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"53","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Subject said she'll call back when she decides ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50315":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50316":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too close to surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50317":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Will contact us","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50318":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"81","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50319":{"redcap_data_access_group":"uchicago","main_record_id":"10413","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-14","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-21","sp_v1_preop_date":"2022-07-18","sp_v2_6wk_date":"2022-09-01","sp_v3_3mo_date":"2022-10-21","age":"63","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50320":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50321":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50322":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"53","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50323":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-08","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50324":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"83","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50325":{"redcap_data_access_group":"uchicago","main_record_id":"10418","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-16","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-23","sp_v1_preop_date":"2022-07-19","sp_v2_6wk_date":"2022-10-04","sp_v3_3mo_date":"2022-11-23","age":"66","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50326":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-17","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50327":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-17","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50328":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-17","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50329":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50330":{"redcap_data_access_group":"uchicago","main_record_id":"10416","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-23","screening_age":"65","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-06","sp_v1_preop_date":"2022-07-05","sp_v2_6wk_date":"2022-08-17","sp_v3_3mo_date":"2022-10-06","age":"65","sex":"2","genident":"2","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50331":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-24","screening_age":"77","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50332":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-24","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50333":{"redcap_data_access_group":"uchicago","main_record_id":"10439","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-24","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-29","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-09","sp_v1_preop_date":"2022-08-26","sp_v2_6wk_date":"2022-10-21","sp_v3_3mo_date":"2022-12-09","age":"56","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50334":{"redcap_data_access_group":"uchicago","main_record_id":"10440","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-24","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-29","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-09","sp_v1_preop_date":"2022-09-01","sp_v2_6wk_date":"2022-10-21","sp_v3_3mo_date":"2022-12-09","age":"61","sex":"1","genident":"1","ethnic":"3","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50335":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50336":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50337":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"57","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50338":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"66","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50339":{"redcap_data_access_group":"uchicago","main_record_id":"10422","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-07","screening_age":"76","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-27","sp_v1_preop_date":"2022-07-19","sp_v2_6wk_date":"2022-09-07","sp_v3_3mo_date":"2022-10-27","age":"76","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"2022-08-24","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"Subject was identified as having RA by the PI. Subject completed baseline surveys before being withdrawn. Study staff discussed the importance of withdrawing ineligible subjects in a timely manner. ","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-08-24 13:33:59","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Subject completed surveys but was not eligible for the study. ","erep_protdev_caplan":"Research staff discussed the importance of withdrawing subjects in a timely manner. ","erep_rel_covid19":"0"}}},"50340":{"redcap_data_access_group":"uchicago","main_record_id":"10423","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-07","screening_age":"56","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-20","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-08-31","sp_v3_3mo_date":"2022-10-20","age":"56","sex":"1","genident":"1","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A","adverse_effects":{"1":{"erep_local_dtime":"2022-07-28 13:03:03","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-07-19 10:00","erep_resolution_date":"2022-07-19 10:15","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Subject reported no history of claustrophobia and marked \"no\" to claustrophobia on MRI screening form. 15 minutes into the MRI the subject asked to be removed and reported feeling anxious and being out of breath. Subject immediately removed from MRI and all symptoms resolved within a few minutes. Subject reported that they had just learned they were claustrophobic. Subject declined to continue MRI.","erep_action_taken":"Subject will stay in study but does not wish to complete MRI.","erep_outcome":"Recovered without sequelae","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"50341":{"redcap_data_access_group":"uchicago","main_record_id":"10425","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-07","screening_age":"61","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-11","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-19","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-31","sp_v3_3mo_date":"2022-12-19","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50342":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"67","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50343":{"redcap_data_access_group":"uchicago","main_record_id":"10424","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-08","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-02","sp_v1_preop_date":"2022-07-26","sp_v2_6wk_date":"2022-09-13","sp_v3_3mo_date":"2022-11-02","age":"72","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50344":{"redcap_data_access_group":"uchicago","main_record_id":"10436","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-14","screening_age":"77","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"vm","obtain_date":"2022-07-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-23","sp_v1_preop_date":"2022-08-15","sp_v2_6wk_date":"2022-10-04","sp_v3_3mo_date":"2022-11-23","age":"77","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50345":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50346":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"76","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50347":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50348":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"78","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"no contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50349":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"60","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50350":{"redcap_data_access_group":"uchicago","main_record_id":"10443","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-20","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-29","sp_v1_preop_date":"2022-08-19","sp_v2_6wk_date":"2022-10-10","sp_v3_3mo_date":"2022-11-29","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50351":{"redcap_data_access_group":"uchicago","main_record_id":"10441","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-20","screening_age":"62","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50352":{"redcap_data_access_group":"uchicago","main_record_id":"10438","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-27","screening_age":"70","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-29","date_and_time":"2022-07-29 13:37","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-01","sp_v1_preop_date":"2022-07-29","sp_v2_6wk_date":"2022-09-12","sp_v3_3mo_date":"2022-11-01","age":"70","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50353":{"redcap_data_access_group":"uchicago","main_record_id":"10446","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-04","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-08-26","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50354":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-04","screening_age":"54","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50355":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-04","screening_age":"71","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50356":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"73","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50357":{"redcap_data_access_group":"uchicago","main_record_id":"10450","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-05","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50358":{"redcap_data_access_group":"uchicago","main_record_id":"10465","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-12","screening_age":"53","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-09-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50359":{"redcap_data_access_group":"uchicago","main_record_id":"10448","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-11","screening_age":"76","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50360":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50361":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"74","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50362":{"redcap_data_access_group":"uchicago","main_record_id":"10454","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-12","screening_age":"62","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50363":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-08","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50364":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"No contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50365":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-04","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50366":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"76","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Transportation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50367":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-15","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50368":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-22","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50369":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50370":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50371":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50372":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50373":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50374":{"redcap_data_access_group":"uchicago","main_record_id":"10462","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-19","screening_age":"54","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50375":{"redcap_data_access_group":"uchicago","main_record_id":"10463","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-25","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-14","sp_v1_preop_date":"2022-09-06","sp_v2_6wk_date":"2022-10-26","sp_v3_3mo_date":"2022-12-14","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50376":{"redcap_data_access_group":"uchicago","main_record_id":"10461","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-25","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-10-17","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-11-27","sp_v3_3mo_date":"2023-01-16","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50377":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50378":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"42","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50379":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50380":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"83","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50381":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50382":{"redcap_data_access_group":"uchicago","main_record_id":"10466","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-09-02","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-09-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50383":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50384":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50288":{"redcap_data_access_group":"uchicago","main_record_id":"10389","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-03","screening_age":"N/A","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-23","date_and_time":"2022-05-23 12:42","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-06-07","sp_v1_preop_date":"2022-06-05","sp_v2_6wk_date":"2022-07-19","sp_v3_3mo_date":"2022-09-07","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50108":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"N/A","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Paper copy given in clinic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50228":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"N/A","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50251":{"redcap_data_access_group":"uchicago","main_record_id":"10456","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-17","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-08-24","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"Subject was unable to schedule baseline before surgery ","sp_data_site":"N/A"},"50253":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50261":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"N/A","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50282":{"redcap_data_access_group":"uchicago","main_record_id":"10373","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-27","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50000":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"50233":{"redcap_data_access_group":"uchicago","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140001":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"81","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/20/2022-LVM\r\n06/22/2022-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140002":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"63","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"MRI-INELIGIBLE ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140003":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"82","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"06/22/2022 -Participant stated they are too old to come in. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140004":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-23","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/23/22-Participant stated she would look over the brochure's and let us know if she wants to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140005":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-27","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"06/27/22-participant stated she lives too far to come in. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140006":{"redcap_data_access_group":"rush_university_me","main_record_id":"15001","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-27","screening_age":"36","screening_gender":"2","screening_race":"4","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-28","date_and_time":"2022-06-28 08:13","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-29","sp_v1_preop_date":"2022-06-28","sp_v2_6wk_date":"2022-08-10","sp_v3_3mo_date":"2022-09-29","age":"N/A","sex":"2","genident":"2","ethnic":"N/A","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140007":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"57","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"06/29-Participant stated she does not have the time-commitment available.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140008":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"39","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/29/22-participant said to call her back due to her going to doctors appointment \r\n06/29/22-lvm ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140009":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/29/22-LVM\r\n07/06/22-LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140010":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/29-sent econsent document, participant stated to call her back 07/06.\r\n07/06/22-particpant said she would call back if interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140011":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"06/29-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140012":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"06/29/22-Participant does not want to be in any pain tests. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140013":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/06/22- Participant stated they do not have the time to be in the study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140014":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/11/22-participant stated she has enough problems already and does not want to drive up to the city. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140015":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/11/22-SURGERY will be rescheduled \r\n07/20/22-lvm\r\n07/25/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140016":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/11/22-Participant said they have too much going on.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140017":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/14/22-LVM\r\n07/20/22-PT needs Vietnamese Interpreter ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140018":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/11/22-participant stated that their surgery will be rescheduled\r\n07/20/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140019":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-21","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/21/22-LVM\r\n07/22/22-partcipant stated that she does not have the time for the study with her surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140020":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/22/22 participant does not want to make extra trips to the hospital ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140021":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"07/25/22-needs Spanish interpreter ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140022":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"83","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/25/22-lvm\r\n07/27/22-lvm\r\n08/12/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140023":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/22/22-Participant declined with no specific reason. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140024":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"64","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/25/22-lvm\r\nUnable to contact participant ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140025":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"07/25/22-LVM\r\n07/27/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140026":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/25/22-lvm\r\n07/27/22-Participant stated she is not interested in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140027":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"77","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"07/25/22-lvm\r\n07/27/22-pt declined ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140028":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-29","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"07/29/22-pt declined, too far to drive. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140029":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"08/03/22-pt declined with no specific reason ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140030":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"71","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/03/22-lvm\r\n08/05/22-lvm\r\nNot able to reach pt ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140031":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"73","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/03/22-partcipant stated it is too far of a drive ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140032":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"37","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/05/22-MB is full, could not leave a voice message. \r\n08/08/22-MB is full, could not leave a voice message. \r\n\r\n--->Could not reach patient.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140033":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"72","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"08/05/22-pt stated to give her a call back\r\n08/08/22-pt stated they are not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140034":{"redcap_data_access_group":"rush_university_me","main_record_id":"15002","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-09","screening_age":"50","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"08/09/22-sent a copy of the consent form. ","obtain_date":"2022-08-10","date_and_time":"2022-08-10 10:57","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-07","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-19","sp_v3_3mo_date":"2022-12-07","age":"50","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140035":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"76","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/09/22-Participant stated that they canno't go to the city for the study visits.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140036":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"63","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"08/09/22-sent a copy of the consent form call tomorrow \r\n08/10/22-pt stated call back at a later date \r\n\r\nCould not reach patient before surgery date after sending consent form out. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140037":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"74","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"08/09/22-sent a copy of the consent form.\r\n08/12/22-lvm \r\n08/29/22-stated would give a call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140038":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"65","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"08/09/22-participant stated they are not interested in research. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140040":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/10/22-patient declined, too much going on before surgery date. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140041":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"37","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"08/11/22-sent a copy of the consent form \r\n08/16/22-lvm\r\n08/23/22-pt declined, not willing to try MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140042":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"61","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"08/12/22-lvm\r\n05/15/22-pt declined, stated that she just wants the surgery to be over with. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140043":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-17","screening_age":"21","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/17/22-pt stated they cannot participate in the study due to work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140044":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"68","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/19/22-pt declined, too far to drive.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140045":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"49","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"08/23/22-pt stated they are not interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140046":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"67","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/23/22-pt stated they will look over the brochures.\r\n08/24/22-lvm\r\n\r\nCould not reach pt before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140047":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"52","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"08/23/22-stated they will give a call back.\r\n08/24/22-participant stated they need time to think about it. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140048":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"78","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"08/23/22-pt stated they will look over brochures.\r\n08/29/22-pt stated they still need more time to look over brochures, call back at a later date. \r\n9/2/22-pt stated she does not want to go back and forth from chicago","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140049":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"58","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"08/24/22-patient hung up the phone. \r\n08/29/22-sent a copy of the consent form \r\n09/01/22-participant stated they are no longer interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140050":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"54","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"08/24/22-pt is Spanish speaking, difficult to understand her and her children live in California.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140051":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"60","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"08/24/22-not interested in participating","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140052":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"81","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"08/31/22-pt stated she is not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140053":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"70","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"09/6/22-lvm","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140054":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"59","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"09/6/22-pt declined, not interested in research ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140055":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"69","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"09/6/22-declined, too far ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140039":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"08/9/22-participant stated they do not want to participate, \"no more doctors\".","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"140000":{"redcap_data_access_group":"rush_university_me","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"160000":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"}} \ No newline at end of file diff --git a/datastore/src/data/subjects/subjects-2-latest.json b/datastore/src/data/subjects/subjects-2-latest.json new file mode 100644 index 0000000..6263362 --- /dev/null +++ b/datastore/src/data/subjects/subjects-2-latest.json @@ -0,0 +1 @@ +{"60001":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60002":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"41","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives in Saginaw and will have difficulty commuting to Ann Arbor for study visits","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60003":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"49","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60004":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Did not want to do MRI, concerned with their health ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60005":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt asked to be called 6/28 in the afternoon, pt didn't know about sx date or pre-op visit on 6/29. Will try to approach in person on 6/29\r\n6/29 Unable to reach at appt, attempted call that went to VM\r\n7/1: Pt sounded like he was interested, but hung up and return call went to VM, left VM\r\n7/6: not sure if pt clear for MRI, but interested in participating\r\n7/8: No available documentation of removal of metal from eye, excluded from study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60006":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Called 3 times, no answer\r\n6/28- spoke with patient, said to call back in afternoon\r\n6/28- called back in afternoon, no answer\r\n6/30- called in afternoon, no answer","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60007":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"57","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60009":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"43","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60008":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"7/1 sx cancelled, re-contact when scheduled as very interested in participating","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60010":{"redcap_data_access_group":"university_of_mich","main_record_id":"20001","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-06-28","screening_age":"42","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Will see patient in clinic today 6/28","obtain_date":"2021-06-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-20","sp_v1_preop_date":"2022-01-17","sp_v2_6wk_date":"2022-03-03","sp_v3_3mo_date":"2022-04-20","age":"42","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60011":{"redcap_data_access_group":"university_of_mich","main_record_id":"20003","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-06-28","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Will email consent form and schedule a later date to complete enrollment\r\nConfirm BV time: Currently available for 10:30am w/ imaging at 13:15","obtain_date":"2021-06-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-07-15","sp_v1_preop_date":"2021-07-12","sp_v2_6wk_date":"2021-08-26","sp_v3_3mo_date":"2021-10-15","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-07-01","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt. is overwhelmed with the possibility of needing to go under cancer treatment and so they do not want to commit to the extra study activities. ","sp_data_site":"1"},"60012":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient declined via email 7/1 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60013":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|2","ptinterest_comment":"Declined on 6/29\r\nToo far to commute for study visits","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60014":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Study visits too long","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60015":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Left VM on 6/28 and emailed study information\r\nNA @ 12:23 7/1\r\nNA @ 11:28 7/6 and VM full","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60016":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"Per patient has been in and out of the hospital and does not want to come in for study visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60017":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-06-28","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Already had several MRIs this year","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60019":{"redcap_data_access_group":"university_of_mich","main_record_id":"20002","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-29","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-06-29","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-07-23","sp_v1_preop_date":"2021-07-14","sp_v2_6wk_date":"2021-09-03","sp_v3_3mo_date":"2021-10-23","age":"75","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60020":{"redcap_data_access_group":"university_of_mich","main_record_id":"20008","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-30","screening_age":"36","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient interested, filled out MRI form, waiting to hear back about possible imaging appt on 8/05 ","obtain_date":"2021-07-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-24","sp_v1_preop_date":"2021-08-05","sp_v2_6wk_date":"2021-10-05","sp_v3_3mo_date":"2021-11-24","age":"36","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60021":{"redcap_data_access_group":"university_of_mich","main_record_id":"20004","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-06-30","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Call back 6/30 4pm","obtain_date":"2021-06-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-07-15","sp_v1_preop_date":"2021-07-14","sp_v2_6wk_date":"2021-08-26","sp_v3_3mo_date":"2021-10-15","age":"72","sex":"2","genident":"2","ethnic":"2","dem_race":"2|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-07-15 10:08:15","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Used dominant leg for cuff rather than non-dominant leg. To be consistent, same leg (dominant) was used for imaging. ","erep_protdev_caplan":"To confirm with patients which hand they write with (dominant hand) instead of asking about dominant leg. ","erep_rel_covid19":"0"}}},"60022":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient is extremely claustrophobic and needs medication prior to MRI. Also requested open MRI, which is not available for this study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60023":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Per patient not interested in research at this time. Was involved in another research project and does not want to be in another at the moment. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60024":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60025":{"redcap_data_access_group":"university_of_mich","main_record_id":"20005","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-07-01","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-09-01","ewprimaryreason":"4","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Pt's surgery was postponed after enrollment and following up we found that the patient was deceased on 8/11/21.","sp_data_site":"N/A"},"60026":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-01","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient would like to be met with in clinic on 7/6\r\nPer patient does not want to drive to U of M for study visit- too far 7/6 ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60027":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-02","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Has sever claustrophobia and will not agree to MRI scans ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60028":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-02","screening_age":"36","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient was interested, but cannot image due to permanent body piercing 7/20\r\n\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60029":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-06","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Memory issues to the point of potentially not remembering that they signed a consent form.\r\nThe sternotomy is planned for but not necessarily going to happen.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60030":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-07","screening_age":"33","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to come in for baseline visit due to distance and needing to take care of children","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60031":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-08","screening_age":"79","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60032":{"redcap_data_access_group":"university_of_mich","main_record_id":"20006","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-07-08","screening_age":"48","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-09-02","sp_v1_preop_date":"2021-08-27","sp_v2_6wk_date":"2021-10-14","sp_v3_3mo_date":"2021-12-02","age":"48","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-10-26 15:11:55","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's 6 week surveys were not delivered to the patient, so they did not complete them in the approved window.","erep_protdev_caplan":"Patient's 6 week surveys were manually delivered and they completed them 5 days outside of window.","erep_rel_covid19":"0"}}},"60033":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-09","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"2","ptinterest_comment":"Over 300 mile commute and inconvenient trip as they live on an island ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60034":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-09","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"No response but was interested, contact in future if possible \r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60035":{"redcap_data_access_group":"university_of_mich","main_record_id":"20007","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-09","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Emailed information will follow up next week\r\nWill call patient after 3pm today 7/13","obtain_date":"2021-07-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-09","sp_v1_preop_date":"2021-08-02","sp_v2_6wk_date":"2021-09-20","sp_v3_3mo_date":"2021-11-09","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60036":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3|0","ptinterest_comment":"Patient too overwhelmed, states she wants to focus just on healing, not interested in research at this time- declined 7/19","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60037":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"65","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient emailed and said no thank you ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60038":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"Patient was very overwhelmed with upcoming surgery- no interested in research at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60039":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt. disliked the wording of the consent form such as \"What if I am Injured as a Result of Participation in This Study?\" and \"We will tell you about new information that may affect your willingness to stay in this study.\" The patient was also not willing to consent to the possible physical risks as he is cannot be sure his insurance will cover it. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60040":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-12","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient wanted her results from the imaging and testing. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60041":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-13","screening_age":"58","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60042":{"redcap_data_access_group":"university_of_mich","main_record_id":"20009","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-14","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient interested, making sure cleared for imaging prior to full consent 7/14\r\nCleared for imaging, will fully consent soon 7/15\r\nNo answer 7/19\r\nSeeing if can image 7/22 SL","obtain_date":"2021-07-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-09-03","sp_v1_preop_date":"2021-08-20","sp_v2_6wk_date":"2021-10-15","sp_v3_3mo_date":"2021-12-03","age":"55","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-10-26 15:20:16","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's 6 week surveys were not delivered to patient, therefore they did not complete them within the approved window.","erep_protdev_caplan":"Surveys were manually delivered to the patient and the patient completed them 4 days outside of the visit window.","erep_rel_covid19":"0"}}},"60043":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"32","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Lives too far and not enough travel compensation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60044":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-14","screening_age":"44","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60045":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-16","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Declined 7/19- patient does not want to make the drive","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60046":{"redcap_data_access_group":"university_of_mich","main_record_id":"20010","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-07-20","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Cleared for imaging 7/22 SL","obtain_date":"2021-07-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-04","sp_v1_preop_date":"2021-08-02","sp_v2_6wk_date":"2021-09-15","sp_v3_3mo_date":"2021-11-04","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2021-07-30","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt. asked to be withdrawn from the study because they began to feel overwhelmed with their surgery approaching and the study team calling to set up and confirm their baseline visit. Unfortunately, their appointment had to be scheduled last minute because of the study team receiving the MRI schedule only 1 week before the patients surgery date. The patient stated they just \"didn't want to do it anymore\" they wanted to focus on their surgery. ","sp_data_site":"1"},"60047":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"66","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Exclude patient- cannot have an MRI per patient ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60048":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"83","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt. currently overwhelmed with upcoming procedure and wants to pass on enrolling this time around but has expressed that it was bad timing and would potentially enroll if eligible in the future.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60049":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Too much extra work ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60050":{"redcap_data_access_group":"university_of_mich","main_record_id":"20011","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-21","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested in participating, but only if can image on 8/2 or 8/3 (with a hotel stay), will f/u when imaging schedule available \r\nInterested 7/27 SL","obtain_date":"2021-07-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-05","sp_v1_preop_date":"2021-08-02","sp_v2_6wk_date":"2021-09-16","sp_v3_3mo_date":"2021-11-05","age":"53","sex":"2","genident":"2","ethnic":"2","dem_race":"1","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-02-01 12:51:41","erep_ae_date":"2021-08-02","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2021-08-02 15:30","erep_resolution_date":"2021-08-02 15:45","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Patient became claustrophobic upon entering the scanner. ","erep_action_taken":"Patient will continue in the study.","erep_outcome":"Patient will not do the 3 month scan, but will continue with other study activities.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60051":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"chronic back pain and unable to do consecutive MRI scans. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60052":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-21","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Excluded- hx of metal in eye w/o documentation, cant image","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60053":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-22","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient cancelled his surgery, exclude for now 7/28 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60054":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-23","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt. periodically gets MRIs as part of their healthcare maintenance, so they were unwilling to go through extra MRI scans. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60055":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-26","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient was interested, but cant image due to very sever claustrophobia (due to an incident as a child)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60056":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-27","screening_age":"70","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"No answer x 3","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60057":{"redcap_data_access_group":"university_of_mich","main_record_id":"20013","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-07-27","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is interested, waiting to be cleared for imaging 7/27 SL","obtain_date":"2021-07-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-19","sp_v1_preop_date":"2021-08-12","sp_v2_6wk_date":"2021-09-30","sp_v3_3mo_date":"2021-11-19","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-10-13 13:54:54","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Patient answered 6wks surveys at 8wks after surgery. ","erep_protdev_caplan":"We created a segment that RAs to see when a patient has not completed their 6wk surveys. This will let the RAs check when surveys are not filled out by patients in time. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-03-04 13:05:48","erep_ae_date":"","erep_visit_inv":"5","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient completed their 6-month day 14 daily survey on 6-month day 15.","erep_protdev_caplan":"No action plan at this time.","erep_rel_covid19":"0"}}},"60058":{"redcap_data_access_group":"university_of_mich","main_record_id":"20012","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-07-27","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-07-29","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-09-15","sp_v1_preop_date":"2021-09-03","sp_v2_6wk_date":"2021-10-27","sp_v3_3mo_date":"2021-12-15","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2021-09-20","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"Patient declined having their scheduled procedure as they would rather deal with their current symptoms than the painful recovery process. So their surgery was canceled without being rescheduled.","sp_data_site":"1"},"60059":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-27","screening_age":"78","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"potentially interested but did not want to commit as there future healthcare plan is dependent on the results of their biopsy being performed on 8/4. Will re-contact after 3 months. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60060":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-07-28","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined, no reason","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60061":{"redcap_data_access_group":"university_of_mich","main_record_id":"20015","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-07-28","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested, cleared for imaging","obtain_date":"2021-08-09","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-27","sp_v1_preop_date":"2021-08-20","sp_v2_6wk_date":"2021-10-08","sp_v3_3mo_date":"2021-11-27","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-08-27 07:38:19","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient was unable to make it to schedule baseline visit and was unable to reschedule one before surgery. ","erep_protdev_caplan":"Performed the baseline blood draw, current medications, and breathing and coughing test with patient in Pre-Op day of surgery. ","erep_rel_covid19":"0"}}},"60062":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"31","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVm x 3","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60063":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-02","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Did not want to commit to extra visit outside of their usual health plan. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60064":{"redcap_data_access_group":"university_of_mich","main_record_id":"20016","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":1,"date_of_contact":"2021-08-02","screening_age":"59","screening_gender":"2","screening_race":"0","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is interested but was too busy to go over MRI screening/enrollment, cb tomorrow 8/10","obtain_date":"2021-08-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-24","sp_v1_preop_date":"2021-08-12","sp_v2_6wk_date":"2021-10-05","sp_v3_3mo_date":"2021-11-24","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-09-16 09:46:11","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Patient being scheduled for another thoracic procedure on 10/5 within 6 months due to an unexpected pathology result","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60065":{"redcap_data_access_group":"university_of_mich","main_record_id":"20014","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-02","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is very interested, waiting to be cleared for MRI 8/5","obtain_date":"2021-08-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-08-25","sp_v1_preop_date":"2021-08-13","sp_v2_6wk_date":"2021-10-06","sp_v3_3mo_date":"2021-11-25","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60067":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient is interested in study, but cannot get a ride down to U of M (lives in Grayling, MI 3 hours away). She is not comfortable with ride service, but would be willing to participate in the future if possible. Wil exclude patient for now. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60068":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"37","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Per patient does not want to do follow up visits. Overwhelmed right now and just wants to \"get back to normal life\" after the surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60069":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Excluded from study- extreme claustrophobia and cannot image unless medicated prior, bad experience as a child, 8/24","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60070":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient surgery was moved back due to positive covid test, asked patient if he was interested in possibly participating now that he is not out of town, was overwhelmed and said he would pass","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60071":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient is sole caregiver for husband can only participate if visit can be done the day before her surgery (which is a sunday). Recontact in future if eligible","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60072":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-04","screening_age":"37","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM x 3","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60073":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-05","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Patient did not want to image and thought the study was too involved. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60074":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"No response x 3 ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60075":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Wanted to focus on surgery but did not decline, so emailed information and if pt. wants to participate, they will reach out.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60076":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-06","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt. was very distressed with their upcoming procedure and said that they could not handle anything extra on top of their surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60077":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-09","screening_age":"49","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Cannot image, found out patient has a metal plate in jaw","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60078":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"81","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Due to age and needing hearing implants, pt. doesn't want to do anything extra outside of her required treatment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60079":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient declined immediately, no reason","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60080":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Interested in study but cannot come in for baseline visit before upcoming sx. Will approach after 3 months if pt. has another eligible procedure.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60081":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient gets frequent MRIs due to a health condition and did not want another. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60082":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-11","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient cannot image due to cervical vertebrae fusion","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60083":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-12","screening_age":"43","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient overwhelmed with current surgery but willing to possibly participate in the future if eligible 8/23","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60084":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-13","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Excluded from imaging- surgery on cervical vertebrae","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60085":{"redcap_data_access_group":"university_of_mich","main_record_id":"20018","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-18","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Consent at clinic visit on ","obtain_date":"2021-08-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-09-27","sp_v1_preop_date":"2021-09-03","sp_v2_6wk_date":"2021-11-07","sp_v3_3mo_date":"2021-12-27","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"1|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60086":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-19","screening_age":"44","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt's pre op visit is during scanner time, unable to schedule a baseline visit, ok to approach in the future if eligible 8/19 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60087":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-19","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient stated he is much sicker than he has been, was in the hospital up until yesterday, per patient too sick to participate","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60088":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-19","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Waiting to be cleared for imaging - patient is going to try and find information on cardiac stents- still waiting to hear as of 9/7\r\nPatient excluded- could not obtain information on multiple different stents from different providers in Indiana","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60089":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-20","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt seen in clinic. Scheduled for week after next and only available imaging slot did not work for their schedule. Also of note, does not have own transportation so it is difficult for him to sign up for study visits.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60090":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient excluded due to claustrophobia from head cage- had previous MRI of the brain and was not able to scan with head cage, required open MRI, otherwise patient was very interested in participating","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60091":{"redcap_data_access_group":"university_of_mich","main_record_id":"20017","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-08-23","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested, waiting to be cleared for imaging, consent in a couple days ","obtain_date":"2021-08-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-09-28","sp_v1_preop_date":"2021-09-14","sp_v2_6wk_date":"2021-11-08","sp_v3_3mo_date":"2021-12-28","age":"67","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-01-13 12:06:14","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's 3 month visit is 1 day outside of window. Window expired on 1/11 but patient wasn't able to come till 1/12 ","erep_protdev_caplan":"No corrective action needed, as this was due to patient's availability. ","erep_rel_covid19":"0"}}},"60092":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-23","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient cannot come in before surgery for baseline, cannot take more time off work, open imaging slot does not work for him, would be willing to enroll in future if eligible ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60093":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"36","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient does not have time for a baseline visit prior to surgery, cannot take time off of work, ok being approach in the future 8/24","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60094":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-24","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Patient would have a hard time making baseline visit prior to surgery and also does not want to do another MRI of the brain- had one in the last 2mo for diagnostic purposes","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60095":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-25","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Cluster phobic to the point of needing an open MRI or medication.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60096":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-26","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient does not have time for baseline visit, ok being called again in the future if eligible 9/2","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60097":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-26","screening_age":"26","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM x 2","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60098":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Cannot come in for a visit before surgery but was intersted","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60099":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-27","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined, no reason given","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60100":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-25","screening_age":"52","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Excluded from imaging- cervical fusion","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60101":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-31","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Not interested in coming in for optional study visits as they have almost a 4 hour drive one way to the hospital.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60102":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-31","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient was interested but surgery scheduled very quickly (cancellation slot), no real time for imaging ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60103":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-01","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60104":{"redcap_data_access_group":"university_of_mich","main_record_id":"20024","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-02","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Cleared for imaging, LVM x 2","obtain_date":"2021-09-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-11","sp_v1_preop_date":"2021-09-22","sp_v2_6wk_date":"2021-11-21","sp_v3_3mo_date":"2022-01-10","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-11-10 09:13:43","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Research assistant (myself) was calling patient to do daily surveys. Filled out last daily Acute Daily Trajectory Items survey on day 29 instead of day 28. ","erep_protdev_caplan":"When calling patients to do surveys, we will make sure to check the due date of the surveys prior to filling them out over the phone in coordinator mode. Also, we will try to fill out the other day 28 surveys on day 28 instead of day 29 and this will ensure we are not calling patients on day 29 and risk this mistake again. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2021-11-29 15:33:31","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6 week blood draw will not be performed as pt. is unable to find transportation ","erep_protdev_caplan":"No further actions required as this was upon the patient's request","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2022-02-01 12:43:29","erep_ae_date":"2021-09-22","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2021-09-22 13:30","erep_resolution_date":"","erep_ae_severity":"2","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Patient completed the baseline MRI, but asked not to do the 3-month scan when we reached out to schedule their visit because the noise was too loud and they feel like their hearing has been \"off\" since then. They \"don't know how much\", they \"just know they couldn't do it again\".","erep_action_taken":"Patient is continuing in the study.","erep_outcome":"Patient will not do the 3 month scan, but will continue with other study activities.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"},"4":{"erep_local_dtime":"2022-02-04 14:43:53","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Filled out surveys with patient 4 days late. The patient did not want to use the app, so RA were doing surveys over the phone with patient. RA's called patient 3-4 times over the course of 2 weeks and patient asked to do surveys at later times. Patient was able to do surveys on 1/27/22, 4 days outside of window.","erep_protdev_caplan":"More firmly schedule date and time when need to do surveys over the phone with patient. ","erep_rel_covid19":"0"},"5":{"erep_local_dtime":"2022-04-25 09:54:54","erep_ae_date":"","erep_visit_inv":"5","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Last daily acute 6mo survey filled out 1 day past window. Patient did not answer yesterday when called for last daily survey over the phone. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60105":{"redcap_data_access_group":"university_of_mich","main_record_id":"20019","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-02","screening_age":"56","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-11","sp_v1_preop_date":"2021-09-22","sp_v2_6wk_date":"2021-11-21","sp_v3_3mo_date":"2022-01-10","age":"56","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-11-10 09:09:53","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Research assistant (myself) was calling patient to do daily surveys. Filled out last daily Acute Daily Trajectory Items survey on day 29 instead of day 28. ","erep_protdev_caplan":"When calling patients to do surveys, we will make sure to check the due date of the surveys prior to filling them out over the phone in coordinator mode. Also, we will try to fill out the other day 28 surveys on day 28 instead of day 29 and this will ensure we are not calling patients on day 29 and risk this mistake again. ","erep_rel_covid19":"0"}}},"60106":{"redcap_data_access_group":"university_of_mich","main_record_id":"20020","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-03","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Waiting to be cleared for imaging 9/7 SL","obtain_date":"2021-09-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-18","sp_v1_preop_date":"2021-09-14","sp_v2_6wk_date":"2021-11-28","sp_v3_3mo_date":"2022-01-17","age":"65","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60107":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt's mother-in-law just passed away, so trying to plan a funeral between now and DOS.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60108":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"27","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt has a fear of MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60109":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-03","screening_age":"48","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Surgery got moved, trying to schedule possibly","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60110":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-07","screening_age":"62","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Can not get time off for baseline visit, approachable in the future.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60112":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-08","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Per patient wants \"no bad luck and this is like a black cat\" and declined 9/9","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60113":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-08","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance and unable to lay flat in an MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60114":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-08","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60115":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-09","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"History of metal in the eye without removal documentation, have to exclude from study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60116":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-09","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Wants to pass on enrolling at this time due to having another surgery planned in the next couple months","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60117":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-10","screening_age":"41","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Per patient she cannot have blood drawn- only R arm is available due to tumor on left and she has to save available blood draw sites for surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60118":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-10","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Excluded due to surgery on neck as a child in the 1950s and no documentation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60119":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-10","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Excluded- patient with regurgitation and can possibly aspirate if this happens while laying flat- cannot image due to safety concern","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60120":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-14","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"LVM 9/14 @ 10:10- MD\r\nDeclined- per patient he is \"sick of going in and out in and out of the hospital\" and is not willing to come in before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60121":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-15","screening_age":"51","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Talked to Pt's spouse and notified about the recruitment email. Patient will reach out if interested\r\n\r\nPatient never reached back out, considered no response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60122":{"redcap_data_access_group":"university_of_mich","main_record_id":"20025","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-15","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is interested, waiting to see if cleared for imaging ","obtain_date":"2021-09-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-14","sp_v1_preop_date":"2021-10-06","sp_v2_6wk_date":"2021-11-24","sp_v3_3mo_date":"2022-01-13","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2021-10-27 14:28:45","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Patient blood was drawn on DOS rather than baseline. ","erep_protdev_caplan":"We will ensure patient has enough time to get blood drawn with baseline visit. For patients who need to finish their baseline surveys at their visits, we will factor in an extra half hour to ensure we have enough time for all study activities. ","erep_rel_covid19":"0"}}},"60123":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-16","screening_age":"81","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much travel time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60124":{"redcap_data_access_group":"university_of_mich","main_record_id":"20021","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-16","screening_age":"28","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-07","sp_v1_preop_date":"2021-09-29","sp_v2_6wk_date":"2021-11-17","sp_v3_3mo_date":"2022-01-06","age":"28","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60125":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-17","screening_age":"71","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"No response from patient or patient's daughter. Spoke to in person for a third time, said would call if if interested after holiday ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60126":{"redcap_data_access_group":"university_of_mich","main_record_id":"20023","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-17","screening_age":"45","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Consent after approved for imaging","obtain_date":"2021-09-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-04","sp_v1_preop_date":"2021-09-29","sp_v2_6wk_date":"2021-11-14","sp_v3_3mo_date":"2022-01-03","age":"45","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60127":{"redcap_data_access_group":"university_of_mich","main_record_id":"20022","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-17","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-09-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-12","sp_v1_preop_date":"2021-10-04","sp_v2_6wk_date":"2021-11-22","sp_v3_3mo_date":"2022-01-11","age":"65","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60128":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-20","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient doesn't want to commit to research study .","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60129":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-22","screening_age":"45","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60130":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-08-03","screening_age":"44","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60131":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-21","screening_age":"44","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Per patient cannot take any time off of work before surgery and does not want to make long drive, reiterated increased compensation and travel compensation but politely declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60132":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient declined, had seen in clinic previously and was somewhat interested. Would not allow me to continue phone conversation after decline. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60133":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"25","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Spoke to patient 3-4 times in last 1-2 weeks. Patient was interested but unsure if could come in for visits prior to surgery depending on work schedule. Emailed patient last week again asking about possible availability for baseline visit, explained could work around their schedule. No response, spoke to patient again today and patient deferred participation. Stated unable to get time off work prior to surgery next week. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60134":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-27","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Sx was moved up to 10/14, which is 3 weeks earlier than patient was scheduled for originally, per patient too much going on with sooner surgery date and feels too overwhelmed to do study 10/11 SL\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60135":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-28","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient spoke with patient's daufther and she decided not to enroll. Per patient and her daughter she gets \"very tired very easily\" and could not make the drive to U of M and home. Patient stated she would not have anyone to driver her to an appt before surgery (daughter cannot) and did not want to use a ride sharing app even if reimbursed ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60136":{"redcap_data_access_group":"university_of_mich","main_record_id":"20026","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-09-28","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested will cb after talking to husband","obtain_date":"2021-09-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-26","sp_v1_preop_date":"2021-10-18","sp_v2_6wk_date":"2021-12-06","sp_v3_3mo_date":"2022-01-25","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60137":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-29","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient worried about driving for appointment- lives 3 hours away- reiterated travel compensation but still declined ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60138":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much going on per patient just very overwhelmed with surgery etc\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60139":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"46","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient was at U of M for a second opinion, decided to have surgery at hospital closer to home in grand rapids area, will be excluded since surgery not at a qualifying hospital","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60140":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"78","screening_gender":"1","screening_race":"4","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Would feel too overwhelmed if he participated","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60141":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Surgery will be bilateral lung reduction, exclude","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60142":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-01","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|4","ptinterest_comment":"Per patient he is extremely overwhelmed before surgery. Stated he has \"a lot to take care of\" and cannot commit to a study visit. Reiterated compensation etc, pt still politely declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60143":{"redcap_data_access_group":"university_of_mich","main_record_id":"20038","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-05","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-11-29","sp_v1_preop_date":"2021-11-24","sp_v2_6wk_date":"2022-01-10","sp_v3_3mo_date":"2022-02-28","age":"53","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60144":{"redcap_data_access_group":"university_of_mich","main_record_id":"20027","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-05","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM and sent recruitment email","obtain_date":"2021-10-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-11-04","sp_v1_preop_date":"2021-10-18","sp_v2_6wk_date":"2021-12-16","sp_v3_3mo_date":"2022-02-03","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60145":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-05","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient declined due to traveling distance- reiterated compensation but says due to time and traveling, also her husband is currently sick, if closer she would \"do it in a heartbeat\", declined 10/11","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60146":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Per patient read over information and would like to decline, patient is very overwhelmed with surgery and wants to only focus on surgery, does not wany any extra appts or calls","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60147":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Excluded due to implant in patient's neck; she really wanted to be in study, told her would call her if anything changes 10/11","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60148":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-06","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient is excluded, microblading of eyebrows","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60149":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unable to image, ear implants","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60150":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"had a sternotomy within the last 3 months","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60151":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"New MS diagnosis just a couple months ago (patient is having a hard time walking), very overwhelmed and surgery was scheduled very quickly (1wk from when the patient had first visit with thoracic surgeon) declined at this time but was very sweet and said would enroll if different life circumstances","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60152":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"52","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Last minute patient's work scheduled changed. Patient is a corrections officer and now has to work every day until day before surgery. Is not able to come in for a visit but willing in future if eligible. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60153":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-11","screening_age":"45","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient declined, too overwhelmed at the moment and does not want to do any more testing\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60154":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-12","screening_age":"25","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient has tattoo behind ear, excluded from MRI and study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60155":{"redcap_data_access_group":"university_of_mich","main_record_id":"20031","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-13","screening_age":"44","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient very interested in participating and no major contraindications in MRI screening. Hopefully can consent the patient once they get scheduled for Sx.","obtain_date":"2021-11-03","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-09","sp_v1_preop_date":"2021-11-19","sp_v2_6wk_date":"2022-01-20","sp_v3_3mo_date":"2022-03-10","age":"44","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60156":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-14","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Cancelled surgery, contact in future if scheduled again","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60157":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"22","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Unable to come for baseline visit ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60158":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-15","screening_age":"39","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"deferred participation due to drive, maybe enroll in future if eligible","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60159":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-18","screening_age":"68","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Not willing to drive 5 hours 1 way for study activity","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60160":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"37","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"patient is to be excluded, surgery is no longer necessary and will be canceled by the doctor.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60161":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt. unwilling to travel for study especially when winter is coming up ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60162":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-19","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Not willing to travel, lives 5 hours away ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60163":{"redcap_data_access_group":"university_of_mich","main_record_id":"20028","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-19","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Cb tomorrow","obtain_date":"2021-10-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-10-28","sp_v1_preop_date":"2021-10-21","sp_v2_6wk_date":"2021-12-08","sp_v3_3mo_date":"2022-01-27","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5|6","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60164":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-20","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60165":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-21","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":" patient scheduled w/in 2wks of clinic visit, felt too overwhelmed since surgery was so soon and not able to find a time to come in, also had to have transportation and was not comfortable with uber etc. and did not have a ride next week- deferred participation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60166":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-22","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Physician advised against participating in research due to prevent them from being overwhelmed. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60167":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60168":{"redcap_data_access_group":"university_of_mich","main_record_id":"20030","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-26","screening_age":"35","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-11-22","sp_v1_preop_date":"2021-11-10","sp_v2_6wk_date":"2022-01-03","sp_v3_3mo_date":"2022-02-21","age":"35","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-02-21 14:44:02","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"On day of surgery, doctors deviated from the original sternotomy approach and went with a clamshell incision which would have been an excluded approach.","erep_protdev_caplan":"Proceeded 3 month visit with using the left side as surgical side for all testing. ","erep_rel_covid19":"0"}}},"60169":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-26","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient excluded from MRI/study due to pacemaker","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60170":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"No response from patient after tried contacting again 3x. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60171":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-27","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM x 3 No response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60172":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-29","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"BMI 55, weight 360lbs","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60173":{"redcap_data_access_group":"university_of_mich","main_record_id":"20032","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-10-29","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-03","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-16","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-01-27","sp_v3_3mo_date":"2022-03-17","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-12-07","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"5","ewcomments":"The patient's original surgery was postponed and now they are scheduled for a procedure that is exclusionary. ","sp_data_site":"1"},"60174":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-29","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient's surgery got changed to a non-qualifying procedure, exclude for now","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60175":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-01","screening_age":"61","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation for this surgery. patient was scheduled within 2wks of new patient appointment. Had to take care of many things with work, no time to take off. Would be willing to participate in future if more time before surgery and eligible again","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60176":{"redcap_data_access_group":"university_of_mich","main_record_id":"20034","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-01","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Phone is patient's wife mobile;\r\nPer patient's wife could do visit on 11/22 or 11/23, will call in a few days once scheduled for pre op testing and talk to patient (patient was not home before)","obtain_date":"2021-11-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-11-24","sp_v1_preop_date":"2021-11-22","sp_v2_6wk_date":"2022-01-05","sp_v3_3mo_date":"2022-02-23","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60177":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60178":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Too overwhelmed with surgery etc","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60179":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too much of an extra commitment ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60180":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-02","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60181":{"redcap_data_access_group":"university_of_mich","main_record_id":"20033","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-04","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient interested, waiting to get cleared for imaging ","obtain_date":"2021-11-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-21","sp_v1_preop_date":"2021-11-15","sp_v2_6wk_date":"2022-02-01","sp_v3_3mo_date":"2022-03-22","age":"54","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60182":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM x 3\r\nNo response from patient after 3 calls and recruitment email\r\nMD spoke with pt, declined as visits would be too far away from home 11/18","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60183":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-05","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Want to know if there have bene studies linking prolonged pressure exposure to things like DVT\r\n\r\nPatient did not respond","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60184":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient's cancer is terminal, stated only a little while to live after surgery, very overwhelmed, no time for research ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60185":{"redcap_data_access_group":"university_of_mich","main_record_id":"20036","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-09","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-11-24","sp_v1_preop_date":"2021-11-23","sp_v2_6wk_date":"2022-01-05","sp_v3_3mo_date":"2022-02-23","age":"77","sex":"2","genident":"2","ethnic":"4","dem_race":"7","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60186":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient declined- does not want to drive to extra appointments or do extra testing as she needs her daughter to driver her. Offered baseline on same day as other appts but patient still declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60187":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"38","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Metallic fragment in eye excludes pt. for imaging","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60188":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-09","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60189":{"redcap_data_access_group":"university_of_mich","main_record_id":"20037","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-11","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Home # preferred\r\nInterested, cb next week","obtain_date":"2021-11-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-02","sp_v1_preop_date":"2021-12-17","sp_v2_6wk_date":"2022-03-16","sp_v3_3mo_date":"2022-05-02","age":"63","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-01-11 15:29:00","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient came in on 12/17/21 for their baseline visit and then their surgery was pushed back to 2/2/22 due to illness which will make their visit 5 days outside the 6-week window.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-02-18 14:45:21","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Filled out Opioid Use Acute Follow Up Day 14 on day 16 with patient. Patient has not been using app to do surveys after surgery, so RA has been calling them. ","erep_protdev_caplan":"RA will make a better schedule to ensure a daily patient call for surveys is not missed. ","erep_rel_covid19":"0"},"3":{"erep_local_dtime":"2022-03-21 10:07:39","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Patient went out of town (1month in Florida) and was not able to come in for 6wk blood draw. Was also sick the week prior to leaving. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60190":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-11","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Excluded- spinal cord stimulator, cannot image","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60191":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-12","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Travel","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60192":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-16","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"No response from patient after a few voicemails after initial call","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60193":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-24","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"research wasn't related to their diagnosis","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60194":{"redcap_data_access_group":"university_of_mich","main_record_id":"20039","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-16","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Home # is spouse's phone\r\nLVM x 1","obtain_date":"2021-11-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-17","sp_v1_preop_date":"2021-12-03","sp_v2_6wk_date":"2022-01-28","sp_v3_3mo_date":"2022-03-18","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60195":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-17","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Too short of a notice and won't be able to come in for baseline visit","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60196":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Too overwhelmed with cancer etc","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60197":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives too far, nervous about time commitment","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60198":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-19","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Excluded- tattoo on neck","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60199":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Unwilling to do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60200":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Per patient has been \"poked and prodded\" enough ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60201":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-23","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"did not respond","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60202":{"redcap_data_access_group":"university_of_mich","main_record_id":"20042","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-24","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Wanted more information.","obtain_date":"2021-12-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-21","sp_v1_preop_date":"2021-12-15","sp_v2_6wk_date":"2022-02-01","sp_v3_3mo_date":"2022-03-22","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-04-06 09:05:22","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Patient developed blood clots a week before 3mo visit. Unable to do cuff or CPM for safety reasons.\r\n","erep_protdev_caplan":"No corrective plan needed. Patient's illness unrelated to study. Noted in QST document as well. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-04-06 09:11:39","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient 2 days outside of 3mo window. Patient cancelled appointment last week and rescheduled for this week. ","erep_protdev_caplan":"RA will attempt to schedule 3mo visits earlier in window if there is availability in case patient needs to reschedule. ","erep_rel_covid19":"0"}}},"60203":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-30","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"No response from patient \r\nExpressed interest but then did not answer after 3 more calls","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60205":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-01","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient's wife called and expressed that he would like to decline","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60206":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-01","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Overwhelmed by study ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60207":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-02","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60208":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM x 3 ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60209":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-03","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient was interested if did not enroll in a clinical trial. Patient had to do mutation testing to see if eligible for clinical trial. These results did not come back until very close to patient's surgery date. No time to schedule a patient visit. Deferred participation.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60210":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"48","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"declined- too overwhelmed by surgery and diagnosis","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60211":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60212":{"redcap_data_access_group":"university_of_mich","main_record_id":"20045","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-07","screening_age":"57","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"No Response emailed info","obtain_date":"2021-12-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-27","sp_v1_preop_date":"2022-01-06","sp_v2_6wk_date":"2022-03-10","sp_v3_3mo_date":"2022-04-27","age":"57","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60213":{"redcap_data_access_group":"university_of_mich","main_record_id":"20044","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-07","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"cb tomorrow 12/8 SL","obtain_date":"2021-12-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-06-08","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"N/A","sp_data_site":"1"},"60214":{"redcap_data_access_group":"university_of_mich","main_record_id":"20046","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-07","screening_age":"44","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-19","sp_v1_preop_date":"2022-01-04","sp_v2_6wk_date":"2022-03-02","sp_v3_3mo_date":"2022-04-19","age":"44","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-04-20 14:42:24","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"1","erep_onset_date":"2022-04-19 13:30","erep_resolution_date":"2022-04-20 13:40","erep_ae_severity":"1","erep_ae_relation":"2","erep_ae_serious":"0","erep_ae_desc":"Patient had her 3mo visit on 4/19/20221. Patient stated she has had a lot of pain since surgery. Patient also has fibromyalgia and pain in her R arm (previous injury). After CPM in QST testing, patient stated she still felt the pressure/pain from the algometer still about 5 minutes after the test was completed. ","erep_action_taken":"Patient did not ask to withdraw or any similar action. Patient wished to finish QST testing and went to do MRI as well. ","erep_outcome":"Patient had discomfort through most of the QST testing. RA made sure to ask patient if she was ok proceeding prior to every test at 3mo visit. Patient was happy at end of visit and no follow up was needed. Patient's arm pain/pressure from the PPTs had dulled by the time she was leaving. No further follow up was conducted. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60215":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Home # preferred\r\n\r\nSpoke with pt, interested if surgery still occurs, cb in a few weeks at PET scan on 12/21\r\n\r\nPatient very interested but unable to make baseline visit before surgery, deferred participation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60216":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-07","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient's husband answered and patient cannot consent for herself. Per husband patient has short term memory loss and he is advocate and handles all medical decisions. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60217":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-08","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Not willing to make extra trips into Ann Arbor","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60218":{"redcap_data_access_group":"university_of_mich","main_record_id":"20049","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-10","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-19","sp_v1_preop_date":"2022-01-04","sp_v2_6wk_date":"2022-03-02","sp_v3_3mo_date":"2022-04-19","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60219":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"No specific reason for decline, patient just stated he was not interested on the phone","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60220":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60221":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-10","screening_age":"62","screening_gender":"1","screening_race":"6","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM x 3 and emailed no response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60222":{"redcap_data_access_group":"university_of_mich","main_record_id":"20050","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested, cb tomorrow","obtain_date":"2021-12-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-28","sp_v1_preop_date":"2021-12-17","sp_v2_6wk_date":"2022-02-08","sp_v3_3mo_date":"2022-03-29","age":"51","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-02-18 14:04:35","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"6wk blood draw completed 6 days outside of window. Patient did not want to come in extra for blood work, so scheduled with one of her appointments on 2/21/22, 6 days outside of window.","erep_protdev_caplan":"","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-04-11 13:00:06","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's 3mo visit ended up being 29 days outside of window. Patient was ill when called to confirm 3mo visit the day before. Rescheduled for the following week and then patient had a conflict with new doctor appointment. Had to then look for a new appointment/MRI opening for patient. ","erep_protdev_caplan":"No corrective action needed. ","erep_rel_covid19":"0"}}},"60223":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient just stated he is not interested. No further explanation given","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60224":{"redcap_data_access_group":"university_of_mich","main_record_id":"20052","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-16","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"N/A","sp_v1_preop_date":"2021-12-23","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2022-07-07","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"N/A","sp_data_site":"1"},"60225":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt lives far away and thought the visits would take too much time, especially with tax season coming up 12/16- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60226":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-17","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient does not have a car, daughter must driver her. Lives over 2 hours away and cannot make a baseline visit before her surgery since it is right around the holiday. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60227":{"redcap_data_access_group":"university_of_mich","main_record_id":"20054","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-17","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested, sign consent form at baseline visit (patient has a trach and hard to talk)","obtain_date":"2021-12-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-07","sp_v1_preop_date":"2021-12-23","sp_v2_6wk_date":"2022-02-18","sp_v3_3mo_date":"2022-04-07","age":"82","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60228":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"No time for baseline visit right now- surgery on 1/3 and only imaging slots available are on 12/23 and patient is busy with holiday. MRI not open week of 12/27, so just no time for visit. Patient interested but deferred participation for now. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60229":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-20","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Wanted to read information on the study, pt. will reach out if they are interested and have been notified that there might be a tight scheduling timeline due to the holidays. \r\n\r\nDid not reach back out, no response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60230":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-21","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Unable to reach patient before holiday and cannot scheduled baseline visit in time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60231":{"redcap_data_access_group":"university_of_mich","main_record_id":"20053","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-21","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested- consent later today","obtain_date":"2021-12-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-04","sp_v1_preop_date":"2021-12-23","sp_v2_6wk_date":"2022-02-15","sp_v3_3mo_date":"2022-04-04","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-12-23","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient said they've gotten really overwhelmed with surgery/scared with cancer diagnosis and didn't want to commit to the study.","sp_data_site":"1"},"60232":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-21","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60233":{"redcap_data_access_group":"university_of_mich","main_record_id":"20056","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-04","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-12","sp_v1_preop_date":"2022-01-07","sp_v2_6wk_date":"2022-02-23","sp_v3_3mo_date":"2022-04-12","age":"59","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60234":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"84","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60235":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60236":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60237":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Just had a procedure and wasn't feeling well enough to talk\r\nLVM for patient\r\nNo response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60238":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60239":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-04","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"has difficulty with winter travel ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60240":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"not interested in doing in person visits","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60241":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient not interested in doing any of the testing","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60242":{"redcap_data_access_group":"university_of_mich","main_record_id":"20057","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-05","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested cb monday","obtain_date":"2022-01-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-03","sp_v1_preop_date":"2022-01-11","sp_v2_6wk_date":"2022-03-17","sp_v3_3mo_date":"2022-05-03","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60243":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-05","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Overwhelmed with surgery, this was patient's second try as first surgery they reacted bad to anesthesia and surgery was not able to be completed. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60244":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"23","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient does not want to do \"all the testing\" ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60245":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient is claustrophobic but maybe willing to try, emailed info and will f/u early next week\r\n\r\nLVM x 2 after initial contact no response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60246":{"redcap_data_access_group":"university_of_mich","main_record_id":"20062","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-13","screening_age":"49","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM x 3 no response","obtain_date":"2022-01-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-31","sp_v1_preop_date":"2022-01-28","sp_v2_6wk_date":"2022-03-14","sp_v3_3mo_date":"2022-05-01","age":"49","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60247":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"51","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Declined- patient did not to do MRI and states he lives in Ohio so it is a burden to travel to Michigan for study visits","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60248":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Need sedation for MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60249":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Excluded- extreme claustrophobia in addition to special needs son, so hard to schedule a time for BL visit","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60250":{"redcap_data_access_group":"university_of_mich","main_record_id":"20063","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-13","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-10","sp_v1_preop_date":"2022-02-02","sp_v2_6wk_date":"2022-03-24","sp_v3_3mo_date":"2022-05-10","age":"68","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2022-02-01","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient was scheduled for baseline visit tomorrow. With inclement weather suspected for the area tomorrow, patient wished to cancel baseline visit. I spoke to the patient and offered other times later in the week or early next week prior to the patient's surgery on 2/10 but patient declined. Patient asked to not continue study procedures, stated she was stressed before surgery. ","sp_data_site":"1"},"60251":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Overwhelmed by upcoming surgery and doesn't want to add anything more. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60252":{"redcap_data_access_group":"university_of_mich","main_record_id":"20067","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-13","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Cb this evening","obtain_date":"2022-02-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-14","sp_v1_preop_date":"2022-02-11","sp_v2_6wk_date":"2022-03-28","sp_v3_3mo_date":"2022-05-14","age":"60","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60253":{"redcap_data_access_group":"university_of_mich","main_record_id":"20059","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-13","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Need to clear a potential conflict of interest with another study.","obtain_date":"2022-01-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-16","sp_v1_preop_date":"2022-01-25","sp_v2_6wk_date":"2022-04-27","sp_v3_3mo_date":"2022-06-16","age":"72","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-03-16 08:51:08","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's baseline visit is 5 days over 6 week window due to surgery being rescheduled several times. \r\n\r\nAlso, we have collected expectation responses from the patient based off their original surgery date and do to the last minute rescheduling of the patient's surgery, we were unable to collect a new set of expectation data. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60254":{"redcap_data_access_group":"university_of_mich","main_record_id":"20061","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-13","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-14","sp_v1_preop_date":"2022-02-22","sp_v2_6wk_date":"2022-04-25","sp_v3_3mo_date":"2022-06-14","age":"53","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60255":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Exclude- patient willing gave info about sacral nerve stimulator, must exclude from MRI and study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60256":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"50","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60257":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-13","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Cannot travel by themselves and on 24h O2","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60258":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-17","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Surgery has not been scheduled as of 8/24/22. Patient ended up deferring participation for now. Will contact in future possibly if they do get scheduled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60259":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-17","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"spinal cord stimulator not compatible with 3T MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60260":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-17","screening_age":"28","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt. wants to focus on sx and recovery so that they can get get back to work as soon as they can.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60261":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-17","screening_age":"26","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60262":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-18","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Overwhelmed by all study activities.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60263":{"redcap_data_access_group":"university_of_mich","main_record_id":"20066","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-18","screening_age":"44","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient is interested, schedule once get pre-op scheduled","obtain_date":"2022-01-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-11","sp_v1_preop_date":"2022-02-10","sp_v2_6wk_date":"2022-03-25","sp_v3_3mo_date":"2022-05-11","age":"44","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-05-10 12:51:40","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"1","erep_onset_date":"2022-05-10 10:30","erep_resolution_date":"2022-05-10 10:45","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Patient became claustrophobic in the scanner. Per patient was unable to get comfortable and obtain good positioning the scanner due to height/weight. After a few minutes of trying patient became claustrophobic/nervous and asked to be removed from the scanner and did not want to continue.","erep_action_taken":"Patient was removed from the scanner when requested and felt better afterwards. ","erep_outcome":"Patient did not scan at 3mo. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60264":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-18","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient overwhelmed and potentially joining a a clinical trial. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60265":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-18","screening_age":"51","screening_gender":"2","screening_race":"3","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Severely clusterphobic and unwilling to do MRI for study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60266":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-18","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM x 3 \r\n\r\nSaw patient in clinic and they declined, no time for BL appt prior to surgery, was not able to get ahold of him on phone so talked to him in clinc at pre op appt 1wk before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60267":{"redcap_data_access_group":"university_of_mich","main_record_id":"20072","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-21","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Cb next wednesday \r\nLVM","obtain_date":"2022-02-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-23","sp_v1_preop_date":"2022-03-17","sp_v2_6wk_date":"2022-05-04","sp_v3_3mo_date":"2022-06-23","age":"58","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-05-13 18:29:58","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Patient had to reschedule 6 week blood draw due to testing positive for covid and was not able to come in until after the visit window. Patient was 2 days past window (7 weeks and 2 days). ","erep_protdev_caplan":"None needed as deviation was due to accommodating the patient's schedule. ","erep_rel_covid19":"0"}}},"60268":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-21","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient has a brain tumor, must be excluded from study","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60269":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-21","screening_age":"71","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Surgery never scheduled as on 8/24/22. Patient deferred participation for now. will reach out if surgery does get scheduled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60270":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-25","screening_age":"59","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Exclude- Patient had a hard time understanding description of study over the phone, and staff was working remote on his clinic visit day, so we could not meet with him in person. Patient also needed his daughter present for explanation with medical topics. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60271":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-25","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too overwhelmed with study commitment","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60272":{"redcap_data_access_group":"university_of_mich","main_record_id":"20068","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-25","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Maybe interested cb in 1wk","obtain_date":"2022-02-02","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-21","sp_v1_preop_date":"2022-02-15","sp_v2_6wk_date":"2022-05-02","sp_v3_3mo_date":"2022-06-21","age":"54","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60273":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-25","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Overwhelmed by study and does not have the mental capacity to handle it along with their sx. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60274":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-26","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Out of State residence, unable to come in for in person visits. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60275":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-31","screening_age":"42","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM x 3 and email x 1\r\nNo response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60276":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"66","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Deferred participation, would participate in future, but patient lives 3 hours away and cant make baseline appt, also in processing of redoing his home before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60277":{"redcap_data_access_group":"university_of_mich","main_record_id":"20070","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-01","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-10","sp_v1_preop_date":"2022-03-01","sp_v2_6wk_date":"2022-04-21","sp_v3_3mo_date":"2022-06-10","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2022-02-28","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"1","ewcomments":"N/A","sp_data_site":"1"},"60278":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"62","screening_gender":"2","screening_race":"6","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"felt overwhelmed if they did study on top of their cancer","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60279":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-01","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Distance and swamped with other pre-op visits","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60280":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-02","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60281":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-02","screening_age":"37","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"needs general anesthesia for all MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60282":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-07","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Patient does not want to travel to U of M for extra appts","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60283":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-07","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60284":{"redcap_data_access_group":"university_of_mich","main_record_id":"20069","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-07","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"call tomorrow","obtain_date":"2022-02-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-24","sp_v1_preop_date":"2022-03-14","sp_v2_6wk_date":"2022-05-05","sp_v3_3mo_date":"2022-06-24","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-02-16","ewprimaryreason":"2","ewdisreasons":"N/A","ewpireason":"3","ewcomments":"RA initiated withdrawal. Patient's surgery was originally scheduled for 3/24/22 and baseline visit was scheduled for 3/14/22. There was a cancellation, so patient's surgery was changed to 2/17/22 on 2/15/22. Team became aware of this change on 2/16/22 and there was no time to conduct baseline visit prior to patient's surgery. ","sp_data_site":"1"},"60286":{"redcap_data_access_group":"university_of_mich","main_record_id":"20071","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-02-08","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-01","sp_v1_preop_date":"2022-02-21","sp_v2_6wk_date":"2022-04-12","sp_v3_3mo_date":"2022-06-01","age":"78","sex":"1","genident":"1","ethnic":"2","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-03-24 14:48:24","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Day 21 opioid use acute followup and deep breathing and coughing surveys were collected 1 day out of window","erep_protdev_caplan":"No action plan needed","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-03-31 10:22:03","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Day 28 Acute trajectory survey was collected on day 29 due to staff's inability to follow up on day 28","erep_protdev_caplan":"None needed","erep_rel_covid19":"0"}}},"60287":{"redcap_data_access_group":"university_of_mich","main_record_id":"20075","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-09","screening_age":"27","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-16","sp_v1_preop_date":"2022-02-25","sp_v2_6wk_date":"2022-04-27","sp_v3_3mo_date":"2022-06-16","age":"27","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-02-28 13:01:51","erep_ae_date":"2022-02-25","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-02-25 09:45","erep_resolution_date":"2022-02-25 10:10","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"After use of the neuropen during the temporal summation test, the patient had small red bumps on her arm and chest (more prominent on the arm) where the pen had been used. The bumps did not appear until a few minutes after the test was complete. Patient stated these did not hurt and that she just has \"sensitive skin. \" Bumps were almost completely resolved by the end of QST testing. Only a small amount of redness left. ","erep_action_taken":"Patient stated she is still willing to participate in the study. She was not concerned about the bumps since they dissipated quickly. ","erep_outcome":"Patient was happy to continue with the rest of testing and later study visits. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60288":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation or now. Patient had hard time making decision before surgery and surgery date was moved a couple times. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60289":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-10","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60290":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-11","screening_age":"51","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"cannot commit to the time commitment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60291":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Voicemail full, sent email\r\nSurgeon talked to pt, not a good candidate and declined 2/17","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60285":{"redcap_data_access_group":"university_of_mich","main_record_id":"20073","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-07","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Consent later today","obtain_date":"2022-02-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-04","sp_v1_preop_date":"2022-04-01","sp_v2_6wk_date":"2022-05-16","sp_v3_3mo_date":"2022-07-04","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60292":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient's daughter wanted to know about the study as well. Spoke iwth her and patient. Emailed and was told would follow up. Followed up with patient's daughter and she asked for protocol to be sent (she is a research coordinator at UM as well). Explained to daughter we cannot send full protocol as this time. After this no response from patient or daughter.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60293":{"redcap_data_access_group":"university_of_mich","main_record_id":"20074","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-15","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-24","sp_v1_preop_date":"2022-02-21","sp_v2_6wk_date":"2022-04-07","sp_v3_3mo_date":"2022-05-24","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-02-17","ewprimaryreason":"1","ewdisreasons":"5|1","ewpireason":"N/A","ewcomments":"Due to low energy, patient wanted to prioritize it to be with family rather than on study visits.","sp_data_site":"1"},"60294":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"short term memory loss","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60295":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-15","screening_age":"38","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation at this time. Patient unsure when will get surgery, in the running for a new job. Will contact later on if does get scheduled. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60296":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too much to add onto their schedule. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60297":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60298":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-18","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too much travel","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60299":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"wants to focus on sx","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60300":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"extreme claustrophobia to the point of needing sedation ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60301":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-22","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient states he does not have time for a visit prior to surgery. Still working and already overwhelmed with surgery etc. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60302":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Overwhelmed by surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60303":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-23","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"pt. unable to come in before sx for baseline visit.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60304":{"redcap_data_access_group":"university_of_mich","main_record_id":"20076","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-17","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-18","sp_v1_preop_date":"2022-03-07","sp_v2_6wk_date":"2022-04-29","sp_v3_3mo_date":"2022-06-18","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-03-21 10:38:00","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"7","erep_protdev_desc":"Expectation Survey was collected day of surgery","erep_protdev_caplan":"none needed","erep_rel_covid19":"0"}}},"60305":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-17","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Spoke to patient in clinic, wanted more time to think/email with information.\r\n\r\nLVM \r\n\r\nDid not respond","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60306":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient got nervous about driving 2 hours for the baseline visit. Decline due to travel distance. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60307":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient was running errands, asked to be called back the next day\r\n\r\nPatient surgery's got moved up (surgeon had to move it), no time for baseline visit. Deferred participation. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60308":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too big of a travel commitment ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60309":{"redcap_data_access_group":"university_of_mich","main_record_id":"20078","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-24","screening_age":"76","screening_gender":"1","screening_race":"3","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Yes- enroll next week on 2/28","obtain_date":"2022-02-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-18","sp_v1_preop_date":"2022-03-17","sp_v2_6wk_date":"2022-04-29","sp_v3_3mo_date":"2022-06-18","age":"76","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60310":{"redcap_data_access_group":"university_of_mich","main_record_id":"20081","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-01","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Cb next week, patient lives 7 hours away","obtain_date":"2022-03-11","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-06","sp_v1_preop_date":"2022-04-05","sp_v2_6wk_date":"2022-05-18","sp_v3_3mo_date":"2022-07-06","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60311":{"redcap_data_access_group":"university_of_mich","main_record_id":"20079","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-01","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-21","sp_v1_preop_date":"2022-04-07","sp_v2_6wk_date":"2022-06-02","sp_v3_3mo_date":"2022-07-21","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-04-06","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt. noted that they didn't want to go through with the study as they already couldn't image to begin with. ","sp_data_site":"1"},"60312":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient overwhelmed with surgery and chemotherapy at the moment. Also, patient stated they will not have time for visits after surgery- will be back to work \"6 days a week from dawn to dark as soon as I can\"\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60313":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt. can't fit study visits in their schedule","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60314":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"53","screening_gender":"2","screening_race":"6","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Per patient extremely claustrophobic (gave this information when mentioned MRI)- will exclude","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60315":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Did not want to do MRI and bloodwork- per patient just had these 2 things done for pre-surgical workout and does not want to do again","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60316":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient deferred participation for now. Very overwhelmed with current appointments, upcoming surgery, and cancer diagnosis. Stated that he may have another surgery in the future and would be willing to be approached again if he qualifies. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60317":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient does not want to drive again for BL visit (lives 3.5 hrs away and with gas prices). Offered patient day before surgery but did not want this either. Stated they are likely driving down day of surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60319":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-11","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient was see on 3/11/22 and surgery was scheduled on 3/25/22 only 2 weeks out.\r\n\r\nAlso, patient just had a death in the family and does not have time for a baseline visit before surgery. Wished patient the best and let her know we will defer participation for now. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60318":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient very overwhelmed with surgery and current situation. Stated research study would add too much on his plate.\r\n\r\nAlso, patient was see on 3/11/22 and surgery was scheduled for 3/22/22, less than 2wks ok. So, also a very quick turn around and hard for patient to have time for baseline visit.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60320":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-14","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Patient stated she is overwhelmed with surgery and does not want to do any more tests etc before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60321":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-14","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Per patient does not want to travel for study visits (>1hr away). Offered have visits same day as other appt and patient still declined. Patient said she also does not want to do any more testing. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60322":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60323":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-15","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60324":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60325":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation- patient unable to come in for BL visit on the day she planned (lives 150 miles away) because she has more appts than expected","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60326":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient lives 3 hours away and stated she will not be coming to Ann Arbor unless for medical reasons. Did not let me finish explaining study/compensation. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60327":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"scheduled very quickly for surgery (w/in 2wks) and lives 150 miles away, no time for BL visit\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60328":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient surgery was scheduled w/in 2wks of appearing on OR schedule. Surgery scheduled on 3/14 and surgery on 3/31. Patient in Florida until 3/26 and then has other appts on 3/28 and 3/29 and unable to come in for baseline appt (only 1 open day for patient to prep for surgery). ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60329":{"redcap_data_access_group":"university_of_mich","main_record_id":"20084","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-18","screening_age":"24","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-21","sp_v1_preop_date":"2022-04-12","sp_v2_6wk_date":"2022-06-02","sp_v3_3mo_date":"2022-07-21","age":"25","sex":"1","genident":"3","ethnic":"2","dem_race":"1|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-04-21 12:52:40","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Baseline surveys were completed day of surgery","erep_protdev_caplan":"none needed","erep_rel_covid19":"0"}}},"60330":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVm x 3\r\nEmailed recruitment info\r\n\r\nNo response","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60331":{"redcap_data_access_group":"university_of_mich","main_record_id":"20088","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-18","screening_age":"26","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-18","sp_v1_preop_date":"2022-04-07","sp_v2_6wk_date":"2022-06-29","sp_v3_3mo_date":"2022-08-18","age":"26","sex":"1","genident":"1","ethnic":"2","dem_race":"1|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60332":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"has stainless implants ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60333":{"redcap_data_access_group":"university_of_mich","main_record_id":"20085","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-22","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-01","sp_v1_preop_date":"2022-03-31","sp_v2_6wk_date":"2022-05-13","sp_v3_3mo_date":"2022-07-01","age":"66","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2022-04-06","ewprimaryreason":"4","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Patient unfortunately passed shortly after surgery due to complications after procedure. ","sp_data_site":"1"},"60334":{"redcap_data_access_group":"university_of_mich","main_record_id":"20086","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-23","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-05","sp_v1_preop_date":"2022-04-21","sp_v2_6wk_date":"2022-06-16","sp_v3_3mo_date":"2022-08-05","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-05-10 13:27:35","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient was exposed to covid 2 days before surgery on 5/5/22. So, patient's surgery was postponed to 6/9/2022. Will be 1 week outside of baseline window (baseline completed 7wks before surgery). ","erep_protdev_caplan":"None at this time. ","erep_rel_covid19":"0"}}},"60335":{"redcap_data_access_group":"university_of_mich","main_record_id":"20093","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-29","screening_age":"43","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-12","sp_v1_preop_date":"2022-04-19","sp_v2_6wk_date":"2022-06-23","sp_v3_3mo_date":"2022-08-12","age":"42","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-07-28 10:37:56","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's visit date was wrong in RK studios. Expectation items were filled out after surgery and all acute daily surveys (3d-28d post op) are 7 days late. ","erep_protdev_caplan":"Date was corrected in RK studios. 6wk visit/surveys and all upcoming visits and surveys will not be affected. \r\nTeam will make sure to check all participants' surgery date the week of surgery to ensure we don't miss these last minute scheduling changes. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-08-10 08:31:08","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"4","erep_protdev_desc":"Blood pressure machine glitched when took patient's blood pressure at beginning of QST. Planned to take blood pressure again prior to cuff, but I (RA) forgot to take blood pressure again. ","erep_protdev_caplan":"I (RA) will make sure to check entire CRF to make sure all fields are filled out. Blood pressure is listed first on our paper CRF, so checking back will allow the RA to see if something is missing. ","erep_rel_covid19":"0"}}},"60336":{"redcap_data_access_group":"university_of_mich","main_record_id":"20095","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-29","screening_age":"66","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Potentially interested, emailed info, follow up in a couple of days.","obtain_date":"2022-04-11","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-04","sp_v1_preop_date":"2022-04-21","sp_v2_6wk_date":"2022-06-15","sp_v3_3mo_date":"2022-08-04","age":"67","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-04-22 09:21:41","erep_ae_date":"2022-04-21","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-04-21 15:00","erep_resolution_date":"2022-04-21 15:10","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Patient was claustrophobic once in the MRI and having head cage put on. Patient tried a couple times with head cage but stated \"this would not work\" and decided not to do scan. Was too claustrophobic with head cage. Patient never had an MRI before and when enrolled stated she was willing to try. ","erep_action_taken":"Patient did not ask to withdraw or discontinue participation. Patient stated she will do all other study procedures besides MRI. ","erep_outcome":"Patient will continue with study but will not image at 3mo visit. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60337":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Overwhelmed and too far. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60338":{"redcap_data_access_group":"university_of_mich","main_record_id":"20092","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-30","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-14","sp_v1_preop_date":"2022-04-04","sp_v2_6wk_date":"2022-05-26","sp_v3_3mo_date":"2022-07-14","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60339":{"redcap_data_access_group":"university_of_mich","main_record_id":"20096","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-30","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Wants to finalize all surgical detail before considering research. ","obtain_date":"2022-04-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-22","sp_v1_preop_date":"2022-04-19","sp_v2_6wk_date":"2022-06-03","sp_v3_3mo_date":"2022-07-22","age":"60","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60340":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"MRI images can't be read unless contrast is used.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60341":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Interested but too tight of a time frame for them to come in for baseline visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60342":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-30","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Too busy for research study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60343":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-01","screening_age":"81","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient lives alone and doesn't drive much, son is coming from California to take care of him, does not want to \"run his son around\" politely declined\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60344":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"No time before surgery per patient. Patient states she will be very busy before surgery. Surgery was scheduled quickly within 2-3 wks of appearing on OR schedule","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60345":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-06","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient scheduled for surgery on 4/18 from appointment on 4/5 (only 13 days between scheduling and surgery). Per patient unable to make baseline visit with personal commitments and work before surgery. Declined at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60346":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-07","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Per patient does not want to do any more tests before surgery ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60347":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-08","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"Patient stated he is not really interested in research and is going to be \"too busy\" after surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60348":{"redcap_data_access_group":"university_of_mich","main_record_id":"20098","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-08","screening_age":"46","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"F/U in 1wk","obtain_date":"2022-04-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-26","sp_v1_preop_date":"2022-04-21","sp_v2_6wk_date":"2022-06-07","sp_v3_3mo_date":"2022-07-26","age":"46","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-06-06 14:51:16","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient not able to come in for 6wk visit. Patient lives on other side of the state and unable to come in until after 8wks post-op, outside of 6wk window. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60349":{"redcap_data_access_group":"university_of_mich","main_record_id":"20097","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-08","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVm and emailed","obtain_date":"2022-04-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-11","sp_v1_preop_date":"2022-04-25","sp_v2_6wk_date":"2022-06-22","sp_v3_3mo_date":"2022-08-11","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60350":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-08","screening_age":"66","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient unable to make baseline visit but potentially interested in future. Patient was scheduled for surgery very quickly (12 days) and lives about 2 hours away. Coming down day before surgery and considered this, but was told he now has to have a bronchial scope the day before surgery. So, declined participation at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60351":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Patient will talk to husband and f/u- starting chemo and radiation and then has a lot of appts coming up","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60352":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"Patient very overwhelmed at the moment and does not want to participant in research. Just finished chemo, been very sick, and likely having bladder surgery 2wks prior to thoracic surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60353":{"redcap_data_access_group":"university_of_mich","main_record_id":"20104","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-14","screening_age":"36","screening_gender":"1","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"F/U after CT scan in early May patient not yet officially scheduled for surgery","obtain_date":"2022-05-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-01","sp_v1_preop_date":"2022-05-20","sp_v2_6wk_date":"2022-07-13","sp_v3_3mo_date":"2022-09-01","age":"36","sex":"1","genident":"1","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-07-28 08:23:03","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient was going to come in around 6wks post-op for clinic appointment. Patient's appointment was cancelled and moved to a virtual one, so patient could not longer come in. Patient came in yesterday 7/27 for lab draw and we did 6wk draw concurrently with this. 1 week outside of window. ","erep_protdev_caplan":"None at this time. Due to patient changing availability. ","erep_rel_covid19":"0"}}},"60354":{"redcap_data_access_group":"university_of_mich","main_record_id":"20099","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-14","screening_age":"42","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Ready to enroll at 14:00 on 4/20","obtain_date":"2022-04-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-15","sp_v1_preop_date":"2022-05-13","sp_v2_6wk_date":"2022-07-27","sp_v3_3mo_date":"2022-09-15","age":"42","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60355":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"28","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60356":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"44","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation. Willing to maybe be talked to again in future. Right now patient just wants to focus on surgery and healing. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60357":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-22","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Issues with transportation and too short of a window. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60358":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-22","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Per patient's reply email, has been at \"facility enough\" with recent surgery and upcoming surgery. Does not want to do anything extra. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60359":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-22","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient was overwhelmed with surgery to begin with, was unsure if she wanted to have it. Would like to focus on diagnosis and surgery at this time and not add \"anything extra to her plate.\"","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60360":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-22","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Relies on someone else for transportation and would require things to be scheduled a couple weeks in advance. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60361":{"redcap_data_access_group":"university_of_mich","main_record_id":"20101","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-26","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"email and follow up on 4/27","obtain_date":"2022-04-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-11","sp_v1_preop_date":"2022-05-02","sp_v2_6wk_date":"2022-06-22","sp_v3_3mo_date":"2022-08-11","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60362":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"unable to make time commitment for things like the baseline visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60363":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"F/U Friday- surgery scheduled w/in 8 days, lives 3 hours away\r\n\r\nDeferred participation, timeline to short with surgery and distance to U of M, willing to be re-contacted in the future","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60364":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"LVM x 2\r\nSent recruitment email x 1","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60365":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"35","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient's surgery was cancelled. Did not contact patient again. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60366":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-29","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Surgery being moved to October 2022. Will contact closer to then. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60367":{"redcap_data_access_group":"university_of_mich","main_record_id":"20102","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-04","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Cb later today to consent ","obtain_date":"2022-05-04","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-07","sp_v1_preop_date":"2022-05-16","sp_v2_6wk_date":"2022-07-19","sp_v3_3mo_date":"2022-09-07","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60368":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too much of a commitment and relies on other for rides into Ann Arbor. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60369":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"No reliable transport and feel like it's too much on their plate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60370":{"redcap_data_access_group":"university_of_mich","main_record_id":"20103","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-06","screening_age":"41","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Interested cb tomorrow to consent","obtain_date":"2022-05-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-12","sp_v1_preop_date":"2022-05-10","sp_v2_6wk_date":"2022-06-23","sp_v3_3mo_date":"2022-08-12","age":"41","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-05-10 17:38:16","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Due to baseline visit after typical business hours, blood draw couldn't be performed. Blood will be collected on day of surgery. ","erep_protdev_caplan":"none needed as deviation was due to adjusting baseline visit to accommodate patient's schedule. ","erep_rel_covid19":"0"}}},"60371":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-06","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Not interested in research that doesn't have a positive benefit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60372":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-07","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"MRI\r\n\r\nPatient was going to enroll but had head MRI prior to enrollment phone call. Per patient had a bad experience with MRI and was too scared/did not want to do this MRI. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60373":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60374":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"75","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60375":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Don't want medically unnecessarily scans. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60376":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-16","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"overwhelmed with medical visit for multiple family members currently.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60377":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"40","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60378":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"42","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"2","ptinterest_comment":"Not willing to commit due to travel ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60379":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"69","screening_gender":"3","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60380":{"redcap_data_access_group":"university_of_mich","main_record_id":"20107","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-27","screening_age":"67","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Call next week to consent","obtain_date":"2022-05-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-03","sp_v1_preop_date":"2022-05-25","sp_v2_6wk_date":"2022-07-15","sp_v3_3mo_date":"2022-09-03","age":"67","sex":"1","genident":"1","ethnic":"4","dem_race":"7","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60381":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60382":{"redcap_data_access_group":"university_of_mich","main_record_id":"20114","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-17","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Saw in clinic, consent next week","obtain_date":"2022-05-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60383":{"redcap_data_access_group":"university_of_mich","main_record_id":"20105","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-19","screening_age":"34","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-27","sp_v1_preop_date":"2022-05-24","sp_v2_6wk_date":"2022-07-08","sp_v3_3mo_date":"2022-08-27","age":"34","sex":"1","genident":"1","ethnic":"2","dem_race":"2","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60384":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-20","screening_age":"67","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60385":{"redcap_data_access_group":"university_of_mich","main_record_id":"20109","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-12","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-10-03","sp_v1_preop_date":"2022-09-22","sp_v2_6wk_date":"2022-11-13","sp_v3_3mo_date":"2023-01-02","age":"54","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60386":{"redcap_data_access_group":"university_of_mich","main_record_id":"20113","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-19","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-03","sp_v1_preop_date":"2022-06-09","sp_v2_6wk_date":"2022-09-14","sp_v3_3mo_date":"2022-11-03","age":"74","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60387":{"redcap_data_access_group":"university_of_mich","main_record_id":"20106","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-20","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-15","sp_v1_preop_date":"2022-06-14","sp_v2_6wk_date":"2022-07-27","sp_v3_3mo_date":"2022-09-15","age":"63","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-07-01 11:40:14","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Pt. 6-week blood draw occurred 2 weeks and 2 days after surgery. Pt. has a long commute and was only in the area at that time","erep_protdev_caplan":"None needed","erep_rel_covid19":"0"}}},"60388":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-24","screening_age":"64","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60389":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Never responded ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60390":{"redcap_data_access_group":"university_of_mich","main_record_id":"20118","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-26","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM ","obtain_date":"2022-06-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-21","sp_v1_preop_date":"2022-06-17","sp_v2_6wk_date":"2022-08-02","sp_v3_3mo_date":"2022-09-21","age":"N/A","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60391":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient has to have diagnostic MRI and would not want to do another one with study ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60392":{"redcap_data_access_group":"university_of_mich","main_record_id":"20115","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-26","screening_age":"22","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-20","sp_v1_preop_date":"2022-06-13","sp_v2_6wk_date":"2022-08-01","sp_v3_3mo_date":"2022-09-20","age":"22","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60393":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Per patient not interested in the \"chronic pain study.\" Did not give further reasoning. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60394":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much travel and scheduled for sx. with less than 2 business days in between.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60395":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Per patient has had brain MRI in past with head cage and \"could not do it.\" Stated if didnt have to do MRI then would definitely enroll for study, but since this is a procedure will decline at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60396":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM x 2\r\nsent recruitment email","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60397":{"redcap_data_access_group":"university_of_mich","main_record_id":"20119","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-03","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-06","sp_v1_preop_date":"2022-06-24","sp_v2_6wk_date":"2022-08-17","sp_v3_3mo_date":"2022-10-06","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60398":{"redcap_data_access_group":"university_of_mich","main_record_id":"20121","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-08","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-22","sp_v1_preop_date":"2022-06-21","sp_v2_6wk_date":"2022-08-03","sp_v3_3mo_date":"2022-09-22","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-08-12 13:04:22","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6-week blood draw was performed 2 days past visit window","erep_protdev_caplan":"none needed as this was the earliest pt. could come in for the blood draw. ","erep_rel_covid19":"0"}}},"60399":{"redcap_data_access_group":"university_of_mich","main_record_id":"20125","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-08","screening_age":"70","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM and emailed","obtain_date":"2022-06-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-27","sp_v1_preop_date":"2022-07-11","sp_v2_6wk_date":"2022-09-07","sp_v3_3mo_date":"2022-10-27","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"2","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60400":{"redcap_data_access_group":"university_of_mich","main_record_id":"20128","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-08","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM no email on file","obtain_date":"2022-06-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-25","sp_v1_preop_date":"2022-07-22","sp_v2_6wk_date":"2022-09-05","sp_v3_3mo_date":"2022-10-25","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60401":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"travel and would make there schedule too packed","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60402":{"redcap_data_access_group":"university_of_mich","main_record_id":"20123","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-09","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-08","sp_v1_preop_date":"2022-06-16","sp_v2_6wk_date":"2022-08-19","sp_v3_3mo_date":"2022-10-08","age":"54","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-07-08 12:39:13","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Had patient's blood drawn on day of surgery from pre-op nurse after she placed patient's IV. At baseline visit patient stated she is vasovagal and usually faints when she gets blood drawn. So, for patient safety we decided to do it day of surgery when she was able to lay down and would not need an extra poke. ","erep_protdev_caplan":"None at this time. Patient's blood draw went very well and she was give cold compress and lavender scent by nurse. Patient did not faint with IV and nurse was able to obtain the blood for our study. ","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-08-30 09:58:51","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"6-Week surveys were resent and completed past the visit window.","erep_protdev_caplan":"none needed","erep_rel_covid19":"0"}}},"60403":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM x 2\r\n\r\nPatient did not email address on file. Patient finally called back 2 days and thought we were surgical team. No time for baseline visit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60404":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient unable to accommodate baseline visit in schedule and overwhelmed with surgery. Offered patient same day as other appt and still politely declined due to time constraints","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60405":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Overwhelmed\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60406":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-15","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation. Patient left Michigan Medicine care to seek other treatments. Will let her surgeon know if she needs to come back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60407":{"redcap_data_access_group":"university_of_mich","main_record_id":"20130","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-16","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-07","sp_v1_preop_date":"2022-06-27","sp_v2_6wk_date":"2022-08-18","sp_v3_3mo_date":"2022-10-07","age":"63","sex":"2","genident":"2","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60408":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"31","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient unable to come in for baseline visit- surgery scheduled very quickly and lives 2 hours away with little kids, but would have participated if closer to Ann Arbor and said ok to contact in future if eligible ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60409":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Per patient a lot of things going on right now and does not have time for study. Patient was scheduled very quickly and hard to fit in other appts for surgery and she needs a driver.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60410":{"redcap_data_access_group":"university_of_mich","main_record_id":"20131","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-22","screening_age":"53","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Verbal Yes, consent on 6/28 @ 9am","obtain_date":"2022-06-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-29","sp_v1_preop_date":"2022-08-12","sp_v2_6wk_date":"2022-10-10","sp_v3_3mo_date":"2022-11-29","age":"53","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60411":{"redcap_data_access_group":"university_of_mich","main_record_id":"20129","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-22","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM","obtain_date":"2022-06-23","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-17","sp_v1_preop_date":"2022-08-01","sp_v2_6wk_date":"2022-09-28","sp_v3_3mo_date":"2022-11-17","age":"70","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-08-17 07:29:27","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"2","erep_protdev_desc":"Due to time restraints at baseline visit, blood collection was delayed till day of surgery.","erep_protdev_caplan":"none needed.","erep_rel_covid19":"0"}}},"60412":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Deferred participation. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60413":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60414":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-24","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too much on their plate","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60415":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-24","screening_age":"43","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient cannot miss any work prior to surgery. No time for baseline visit- offered same day as other appts but stated he works evenings and cant afford to be late. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60416":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Per patient no time for baseline visit. Offered same day as other appts but politely declines. Lot going on before surgery. Long distant to travel to U of M as well. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60417":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Does not want to do unnecessary scans.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60418":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"would be too much added stress on them","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60419":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Overwhelmed with current situation and not willing to participate ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60420":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"52","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60421":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"63","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60422":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60423":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"63","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Unable to do closed MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60424":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"2","ptinterest_comment":"Compensation is not enough to cover the days of work they will need to take off for visits.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60425":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"55","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Difficulty arranging transportation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60426":{"redcap_data_access_group":"university_of_mich","main_record_id":"20136","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-07","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-25","sp_v1_preop_date":"2022-07-20","sp_v2_6wk_date":"2022-09-05","sp_v3_3mo_date":"2022-10-25","age":"63","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60427":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Won't do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60428":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60429":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-07","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Never responded","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60430":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"24","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60431":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"30","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Overwhelmed by anything medical related, would be too stressful for them. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60432":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Too short of a turn around and pt. seemed overwhelmed by the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60433":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Study is too involved and pt. is unwilling to commit. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60434":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"61","screening_gender":"1","screening_race":"0","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Not enough time ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60435":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-12","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Too much in not enough time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60436":{"redcap_data_access_group":"university_of_mich","main_record_id":"20139","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-13","screening_age":"37","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Ready to consent but currently busy, follow up on 7/18 to sched a time for enrollment.","obtain_date":"2022-07-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-29","sp_v1_preop_date":"2022-08-11","sp_v2_6wk_date":"2022-10-10","sp_v3_3mo_date":"2022-11-29","age":"37","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60437":{"redcap_data_access_group":"university_of_mich","main_record_id":"20140","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-13","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Saw patient in clinic. Patient was very overwhelmed, going to f/u next week. ","obtain_date":"2022-07-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-11","sp_v1_preop_date":"2022-07-25","sp_v2_6wk_date":"2022-09-22","sp_v3_3mo_date":"2022-11-11","age":"76","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60438":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"no longer able to come in for baseline visit ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60439":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Does not want to do an MRI. Was very clear would not do this. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60440":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM for patient x 3 starting July 20th (when came on OR schedule). Patient called back yesterday 8/2, only 2 days before surgery (tomorrow 8/4). No time for baseline visit but would be ok being contacted in the future if more time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60441":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"64","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient does not have a car and niece takes him everywhere. He is overwhelmed before surgery and would like to defer participation for now. But patient stated maybe in future when transportation is more secure and he is not as overwhelmed. Surgery scheduled within 2 weeks and other appts and mediastinoscopy inbetween. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60442":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Pacemaker- exclude. Saw in chart right before called pt. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60443":{"redcap_data_access_group":"university_of_mich","main_record_id":"20142","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-18","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Emailed info follow up in a couple days.","obtain_date":"2022-07-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-09","sp_v1_preop_date":"2022-07-28","sp_v2_6wk_date":"2022-09-20","sp_v3_3mo_date":"2022-11-09","age":"80","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60444":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Exclude- patient is extremely claustrophobic. Would be willing to do study if not. Exclude. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60445":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too much on their plate","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60446":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"26","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60447":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-23","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Sx never scheduled","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60448":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt felt overwhelmed with all of the study tasks. 7/20- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60449":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-21","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60450":{"redcap_data_access_group":"university_of_mich","main_record_id":"20141","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-21","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-30","sp_v1_preop_date":"2022-08-17","sp_v2_6wk_date":"2022-10-11","sp_v3_3mo_date":"2022-11-30","age":"58","sex":"1","genident":"1","ethnic":"4","dem_race":"7","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60451":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"52","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Very overwhelmed but did not decline. Will review brochure but asked to not be followed. Pt will reach out if they want to participate. \r\n\r\nNo response from patient after contacting a few times after initial contact. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60452":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient was seen on Friday 7/22 and surgery was scheduled over the weekend for the following Friday 7/29. Called patient when she came on OR report Monday 7/22. She was getting a bone scan and spoke mostly to her son. Patient deferred participant, too long of a drive (5 hours) and to short of a timeline before surgery. Also have to recover from bone scan today before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60453":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"74","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Came on OR report on 7/26 and scheduled for 7/29.\r\nPatient does not drive and her daughters drive her. Unable to make a trip in 3 days prior to surgery. Patient lives over 3 hours away as well. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60454":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60455":{"redcap_data_access_group":"university_of_mich","main_record_id":"20143","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-26","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-17","sp_v1_preop_date":"2022-08-05","sp_v2_6wk_date":"2022-09-28","sp_v3_3mo_date":"2022-11-17","age":"68","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60456":{"redcap_data_access_group":"university_of_mich","main_record_id":"20144","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-28","screening_age":"43","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-21","sp_v1_preop_date":"2022-08-23","sp_v2_6wk_date":"2022-11-02","sp_v3_3mo_date":"2022-12-21","age":"43","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-08-24 12:45:43","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-08-23 14:45","erep_resolution_date":"2022-08-23 15:00","erep_ae_severity":"1","erep_ae_relation":"2","erep_ae_serious":"0","erep_ae_desc":"After patient had her blood draw at baseline visit, she became slightly SOB a few minute after and had a headache and a little dizzy. Patient described though that due to the mass in her chest, she gets SOB very often and this is normal for her. She also has headaches quite frequently due to a previous neck injury. Patient also admitted she had not eaten since the day before due to an upset stomach the previous day. So, patient did not attribute her symptoms to the blood draw but other health conditions. ","erep_action_taken":"Research coordinator got patient some cold water and a snack. Had patient continue to sit in chair with door open and research coordinator sat outside of exam room to allow patient to eat and drink while keeping an eye on her. After about 15 minutes after eating/drinking, research assistant checked on patient and she felt much better. Continued with rest of QST testing without trouble. ","erep_outcome":"Patient felt much better after eating and drinking. She was able to finish QST testing and visit. She stated everyone was very accommodating and appreciated the help. Patient left the visit feeling well. ","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"60457":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-04","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient lives about 2.5 hrs away and surgery scheduled within a week. Unable to come in for baseline visit. Offered pt tomorrow (as coming in for pre op) but patient can't leave dogs that long (since 3 hour ride home too). Surgery scheduled for 8/10. Would be ok being contacted in the future if eligible. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60458":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"bad joint pain limiting mobility and wants to get it resolved first. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60459":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"42","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVm x 2 and emailed","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60461":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"58","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Very overwhelmed and stressed with current life situations/health. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60462":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"32","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Per patient not very comfortable with blood draws. Also lives about 2 hours away. Offered to do appointment same day as pre op appt and to do labs while patient gets other labs done. Patient politely still declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60463":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"48","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVm x 2 and emailed","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60465":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-08","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60466":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt. interested in study but MD unsure if sx is right treatment. Pt's case being sent to tumor board and will be evaluated. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60467":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"18","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient has Aspergers and is afraid of blood draws, has to take medcation for them. Decline study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60468":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM x 2 and emailed x 2 after initially speaking with pt. No response at this time. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60469":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Will read email and reach out if interested. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60470":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"55","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"will discuss w/ spouse and follow up next week","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60471":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"unable to add study visit on top of their current responsibilities. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60472":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too much added stress for them.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60473":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Exclude- very claustrophobic and cannot do MRI without sedative, otherwise would have been willing to enroll","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60474":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Current health issues makes it difficult for them to participate. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60475":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is nervous about traveling. Is care taker for special needs son and her husband. Unable to do any extra trips for visits. Offered same day as other appts but pt politely declined. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60476":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Must exclude. Patient has lesions on brain. Was very interested but told us this information prior to enrollment, so explained to pt this is an exclusion for MRI and we would not be able to enroll her. Patient very understanding. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60477":{"redcap_data_access_group":"university_of_mich","main_record_id":"20149","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-16","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-16","sp_v1_preop_date":"2022-09-01","sp_v2_6wk_date":"2022-10-28","sp_v3_3mo_date":"2022-12-16","age":"75","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"60478":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient is severely claustrophobic and cannot do an MRI unless medicated or in twilight sleep. Explained to patient this is an exclusion criteria for the MRI and we would not enroll her in the study. Patient understood- excluded from study. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60479":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-22","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60480":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"unable to make time commitment","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60481":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"unable to fit visits into schedule","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60482":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt. doesn't think study will be relevant to themselves","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60483":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-29","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60484":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"44","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt. wants to focus on recover and doesn't want to add any extra tasks to schedule.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60485":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Potentially interested ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60486":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60487":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Exclude- patient was very interested but extremely claustrophobic and cannot do MRI. Explained to patient must exclude due to claustrophobia and she understood- 8/31 SL. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60488":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient excluded due to claustrophobia. Patient was interested but admitted to claustrophobia after talking about MRI. 9/6/22 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60489":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"58","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too involved and unable to fit in personal schedule","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60490":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"62","screening_gender":"1","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60491":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Severe claustrophobia ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60492":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient had a hard time understanding the study and its obligations. Spoke to patient and answered questions. Patient asked for a callback number and hung up somewhat abruptly. Will f/u in a week or two once patient is scheduled for surgery. - 9/2 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60493":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"Too busy to fit in schedule","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60494":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60204":{"redcap_data_access_group":"university_of_mich","main_record_id":"20040","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-01","screening_age":"N/A","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Only will enroll if they can do baseline visit on 1/12/22","obtain_date":"2021-12-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-13","sp_v1_preop_date":"2022-01-02","sp_v2_6wk_date":"2022-02-24","sp_v3_3mo_date":"2022-04-13","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"60460":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"N/A","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"unwilling to do QST","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60464":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-08","screening_age":"N/A","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"60000":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70001":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Pt. surgery very soon, could not make it into a surgery visit due to time constraints. Could contact again in the future.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70002":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-09-30","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Sx. canceled cannot enroll right now but potentially could in the future.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70003":{"redcap_data_access_group":"university_of_mich","main_record_id":"20029","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-10-21","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-10-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-11-04","sp_v1_preop_date":"2021-10-27","sp_v2_6wk_date":"2021-12-16","sp_v3_3mo_date":"2022-02-03","age":"57","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70004":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-25","screening_age":"34","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70005":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-04","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70006":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-08","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Cannot scan","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70007":{"redcap_data_access_group":"university_of_mich","main_record_id":"20035","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-11","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-11-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-11-16","sp_v1_preop_date":"2021-11-15","sp_v2_6wk_date":"2021-12-28","sp_v3_3mo_date":"2022-02-15","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70008":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-15","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70009":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70010":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Cannot Scan","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70011":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-18","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70012":{"redcap_data_access_group":"university_of_mich","main_record_id":"20041","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-11-29","screening_age":"81","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-01","date_and_time":"2021-12-06 10:45","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-15","sp_v1_preop_date":"2021-12-07","sp_v2_6wk_date":"2022-01-26","sp_v3_3mo_date":"2022-03-16","age":"81","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-03-21 15:12:14","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"5","erep_protdev_desc":"Patient was unable to take oxy before imaging like at baseline visit due to no longer having a prescription for it. ","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"70013":{"redcap_data_access_group":"university_of_mich","main_record_id":"20043","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-06","screening_age":"83","screening_gender":"1","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-08","date_and_time":"N/A","consent_process_form_complete":"0","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2021-12-17","sp_v1_preop_date":"2021-12-15","sp_v2_6wk_date":"2022-01-28","sp_v3_3mo_date":"2022-03-18","age":"83","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"2022-01-10","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt. is in more pain than expected after sx. and is feeling overwhelmed by his recovery. He also had a bad experience doing the MRI during his baseline and does not want to continue doing the daily surveys. He said he has a lot on his plate and needs to discontinue his involvement in the study.","sp_data_site":"1"},"70014":{"redcap_data_access_group":"university_of_mich","main_record_id":"20051","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-18","sp_v1_preop_date":"2022-01-10","sp_v2_6wk_date":"2022-03-01","sp_v3_3mo_date":"2022-04-18","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70015":{"redcap_data_access_group":"university_of_mich","main_record_id":"20047","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-01-07","sp_v1_preop_date":"2021-12-23","sp_v2_6wk_date":"2022-02-18","sp_v3_3mo_date":"2022-04-07","age":"63","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70016":{"redcap_data_access_group":"university_of_mich","main_record_id":"20048","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2021-12-13","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2021-12-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2021-12-16","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient re-read consent form after enrollment and determined the study activities to be too overwhelming for her. ","sp_data_site":"N/A"},"70017":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70018":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70020":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-03","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70021":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-03","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70022":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-03","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70019":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-16","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She did not want to use the MRIs at UofM because she previously had a bad experience there.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70023":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-10","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70024":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-10","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"She is in another research study related to her sx.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70025":{"redcap_data_access_group":"university_of_mich","main_record_id":"20058","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-10","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-10","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-24","sp_v1_preop_date":"2022-01-21","sp_v2_6wk_date":"2022-04-07","sp_v3_3mo_date":"2022-05-24","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70026":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-20","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70027":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70028":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70029":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-07","screening_age":"66","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70030":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70031":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-21","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70032":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70033":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She is claustrophobic and didn't want to do the MRI without being sedated.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70034":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70035":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-03","screening_age":"34","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70037":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70038":{"redcap_data_access_group":"university_of_mich","main_record_id":"20090","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-28","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-28","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-11","sp_v1_preop_date":"2022-04-01","sp_v2_6wk_date":"2022-05-23","sp_v3_3mo_date":"2022-07-11","age":"69","sex":"2","genident":"2","ethnic":"3","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70039":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70040":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-28","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70041":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-04","screening_age":"58","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Has too many appts. before sx.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70042":{"redcap_data_access_group":"university_of_mich","main_record_id":"20094","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-31","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-04-04","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-29","sp_v1_preop_date":"2022-04-20","sp_v2_6wk_date":"2022-06-10","sp_v3_3mo_date":"2022-07-29","age":"69","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70044":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70049":{"redcap_data_access_group":"university_of_mich","main_record_id":"20111","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-26","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-05-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-13","sp_v1_preop_date":"2022-06-01","sp_v2_6wk_date":"2022-07-25","sp_v3_3mo_date":"2022-09-13","age":"72","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70051":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-31","screening_age":"79","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She thinks it is too involved","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70066":{"redcap_data_access_group":"university_of_mich","main_record_id":"20117","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-06","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-30","sp_v1_preop_date":"2022-06-20","sp_v2_6wk_date":"2022-08-11","sp_v3_3mo_date":"2022-09-30","age":"56","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70067":{"redcap_data_access_group":"university_of_mich","main_record_id":"20120","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-06","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-09","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-22","sp_v1_preop_date":"2022-06-17","sp_v2_6wk_date":"2022-08-03","sp_v3_3mo_date":"2022-09-22","age":"71","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"70068":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Has a lot going on prior to surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70069":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-16","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Does not have a way of getting to Ann Arbor and husband has dementia so she has to stay and take care of him.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70070":{"redcap_data_access_group":"university_of_mich","main_record_id":"20126","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-20","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-20","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-04","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-09-15","sp_v3_3mo_date":"2022-11-04","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-07-13","ewprimaryreason":"1","ewdisreasons":"6","ewpireason":"N/A","ewcomments":"Pt was recently hospitalized and became overwhelmed with the new updates in their health. ","sp_data_site":"1"},"70071":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Has contra-indications to MRI. Stated her doctor said she could not do them due to metal in her body from procedure and in general not willing to do one. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70072":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"52","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Called Friday (7/15) left vm. Surgery scheduled for 7/21, unable to consent in time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70073":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"32","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Called 7/20 @ 11:20am - pt asked to call back in an hour\r\n2nd call 7/20 @ 12:30pm - Pt not willing to do MRI, not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70074":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Stated she has a lot going on due to a previous surgery/car accident. Also, husband drives her everywhere, and does not want to burden him with additional appts.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70075":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt. said she is unable to do MRIs due to extreme claustrophobia","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70076":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70077":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70078":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"waiting for sx to be scheduled","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70079":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Unable to get in contact","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70080":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"After a brief overview pt stated he was not interested","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70081":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"8/12 - left vm\r\n8/16 - sx. no longer on schedule","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70082":{"redcap_data_access_group":"university_of_mich","main_record_id":"20150","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-16","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-17","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-16","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-28","sp_v3_3mo_date":"2022-12-16","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-09-02","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient had given availability for baseline visit 1-2 weeks prior. No fMRI slots were available at that time, so we let patient know we would call them as soon as possible when one opened (we obtained a cancellation). We also let patient know that if an opening did not come through by 9/6 we could schedule a non-imaging visit. We called patient on 9/6 to schedule this non-imaging visit since an fMRI opening had not come through. Patient stated all his availability for a baseline visit before surgery was now gone. He was also overwhelmed with the upcoming surgery and said he wants to focus on recovery only and asked to be withdrawn. ","sp_data_site":"1"},"70083":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Met with pt in clinic, was not interested specifically due to MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70084":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"55","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70085":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70086":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"54","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70036":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Does not want to put her body through any more than it already is going through.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70043":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-14","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70045":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Has too much going on prior to surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70046":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70047":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"2","ptinterest_comment":"He expressed that he would only join the study as a way to have someone monitor his pain control after surgery. He also wanted to see his results from the MRI/genetic information, so he declined when he heard he would receive no medical benefit from the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70048":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"She did not want to do a closed MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70050":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-31","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"She does not want to come to Ann Arbor for another visit before her surgery. I offered to line it up with other visits, but she said all of her visits will be on the same day so she does not have time to add this visit as well.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70052":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt. runs his own business and has no time before surgery to come in for a visit. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70053":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"No reason. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70054":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-08","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"He is dealing with asthma and health concerns prior to surgery (old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70055":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-11-01","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"A lot going on prior to sx. (old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70056":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much going on before sx. (old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70057":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"She is recovering from a different surgery and doesn't want to join (old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70058":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-24","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too many appointments before sx. (old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70059":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4|1","ptinterest_comment":"He is worried about being exposed to covid and also has too much going on before surgery. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70060":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-03","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Doesn't feel well prior to sx. and thinks he will be in too much pain after sx to participate. Also a lot going on. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70061":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-14","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"He has \"been poked and prodded enough\" before sx. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70062":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-04","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Old decline entered 6/2/2022","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70063":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-18","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much going on before sx. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70064":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-10-07","screening_age":"N/A","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Pt. is dependent on son to drive her and doesn't want to ask him to take time off. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70065":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-24","screening_age":"N/A","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too much going on before sx. (Old decline entered 6/2/2022)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"70000":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80001":{"redcap_data_access_group":"university_of_mich","main_record_id":"20055","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2021-12-15","screening_age":"70","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Will call patient to schedule the baseline visit","obtain_date":"2022-01-05","date_and_time":"N/A","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-22","sp_v1_preop_date":"2022-01-17","sp_v2_6wk_date":"2022-04-05","sp_v3_3mo_date":"2022-05-22","age":"70","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"80002":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2021-12-15","screening_age":"64","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80003":{"redcap_data_access_group":"university_of_mich","main_record_id":"20060","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-01-19","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-19","date_and_time":"2022-01-19 10:36","consent_process_form_complete":"0","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-01-20","ewprimaryreason":"1","ewdisreasons":"1|4","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80004":{"redcap_data_access_group":"university_of_mich","main_record_id":"20065","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-27","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-01-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-22","sp_v1_preop_date":"2022-02-01","sp_v2_6wk_date":"2022-04-05","sp_v3_3mo_date":"2022-05-22","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"3|5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"80005":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-09","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient's family member seems interested. Patient's concern is the long hours in clinic. Patient took the study folder home and was asked to contact study coordinator if she decides to join or have any questions.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80006":{"redcap_data_access_group":"university_of_mich","main_record_id":"20077","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-02-24","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-02-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-12","sp_v1_preop_date":"2022-03-21","sp_v2_6wk_date":"2022-05-24","sp_v3_3mo_date":"2022-07-12","age":"57","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"80007":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-25","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80008":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-25","screening_age":"81","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance concern. Patient asked if there are other locations for study visits in addition to Wayne State and UM. Compensation is not an issue.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80009":{"redcap_data_access_group":"university_of_mich","main_record_id":"20080","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-04","screening_age":"55","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-04","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-11","sp_v1_preop_date":"2022-03-08","sp_v2_6wk_date":"2022-04-22","sp_v3_3mo_date":"2022-06-11","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-03-07","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Patient would like to withdraw due to an insufficient travel compensation in relation to the rise in gas prices","sp_data_site":"1"},"80010":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Left voicemail for patient to call back.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80011":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"57","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80012":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"35","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Has a lot going on this week. Currently in hospital at the time of this call. Won't be able to make baseline visit before surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80013":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-07","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient is a school teacher and may not be able to attend in person visits due to work schedule. Wants ICF emailed to her and wants to think about joining.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80014":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-09","screening_age":"51","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Not interested in research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80015":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-10","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Left voicemail. Will call back next week if patient doesn't call us back.\r\n4/5/22 16:06 NA, left voicemail\r\n4/6/22 15:30: Declined enrollment ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80016":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-14","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80017":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-14","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"3/14: Left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80018":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient declined because they get lost in Detroit a lot and would need daughter to take off of work to help her navigate to Wayne State. Patient lives too far from UofM.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80019":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-16","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Does not want to participate in the MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80020":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-31","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Left first voicemail on 3/17.\r\nLeft a second voicemail on 3/31.\r\nPatient called back on 4/1 to hear more about the study. Patient declined; won't be able to make anymore appointments before surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80021":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Patient is not eligible.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80022":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-17","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient is interested, but she works full time and does not drive. She relies on husband for driving.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80023":{"redcap_data_access_group":"university_of_mich","main_record_id":"20083","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-18","screening_age":"68","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-01","sp_v1_preop_date":"2022-03-28","sp_v2_6wk_date":"2022-05-13","sp_v3_3mo_date":"2022-07-01","age":"68","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"80024":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"No answer\r\nPatient was offered two thoracic surgery studies. Interested in the first one. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80025":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-22","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"No answer.\r\n2nd attempt was made on 3/23/22 at 3:22 p.m. \r\nNo returned call from patient.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80026":{"redcap_data_access_group":"university_of_mich","main_record_id":"20089","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-23","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"3/24: No answer. Pt called back and left a voicemail at 12:06 p.m. Spoke to pt at 12:47 p.m. \r\nCalled at 2:22 p.m.","obtain_date":"2022-03-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-03-30","sp_v1_preop_date":"2022-03-28","sp_v2_6wk_date":"2022-05-11","sp_v3_3mo_date":"2022-06-30","age":"60","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-03-30 11:31:07","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient completed their baseline surveys on the morning of their day of surgery. ","erep_protdev_caplan":"No corrective action. The patient was reminded to do the surveys, but did not so the patient was seen in pre-op before surgery to complete the surveys.","erep_rel_covid19":"0"},"2":{"erep_local_dtime":"2022-07-28 14:59:58","erep_ae_date":"","erep_visit_inv":"4","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"3 month visit was performed 14 days past visit window due to inability to come in sooner.","erep_protdev_caplan":"None needed","erep_rel_covid19":"0"}}},"80027":{"redcap_data_access_group":"university_of_mich","main_record_id":"20091","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-30","screening_age":"74","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-03-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-21","sp_v1_preop_date":"2022-04-13","sp_v2_6wk_date":"2022-06-02","sp_v3_3mo_date":"2022-07-21","age":"74","sex":"2","genident":"2","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2","adverse_effects":{"1":{"erep_local_dtime":"2022-04-21 14:09:28","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Baseline surveys were completed the day of surgery.","erep_protdev_caplan":"none needed","erep_rel_covid19":"0"}}},"80028":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-05","screening_age":"56","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too close to surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80029":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-05","screening_age":"70","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Distance-related issue or concern","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80030":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Doesn't want to come into the clinic more than she already has to; tired.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80031":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Has a lot of health problems. Wanted to join, but lives far from Wayne State and U of M. Also, the baseline appointment had to take place before surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80032":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-12","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"4/12: Left message with woman on phone for him to call me back.\r\n4/13: Declined. Too busy.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80033":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Has had so many doctor's appointments in the last 9 months and doesn't want to participate.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80034":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Not eligible. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80035":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Has a lot going on and lives far from U of M and Wayne State.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80036":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Doesn't do well with MRI's; claustrophobic. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80037":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"52","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Doesn't have time to join the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80038":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"AJ 4/18: Patient just wants to get surgery over with. Not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80039":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-18","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Too weak to join; is getting feeding tube put back in tomorrow (4/19/22), and has a doctor's appointment on Wednesday to confirm that he's strong enough to have the eligible surgery on 4/25/22. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80040":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-21","screening_age":"48","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Declined; lives 2 hours away from clinic sites.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80041":{"redcap_data_access_group":"university_of_mich","main_record_id":"20100","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-25","screening_age":"52","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"4/25: Sent pt study information\r\n4/26: No answer","obtain_date":"2022-04-27","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-05-17","sp_v1_preop_date":"2022-05-10","sp_v2_6wk_date":"2022-06-28","sp_v3_3mo_date":"2022-08-17","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"80042":{"redcap_data_access_group":"university_of_mich","main_record_id":"20112","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-04-26","screening_age":"26","screening_gender":"1","screening_race":"1","screening_ethnicity":"2","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"4/26: No answer; possibly hung up on. Will call again tomorrow.\r\n5/5: Left voicemail.\r\n5/12: Consent form sent. Wants to think about it. Says he will call us back by 6/1. If he doesn't call back, we will call him on 6/1.\r\n5/24: Patient called. ICF resent to new email. Will consent on 5/25.\r\n5/26: ","obtain_date":"2022-05-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-23","sp_v1_preop_date":"2022-06-17","sp_v2_6wk_date":"2022-08-04","sp_v3_3mo_date":"2022-09-23","age":"N/A","sex":"1","genident":"1","ethnic":"1","dem_race":"6","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2","adverse_effects":{"1":{"erep_local_dtime":"2022-08-16 14:24:47","erep_ae_date":"","erep_visit_inv":"3","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Participant's 6-week follow up window is 7/28/22 - 8/11/22. They were scheduled for 8/10, but same day cancelled and rescheduled for 8/15. So their blood draw was 4 days past their window close date.","erep_protdev_caplan":"We will try to schedule participants towards the beginning of their follow-up window just in case a reschedule is needed.","erep_rel_covid19":"0"}}},"80043":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80044":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"AJ 4/28: Wants to think about it; ICF sent via email. Will call back 5/2 for decision.\r\n5/2: Declined; not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80045":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"75","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3|0","ptinterest_comment":"Works so he can't come in to study visits. Not really interested in research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80046":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-28","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/28: Has a lot going on today. Wants a call back next week. Will call on 5/3.\r\n5/5: Declined. No specific reason.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80047":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"31","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"5/5: Did not contact. Epic states patient is having a bilateral procedure.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80048":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-05","screening_age":"64","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"5/5: Pt has a lot going on. She asks if she can do the visits on weekends. She will think about it. Sent study documents to pts.\r\n5/9: Pt was reminded about this research opportunity and upcoming surgery. Pt stated that she's still thinking about it and will let me know.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80049":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"5/12: Left voicemail\r\n5/17: Declined. Doesn't want to do blood draw and other tasks. May change his mind.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80050":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"56","screening_gender":"1","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Declined; Works during study visit hours. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80051":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"71","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Daughter answered; requested call back at 2:10pm. Spoke with patient at 2:15pm. He received the brochure from Popoff's clinic. Wants a call back Monday for final decision.\r\n5/17: Patient declined. He travels from Michigan to Florida. Can't make study appointments.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80052":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Declined; lives two hours away. Too far of a drive. Patient hard of hearing.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80053":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-13","screening_age":"63","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Not interested. Not convenient.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80054":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"56","screening_gender":"1","screening_race":"0","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"5/19: Left voicemail.\r\n5/19: Patient called back. Wants to enroll. Sending consent form via email for patient to sign. U of M.\r\n5/20: Left voicemail. \r\n5/20: Patient called back. Declined due to MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80055":{"redcap_data_access_group":"university_of_mich","main_record_id":"20110","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-19","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"5/19: Left voicemail.\r\n5/23: Left voicemail.\r\n5/26: Interested in joining. ICF sent","obtain_date":"2022-05-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-14","sp_v1_preop_date":"2022-07-03","sp_v2_6wk_date":"2022-07-26","sp_v3_3mo_date":"2022-09-14","age":"60","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2","adverse_effects":{"1":{"erep_local_dtime":"2022-07-15 14:39:24","erep_ae_date":"","erep_visit_inv":"6","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient's surgery date was entered incorrectly on the MDH app. It was listed as 7/14/22 versus their actual date of 6/14/22. Patient did not receive their acute daily surveys. The post-consent form was also not finished in RedCap, so they patient's name was not flagged to missing any surveys or visits. ","erep_protdev_caplan":"The Wayne State, Henry Ford, and U of M teams will communicate more frequently about participants. Also, the HF team will make sure to fill out the post-consent form directly after enrollment and Wayne State will check surgery dates when the patient enrolls in MDH. ","erep_rel_covid19":"0"}}},"80056":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"81","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|0","ptinterest_comment":"5/19: Left voicemail.\r\n5/23: Declined. Not interested in research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80057":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"5/23: Declined. She lives in Bad Axe, and both study visit locations are too far away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80058":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"5/26: Patient says they'll call back in 20 min (around 2pm). If not, another attempt will be made on 5/27\r\n5/26: Patient called back. Declined because he won't have time to make the baseline appointment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80059":{"redcap_data_access_group":"university_of_mich","main_record_id":"20116","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-26","screening_age":"64","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"5/26: Interested. Only available June 6 and 7 for baseline appt. ICF failed to send twice. Will call back.\r\n5/27: Patient called back to try to have ICF sent again. ICF failed to send to the patient's email. He will call back when he gets to another computer with his daughter for assistance. \r\n5/31: Patient called back. ICF sent to new email address\r\n6/1: ICF signed.","obtain_date":"2022-06-01","date_and_time":"N/A","consent_process_form_complete":"2","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-09","sp_v1_preop_date":"2022-06-07","sp_v2_6wk_date":"2022-07-21","sp_v3_3mo_date":"2022-09-09","age":"64","sex":"1","genident":"1","ethnic":"2","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"80060":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"55","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"5/26: Patient wants to be called back at 4:00. Called back and left a voicemail.\r\n6/2: Declined. Not enough time to complete baseline visit. Daughter has graduation right before surgery. Patient will be busy with that and working.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80061":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"75","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"6/2: Left voicemail. Patient called back around 3:30pm. ICF sent via email. Wants call back on 6/3 at 1:30 to continue with consenting.\r\n6/3: Patient will call back after she reads consent form. Patient called back around 2:05pm. Decided to decline joining.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80062":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"57","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"6/2: Left voicemail\r\n6/9: Declined. Not interested in research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80063":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"68","screening_gender":"1","screening_race":"1","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"6/2: Declined.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80064":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"59","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"6/9 WLC: Sounds like the pt is interested. She stated that she was half asleep and agreed to receive a follow-up call tomorrow afternoon.\r\n6/10 WLC: The patient stated that she cannot go into an MRI machine.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80065":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"6/9: Patient was driving. Will call us back to discuss study.\r\n6/14: Declined.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80066":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"6/9: Left voicemail.\r\n6/14: Left voicemail.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80067":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-17","screening_age":"46","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"6/17: ICF Sent. Will call back 6/20.\r\n6/20: Patient in staff meeting. Will call back later today. Called patient back at 2:45pm. Patient has a lot on their plate and has a lot going on. Declined enrollment.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80068":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-17","screening_age":"69","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"6/17: ICF sent. Will follow up 6/20.\r\n6/20: Patient didn't read ICF yet. Wants call back 6/21.\r\n6/21: Patient called back and cannot find ICF in email. No availability for Wayne State. Patient declined. No time for baseline appt before surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80069":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-23","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"6/23: Declined. Moving out of Michigan soon. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80070":{"redcap_data_access_group":"university_of_mich","main_record_id":"20132","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-30","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-12","sp_v1_preop_date":"2022-06-29","sp_v2_6wk_date":"2022-08-23","sp_v3_3mo_date":"2022-10-12","age":"62","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"80071":{"redcap_data_access_group":"university_of_mich","main_record_id":"20133","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-30","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Enrolled.","obtain_date":"2022-06-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-12","sp_v1_preop_date":"2022-07-06","sp_v2_6wk_date":"2022-08-23","sp_v3_3mo_date":"2022-10-12","age":"56","sex":"2","genident":"2","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"80072":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined enrollment for no specific reason.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80073":{"redcap_data_access_group":"university_of_mich","main_record_id":"20134","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-30","screening_age":"52","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"6/30: Interested. Only available July 16 early morning.\r\n7/1: ICF sent. Will call back 7/5 for final decision.\r\nPatient signed ICF on 7/1 after business hours.","obtain_date":"2022-07-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-19","sp_v1_preop_date":"2022-07-11","sp_v2_6wk_date":"2022-08-30","sp_v3_3mo_date":"2022-10-19","age":"52","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"80074":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"72","screening_gender":"1","screening_race":"5","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"7/1: Left voicemail. \r\n7/6: Patient called back. Declined enrollment. Has been going through a lot health-wise.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80075":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"7/7: Declined. Has to work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80076":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"63","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Declined. Doesn't want to travel.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80077":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"7/7: Wants to think about joining. ICF sent. \r\n7/11: Declined. Joined COP-AF.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80078":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80080":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"7/14: LVM.\r\n7/15: Declined. Has a lot going on in her life right now.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80081":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined. Not interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80082":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5|3","ptinterest_comment":"Declined. Lives far away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80083":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"7/20: ICF sent. Call back tomorrow.\r\n7/21: Still wants to think about joining. Call back Monday, 7/25.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80084":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"80","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Declined. Lives in Northern Michigan (5 hour drive to Metro Detroit).","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80085":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-21","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"7/21: Left voicemail. Patient called back and declined. Lives three hours away. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80086":{"redcap_data_access_group":"university_of_mich","main_record_id":"20145","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-21","screening_age":"68","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"7/21: Left voicemail.\r\n7/27: Didn't receive eICF. Plan on meeting with the patient at his appointment on Friday. \r\n7/29: Consented pt in person. The RKStudio consent was sent to the caregiver's email. Pt will set it up with the caregiver when he gets home. A follow-up call was scheduled to provide assistance on 8/2 (Tue) morning.","obtain_date":"2022-07-29","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-09","sp_v1_preop_date":"2022-08-05","sp_v2_6wk_date":"2022-09-20","sp_v3_3mo_date":"2022-11-09","age":"67","sex":"1","genident":"1","ethnic":"4","dem_race":"3","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"80087":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"72","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80079":{"redcap_data_access_group":"university_of_mich","main_record_id":"20147","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-03","screening_age":"63","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-03","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-08","sp_v1_preop_date":"2022-08-05","sp_v2_6wk_date":"2022-09-19","sp_v3_3mo_date":"2022-11-08","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-08-08","ewprimaryreason":"3","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"Wasn't answering calls and did not complete baseline surveys.","sp_data_site":"2"},"80088":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"67","screening_gender":"2","screening_race":"0","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80089":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"7/28: Left voicemail. Patient called back and declined. She has a lot to do before surgery. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80090":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"46","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Declined. Lives too far away to attend clinic visits.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80091":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"39","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Declined. Has a lot of doctors visits.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80092":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"7/28: Declined. Lives too far away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80093":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"7/28: Left voicemail.\r\n8/9: Declined.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80094":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"7/28: Left voicemail.\r\n8/10: Left voicemail. Patient called back. Wants call on 8/11 at 9am.\r\n8/11: Left voicemail.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80095":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined. Has too much going on right now.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80096":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"8/10: Left voicemail.\r\n8/11: Left voicemail.\r\n8/12: Left voicemail. Called patient 3 times.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80097":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"83","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Declined. Has to rely on daughter for transportation and doesn't want to do anymore testing/blood draws.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80098":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"67","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Declined. Is having liver resection, too. Says she'll be \"out of it\" and does not want to take surveys. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80099":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"83","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined. No specific reason.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80100":{"redcap_data_access_group":"university_of_mich","main_record_id":"20148","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-11","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/11: Wants to think about joining. ICF sent to email. Will call back Monday, Aug 15.\r\n8/15: Left voicemail. Patient called back. Wants UofM availability before signing consent.\r\n8/16: Will sign ICF on his own. Signed ICF.","obtain_date":"2022-08-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-02","sp_v1_preop_date":"2022-08-10","sp_v2_6wk_date":"2022-10-14","sp_v3_3mo_date":"2022-12-02","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-08-17","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Participant could not schedule study appointments due to work hours.","sp_data_site":"1"},"80101":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-11","screening_age":"82","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80102":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"66","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80103":{"redcap_data_access_group":"university_of_mich","main_record_id":"20151","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-12","screening_age":"28","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/12: Interested. ICF sent. Will call back 8/16.\r\n8/17: Will join and sign ICF. Wayne State.","obtain_date":"2022-08-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-10-07","sp_v1_preop_date":"2022-09-09","sp_v2_6wk_date":"2022-11-17","sp_v3_3mo_date":"2023-01-06","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"80104":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-18","screening_age":"23","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/18: Father answered the phone. Says patient has a lot going on right now and was previously in a sarcoma research study. He will talk to the patient when he gets off work tonight. Patient will call back if interested.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80105":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-18","screening_age":"58","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined. No specific reason.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80106":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"8/25: Patient wants call back in afternoon.\r\n8/26: Declined. Doesn't want blood drawn.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80107":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-25","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Declined. Mom lives with her and would have to take her to appointments. Study visits also too far from patient home.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80108":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined. Decided to join a different research study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80109":{"redcap_data_access_group":"university_of_mich","main_record_id":"20152","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-26","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-13","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-25","sp_v3_3mo_date":"2022-12-13","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"80110":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"39","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"8/26: Declined. Can barely make it to exisitng appointments and is overwhelmed.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80111":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"76","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80112":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80113":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"9/1: Patient says she'll call back. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80114":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"68","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"9/1: Declined. Does not want to complete MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80115":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"39","screening_gender":"2","screening_race":"0","screening_ethnicity":"0","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"9/1: Left voicemail.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80116":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"77","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"80000":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90001":{"redcap_data_access_group":"university_of_mich","main_record_id":"20064","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":1,"start_12mo":"N/A","date_of_contact":"2022-01-24","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Consented. The study team was notified by Macomb staff that surgery has been scheduled for 2/18/2022. Reached out to patient and went over MRI Screenin Questions. Need to obtain documentations for prior surgeries (titianium clips and screws) to clear the patient for MRI.","obtain_date":"2022-01-26","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-02-21","sp_v1_preop_date":"2022-02-15","sp_v2_6wk_date":"2022-04-04","sp_v3_3mo_date":"2022-05-21","age":"68","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"90002":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-01-27","screening_age":"82","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient has a difficult time with a 15-minute heart stress test recently. Patient is not willing to do MRI since it will last longer than that.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90003":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-04","screening_age":"36","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"No answer","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90005":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-06","screening_age":"73","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"LVM on 4/6; Call back tomorrow\r\nLVM on 4/7; surgery is monday, 4/11","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90006":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-06","screening_age":"67","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Patient is wheelchair-bound and declined participation.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90007":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Not eligible.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90008":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-13","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"4/13: Left voicemail. Probably not a good candidate, as surgery is set for 4/15 and patient has a clinic appointment tomorrow, 4/14.\r\n4/13: Patient called back 20 min later and left a voicemail to call her home phone number. AJ left another voicemail on patient's home phone.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90009":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-10","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient is ineligible due to having thoracic surgery less than 3 months ago.\r\nAlso declined in April per Winnie (internal screening log)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90010":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"5/17: Left voicemail.\r\n5/19: Left voicemail.\r\n5/23: Left voicemail.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90011":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Ineligible due to having had thoracic surgery less than 3 months ago.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90012":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Declined.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90013":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"28","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Declined. He's not interested in research.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90014":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Did not contact patient. Ineligible. Having another major procedure 10 days after A2CPS eligible surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90015":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-07","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Declined. Lives too far from clinic sites.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90016":{"redcap_data_access_group":"university_of_mich","main_record_id":"20122","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-09","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"6/9: ICF sent. Waiting on actual surgery date before baseline visit can be scheduled. Will call back on 6/13 at 9:30am.\r\n6/10: Patient called back to let study team know that her surgery was moved up to 6/13. This means that there's no time to do the baseline appt, as today is Friday, 6/10 and surgery is Monday, 6/13. No clinic appts available.","obtain_date":"2022-06-13","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-06-13","ewprimaryreason":"1","ewdisreasons":"6","ewpireason":"N/A","ewcomments":"The patient's surgery was moved up to 6/13 and could not come in for the baseline appointment.","sp_data_site":"N/A"},"90017":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"76","screening_gender":"1","screening_race":"3","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Declined.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90018":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/30: Left message.\r\n9/2: Patient interested. ICF sent. Will call back Wednesday morning for final decision. Use work number to call back.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90019":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Declined. Surgery is too soon to schedule a baseline visit.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90020":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Declined. Surgery is Friday and patient cannot make the baseline appointment in time.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90021":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90022":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"66","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"9/2: Left voicemail.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90000":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"90004":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100001":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient declined because there is a lot going on before surgery and surgery is coming up.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100002":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Patient was unavailable and would like to talk about the study the following Monday at a.m. (10 a.m.)","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100003":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"2","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"No answer. Contacted pt again on 3/9/22, no answer.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100004":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-02-28","screening_age":"60","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"No answer. Contacted pt on 3/9/2022. Patient would like a call back in the afternoon on 3/10/2022. Pt declined the study.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100005":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-09","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100007":{"redcap_data_access_group":"university_of_mich","main_record_id":"20082","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-09","screening_age":"56","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Spoke with pt on 3/14/22 at 2:03 p.m. Pt is still interested in participating, but he hasn't had the time to go over the e-consent. A follow-up phone call is scheduled for 3/21/22 afternoon.","obtain_date":"2022-03-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-25","sp_v1_preop_date":"2022-04-18","sp_v2_6wk_date":"2022-06-06","sp_v3_3mo_date":"2022-07-25","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-04-18","ewprimaryreason":"1","ewdisreasons":"6","ewpireason":"N/A","ewcomments":"On day of baseline visit, pt. had flu and said that they weren't able to come for a baseline visit before surgery. So patient decided to stop further participation with the study. ","sp_data_site":"1"},"100008":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-18","screening_age":"25","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100009":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-21","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt was sleeping. Wife has asked us to call around 1-2 p.m. Pt is interested and agreed to receive study information in his email.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100010":{"redcap_data_access_group":"university_of_mich","main_record_id":"20087","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":1,"start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-03-23","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"3/23/22 3:30 p.m. No answer","obtain_date":"2022-03-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-04-06","sp_v1_preop_date":"2022-03-30","sp_v2_6wk_date":"2022-05-18","sp_v3_3mo_date":"2022-07-06","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"100011":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"83","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"WLC called on 3/24/22, no answer\r\n2nd attempt on 3/28/22 at 11:28 a.m., pt was with two nurses, asked to call back in half an hour.\r\n3/31: Pt stated that he spoke to Dr. Kulkarni's nurse and that he can't travel. Therefore, he declined to participate.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100012":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-24","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt prefers to do visits at Jackson. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100013":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-29","screening_age":"36","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"3/29/22 09:04 NA\r\n3/31 10:36 NA\r\n4/5 15:48 Declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100014":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-03-31","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Patient doesn't drive.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100015":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-06","screening_age":"52","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance-related concern - too far from patient's home","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100016":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-06","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Claustrophobia ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100017":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-06","screening_age":"37","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"WLC: 4/6 No answer\r\nWLC: 4/7 Left voicemail\r\nAJ: 4/12 \r\n5/23 WLC updated record - Surgery has passed. No return calls from the patient.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100018":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-15","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"4/15: AJ left voicemail\r\n4/18: AJ left voicemail\r\n4/19: AJ spoke with patient; she wants to think about it. Will call back on 4/20 at 2:30pm\r\n4/20: AJ called back for answer. Patient still has not signed consent, but says she will do it when she gets home. Will call back on 4/21 @ 10AM\r\n4/21: AJ left voicemail for patient to call back\r\n4/22: AJ left final voicemail for patient to call back to join. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100019":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"AJ 4/18: Wife answered phone and says he has dementia and may not comply.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100020":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-19","screening_age":"62","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"AJ 4/19: Declined; won't have time to travel due to work.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100021":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-20","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"AJ 4/20: Left voicemail.\r\nAJ 4/21: Left voicemail. Patient called back on 4/21. Wants to think about joining. Email link with ICF sent. AJ will call back on 4/22 for decision.\r\nAJ 4/22: Left voicemail for patient to call back","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100022":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-25","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Distance-related issue or concern","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100023":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-26","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"4/26 WLC: Interested, requested study documents\r\n5/2 WLC: Pt is not feeling well. The study trips are too much for her. Therefore, patient declined.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100024":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"76","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"4/27: Went straight to voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100025":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-04-27","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"4/27 WLC: pt needs to take care of granddaughter and sounds interested. Pt was offered study information in the mail.\r\n5/3/22: Pt stated that she has a cochlear implant and won't be able to get an MRI.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100026":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-02","screening_age":"49","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"5/5: Follow up with patient. Patient stated that he is not feeling well and plan to sign consent today.\r\n5/9: Pt stated that he will get to it. It has been a crazy week.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100027":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-03","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|0","ptinterest_comment":"5/9: Pt can't drive ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100028":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-03","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"5/3 WLC: Left voicemail\r\n5/9, 5/12 WLC: Directed straight to voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100029":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-09","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"5/9 WLC: Left voicemail to patient\r\n5/12: No Answer","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100030":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"57","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100031":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-12","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"5/12: No Answer\r\n5/13: Buying a house in Florida. Will be travelling back and forth.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100032":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"5/18 WLC: Interested, Sent study information to pt's email\r\n5/23 WLC: Distance-related issue or concern. UM Ann Arbor is the closest to pt's house, but it is too far.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100033":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-18","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"5/19 WLC: Left VM\r\n5/23 WLC: Pt just wanted to wait for and complete surgery.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100034":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"5/23 WLC: Left voicemail\r\n5/25 WLC: Pt was at work, and asked to be called back at 4 p.m. Called back, but no answer.\r\n6/2 WLC: Declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100035":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-23","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"6/9 WLC: Left voicemail\r\n6/10: Sent study info. to pt for review\r\n6/20: No answer\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100036":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"2|0","ptinterest_comment":"5/25 WLC: money concerns especially the current inflation and increasing gas prices","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100037":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-25","screening_age":"45","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"5/25 WLC: Left Voicemail\r\n6/2 WLC: Declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100038":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"70","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"6/3 WLC: Daughter stated that the patient cannot read or write, experienced no pain\r\nExcluded based on the inability to read English","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100039":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"6/3 WLC: Too much is going on, not interested at this time","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100040":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"6/3 WLC: Too much is going on","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100041":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-03","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"6/3 12:13 p.m. WLC: Concerns about long commitment. Wants to think about it and agrees to receive study info via email. Email is sent.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100042":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"50","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"6/9 WLC: Left voicemail\r\n6/14: No answer\r\nPt cannot be reached and surgery has passed.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100043":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-09","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"6/9 WLC: No Answer\r\n6/17: Left VM\r\n6/20: No answer","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100044":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100045":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"6/20: No answer\r\n6/22: Not interested due to travel-related issue/concern, but was open for discussion with Dr. Kulkarni. Notified Dr. Kulkarni. \r\n6/24: Followed up with Dr. Kulkarni and Tess. According to Tess, pt declined due to travel and extra testing.\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100046":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-20","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100047":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100048":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-27","screening_age":"60","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"6/27: Pt expressed interest in joining the study.\r\n7/1 & 7/8: Followed up with the patient and left voice messages\r\n7/5: No answer","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100049":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"47","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100050":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-07","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100051":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-08","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100052":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100053":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"The patient would not answer and never returned calls.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100054":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"33","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100056":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-25","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100055":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-01","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"The patient became ineligible during screening.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100057":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-10","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"The patient became ineligible during screening.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100058":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-22","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100059":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100060":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"49","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100061":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100062":{"redcap_data_access_group":"university_of_mich","main_record_id":"20155","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-31","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-16","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-28","sp_v3_3mo_date":"2022-12-16","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"100063":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100064":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100065":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100066":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100006":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"100000":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110001":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110002":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"59","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Interested, but the patient has concerns about traveling to either WSU or UM.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110003":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-13","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"The patient never answered calls and did not return messages.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110004":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110005":{"redcap_data_access_group":"university_of_mich","main_record_id":"20157","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-22","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-09-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-16","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-28","sp_v3_3mo_date":"2022-12-16","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"2022-09-07","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Participant said they have \"too many things going on\" and would not be able to continue with the study.","sp_data_site":"2"},"110006":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"No answer/wasn't able to get ahold of the patient.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110007":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"62","screening_gender":"1","screening_race":"0","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110008":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-06","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110009":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"110000":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"1":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130001":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-16","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Patient stated will contact research staff if changed mind","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130002":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-17","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Does not want MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130003":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"44","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"5/19/22 Voicemail Left\r\n5/23/22 Spoke with subject- declines participation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130004":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"62","screening_gender":"1","screening_race":"N/A","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"5/19/22 LVM\r\n5/23/22 LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130005":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-19","screening_age":"57","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"5/19 LVM\r\n5/23 Declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130006":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-06","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"5/24 Consents and brochure sent via email.\r\n6/1 LVM\r\n6/6 Declines participation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130007":{"redcap_data_access_group":"spectrum_health","main_record_id":"20108","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-05-24","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Consent completed in office at visit","obtain_date":"2022-05-24","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-06-14","sp_v1_preop_date":"2022-06-09","sp_v2_6wk_date":"2022-07-26","sp_v3_3mo_date":"2022-09-14","age":"56","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130008":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-01","screening_age":"51","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Information provided at clinic visit. Would like follow up end of next week (6/2 or 6/3)\r\n6/1: Declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130009":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-05-26","screening_age":"38","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"5/26 left voicemail\r\n5/31 Spoke with patient, information/consents emailed\r\n6/2 Declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130010":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-02","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130011":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-06","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"6/2 LVM\r\n6/6 LVM","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130012":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-14","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Lives too far away- worried about additional drives into Grand Rapids","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130013":{"redcap_data_access_group":"spectrum_health","main_record_id":"20124","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-14","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-08","sp_v1_preop_date":"2022-06-23","sp_v2_6wk_date":"2022-08-19","sp_v3_3mo_date":"2022-10-08","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130014":{"redcap_data_access_group":"spectrum_health","main_record_id":"20127","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-16","screening_age":"59","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-06-21","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-11","sp_v1_preop_date":"2022-06-30","sp_v2_6wk_date":"2022-08-22","sp_v3_3mo_date":"2022-10-11","age":"59","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130015":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-22","screening_age":"55","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130016":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Traveling from home, about 60 miles away.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130017":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"61","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Still working full time, has already missed 3 days of work","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130018":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-28","screening_age":"33","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130019":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130020":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"worried about missing work","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130021":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-01","screening_age":"63","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130022":{"redcap_data_access_group":"spectrum_health","main_record_id":"20135","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-01","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-26","sp_v1_preop_date":"2022-07-07","sp_v2_6wk_date":"2022-09-06","sp_v3_3mo_date":"2022-10-26","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130023":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-05","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Attempted consent over the phone; signature not working on patient's phone. Patient interested, but spine stimulator unknown during screening- visit 1 canceled and will not enroll.","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130024":{"redcap_data_access_group":"spectrum_health","main_record_id":"20137","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-12","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-12","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-07-27","sp_v1_preop_date":"2022-07-21","sp_v2_6wk_date":"2022-09-07","sp_v3_3mo_date":"2022-10-27","age":"64","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3","adverse_effects":{"1":{"erep_local_dtime":"2022-07-25 09:38:56","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"1","erep_onset_date":"2022-07-21 09:38","erep_resolution_date":"2022-07-21 09:38","erep_ae_severity":"1","erep_ae_relation":"1","erep_ae_serious":"0","erep_ae_desc":"Subject became claustrophobic as soon as the MRI table rolled into position. MRI could not be completed.","erep_action_taken":"Subject will remain in the study but will be unable to have follow-up MRI","erep_outcome":"Subject was fine as soon as they were off the MRI table.","erep_prot_dev":"0","erep_protdev_type":"","erep_protdev_desc":"","erep_protdev_caplan":"","erep_rel_covid19":"0"}}},"130025":{"redcap_data_access_group":"spectrum_health","main_record_id":"20138","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-12","screening_age":"61","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-14","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-08-01","sp_v1_preop_date":"2022-07-28","sp_v2_6wk_date":"2022-09-12","sp_v3_3mo_date":"2022-11-01","age":"61","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130026":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-29","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130027":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-29","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130028":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-01","screening_age":"68","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130029":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-02","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"feeling overwhelmed ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130030":{"redcap_data_access_group":"spectrum_health","main_record_id":"20146","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-03","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-03","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-16","sp_v1_preop_date":"2022-08-25","sp_v2_6wk_date":"2022-10-28","sp_v3_3mo_date":"2022-12-16","age":"69","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130031":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Spends winter in Florida- will not be around for 3 month visit","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130032":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-03","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Childcare and transportation","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130033":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-04","screening_age":"66","screening_gender":"2","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Transportation- lives over an hour away and does not want extra trips to Grand Rapids","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130034":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"40","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130035":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-18","screening_age":"48","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Unable to come in for baseline visit before surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130036":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-22","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130037":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-29","screening_age":"25","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130038":{"redcap_data_access_group":"spectrum_health","main_record_id":"20153","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"54","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-19","sp_v1_preop_date":"2022-09-15","sp_v2_6wk_date":"2022-10-31","sp_v3_3mo_date":"2022-12-19","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130039":{"redcap_data_access_group":"spectrum_health","main_record_id":"20154","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-20","sp_v1_preop_date":"2022-09-15","sp_v2_6wk_date":"2022-11-01","sp_v3_3mo_date":"2022-12-20","age":"58","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130040":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"74","screening_gender":"1","screening_race":"0","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130041":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130042":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Will be in Florida after surgery","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130043":{"redcap_data_access_group":"spectrum_health","main_record_id":"20158","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-31","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-09-03","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-16","sp_v1_preop_date":"2022-09-14","sp_v2_6wk_date":"2022-10-28","sp_v3_3mo_date":"2022-12-16","age":"78","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130044":{"redcap_data_access_group":"spectrum_health","main_record_id":"20156","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-31","screening_age":"25","screening_gender":"2","screening_race":"1","screening_ethnicity":"2","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-31","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"0","sp_exclprevbilthorpro":"0","sp_surg_date":"2022-09-26","sp_v1_preop_date":"2022-09-01","sp_v2_6wk_date":"2022-11-06","sp_v3_3mo_date":"2022-12-26","age":"25","sex":"2","genident":"2","ethnic":"1","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"3"},"130045":{"redcap_data_access_group":"spectrum_health","main_record_id":"20159","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-09-06","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-09-06","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"130000":{"redcap_data_access_group":"spectrum_health","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120001":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-27","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt lives 4.5 hours away and is does not want to travel for visits -MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120002":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-27","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Spoke with pt on the phone and he said not for this knee as he is not sure how it is going to go, but plans to have second knee done in 3-4 months. Asked to be re-contacted at time of second knee replacement if eligible 6/27/22- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120003":{"redcap_data_access_group":"university_of_mich","main_record_id":"25002","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-27","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM and emailed 6/27- MD\r\nLVM 6/29- MD\r\nVerbal yes, would like call after 2PM today to get enrolled 7/5-MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-11","sp_v1_preop_date":"2022-07-07","sp_v2_6wk_date":"2022-08-22","sp_v3_3mo_date":"2022-10-11","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"2022-08-09","ewprimaryreason":"1","ewdisreasons":"1","ewpireason":"N/A","ewcomments":"Pt emailed expressing that she wished to stop participation, did not name any specific reason why. Said we could keep data already collected.","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-07-11 10:25:15","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Expectation Items not completed within time frame.","erep_protdev_caplan":"Expectation Items completed on DOS.","erep_rel_covid19":"0"}}},"120004":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM and emailed 6/29- MD\r\nDOS moved up, unable to attempt contact again, no response 8/3- MD\r\nLVM 8/8- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120005":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-29","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"LVM and emailed 6/29- MD\r\nPt called back, MD spoke with pt and after reading email, pt decided they did not want to participate 6/30- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120006":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"72","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt has extreme claustrophobia and would not be willing to do MRI 6/30- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120007":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM and emailed 6/30- MD\r\nSpoke with pt at work, would like additional info emailed and for a call back on Thursday (7/7) 7/5- MD\r\nDeclined- time 7/7- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120008":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"81","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM and emailed 6/30- MD\r\nPt did not want to come in for visits, says he spends too much time coming to the hospital for appointments already 7/6- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120009":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-06-30","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt would not be willing to go into MRI without taking Valium- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120010":{"redcap_data_access_group":"university_of_mich","main_record_id":"25001","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-06-30","screening_age":"65","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Verbal yes after approached in clinic. Asked for call 7/1 afternoon to go through enrollment process- MD","obtain_date":"2022-08-08","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"2022-08-11","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"65","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120011":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt very interested, but needs to make sure she would have a ride. Pt will call me back with answer 7/6- MD\r\nPt concerned with MRI as she has had many in the past, would like to defer for now, but is ok if we re-approach if she comes in for other knee in the future 7/7- MD\r\nPt was re-scheduled for 8/24, called to touch base. Might be trying to move appts around. Call 8/9 morning to see what she's thinking 8/5- MD\r\nLVM 8/9- MD\r\nSpoke with pt. Still wants to defer to other knee as she lives far away and wants definitive dates for possible BL visit 8/12- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120012":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"76","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Spoke with pt's husband who said pt stepped out for a while, asked for me to email the pt some details. Emailed 7/6- MD\r\nPt would like to defer, too close to surgery date for her to feel comfortable committing at this time 7/7- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120013":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-06","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt is claustrophobic and will not do MRI 7/7- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120014":{"redcap_data_access_group":"university_of_mich","main_record_id":"25003","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-07","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM and emailed 7/7- MD","obtain_date":"2022-07-07","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-18","sp_v1_preop_date":"2022-07-12","sp_v2_6wk_date":"2022-08-29","sp_v3_3mo_date":"2022-10-18","age":"70","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120015":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too involved for the given time frame 7/11- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120016":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-11","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt was in the middle of a workout. Asked for emailed information and follow-up call later this week 7/11- MD\r\nPt is claustrophobic and would require sedation for MRI 7/15- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120017":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt gets frequent MRIs and they cause him anxiety. Also, the distance is too far to come for research visits on top of other visits in Ann Arbor- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120018":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"Spoke with pt in clinic, would like to think about study, will reach out closer to DOS- 7/14- MD\r\n\r\nPt declined- stated he did not remember expressing interest in the study and does not want to participate 8/30 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120019":{"redcap_data_access_group":"university_of_mich","main_record_id":"25009","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-05","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-15","sp_v1_preop_date":"2022-08-10","sp_v2_6wk_date":"2022-09-26","sp_v3_3mo_date":"2022-11-15","age":"62","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120020":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-15","screening_age":"53","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt is nervous about doing the MRIs and decided not to participate 7/18- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120021":{"redcap_data_access_group":"university_of_mich","main_record_id":"25004","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-15","screening_age":"61","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-25","sp_v1_preop_date":"2022-07-21","sp_v2_6wk_date":"2022-09-05","sp_v3_3mo_date":"2022-10-25","age":"61","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120022":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-14","screening_age":"64","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt concerned with time/holiday weekend- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120023":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt would like to participate, but is traveling and would like call Thursday (7/21) afternoon to go through consent process 7/18- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120024":{"redcap_data_access_group":"university_of_mich","main_record_id":"25005","start_v1_preop":1,"start_v2_6wk":1,"start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-18","screening_age":"69","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-18","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-07-27","sp_v1_preop_date":"2022-07-25","sp_v2_6wk_date":"2022-09-07","sp_v3_3mo_date":"2022-10-27","age":"70","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120025":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-18","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt is claustrophobic and would require sedation for MRI- 7/18 MD\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120026":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"79","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120027":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"81","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120028":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt is having a very hard time ambulating and is concerned that she would not be able to make it into the study visits/would be \"wiped out\" for a whole day afterwards. 7/20- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120029":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-20","screening_age":"74","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt is still teaching and could not commit to coming in for study visits 7/22-MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120030":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-21","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt lives multiple hours away and is not willing to travel for study visits 7/21- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120031":{"redcap_data_access_group":"university_of_mich","main_record_id":"25007","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-22","screening_age":"77","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-07-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-02","sp_v1_preop_date":"2022-07-30","sp_v2_6wk_date":"2022-09-13","sp_v3_3mo_date":"2022-11-02","age":"78","sex":"1","genident":"1","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120032":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"70","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120033":{"redcap_data_access_group":"university_of_mich","main_record_id":"25006","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-22","screening_age":"70","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt is interested in participating. Would like call Monday morning (7/25) around 9AM to go through consent. 7/22- MD","obtain_date":"2022-07-25","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120034":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"81","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120035":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-22","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt unwilling to do MRI 7/22- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120036":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-26","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120037":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt does not have time before surgery to come in for a visit 7/27- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120038":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"66","screening_gender":"1","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120039":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-27","screening_age":"84","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120040":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt does not have access to a car and would have a very difficult time getting to Ann Arbor for study visits 7/28- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120041":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt is unwilling to do MRI 8/3- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120042":{"redcap_data_access_group":"university_of_mich","main_record_id":"25008","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-07-28","screening_age":"55","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Pt is unsure if she is having surgery or not. Asked for additional info to be emailed and a call back next Wednesday 8/3. 7/28 - MD","obtain_date":"2022-08-05","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-10-03","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-11-13","sp_v3_3mo_date":"2023-01-02","age":"55","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120043":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-07-28","screening_age":"82","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt does not want to come in for any study visits 7/28- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120044":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-05","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120045":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-08","screening_age":"69","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Too many appointments already, does not want to come in extra for research 8/8- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120046":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-08","screening_age":"57","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM and emailed 8/8- MD\r\nLVM 8/9- MD\r\nPt returned call and LVM, called back, no answer 8/9- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120047":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-08","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt does not want to come in for MRIs or any other extra visits 8/8- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120048":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-08","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120049":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"1","ptinterest_comment":"Pt is isolating prior to surgery and does not want to come in for visits 8/9- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120050":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt interested, but unsure if she'd be able to come in for a visit. Can call later today to check in. Also OK with being re-approached for other knee (after new year) 8/9- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120051":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120052":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"49","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"LVM and emailed 8/9-MD\r\nPt lives in the UP and would be willing to do virtual visits but not travel to Ann Arbor 8/12- MD\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120053":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"84","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"LVM and emailed 8/9- MD\r\nSpoke with family member who said he was not there. Not sure a good time to call back 8/12- MD\r\nDOS moved to 9/13/22, not interested in research 9/2- MD\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120054":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-09","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt goes to Florida 7 months of the year and will be leaving before 3 month visit time. He said he thinks he'll be too busy recovering/ prepping to leave and decided to decline 8/12- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120055":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-12","screening_age":"79","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt said he is still working and watching grandkids. Feels like too much to add to his plate 8/12- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120056":{"redcap_data_access_group":"university_of_mich","main_record_id":"25010","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-12","screening_age":"73","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-15","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-22","sp_v1_preop_date":"2022-08-17","sp_v2_6wk_date":"2022-10-03","sp_v3_3mo_date":"2022-11-22","age":"73","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120057":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-15","screening_age":"78","screening_gender":"2","screening_race":"5","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt states that she does not live near the university and it would be difficult for her to get to Ann Arbor for the visits 8/15- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120058":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"62","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"Pt said he has a lot going on and does not want to add this to his plate 8/16- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120059":{"redcap_data_access_group":"university_of_mich","main_record_id":"25011","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-16","screening_age":"68","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-16","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-26","sp_v1_preop_date":"2022-08-24","sp_v2_6wk_date":"2022-10-07","sp_v3_3mo_date":"2022-11-26","age":"68","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120060":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-16","screening_age":"79","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"0","ptinterest_comment":"Pt was driving and asked for info to be emailed. Emailed 8/16- MD\r\nLVM 8/18- SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120061":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-18","screening_age":"64","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Patient admitted he is very claustrophobic. Exclude. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120062":{"redcap_data_access_group":"university_of_mich","main_record_id":"25012","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-18","screening_age":"71","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"Enroll tomorrow at 10:30am, SL 8/18","obtain_date":"2022-08-19","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-29","sp_v1_preop_date":"2022-08-24","sp_v2_6wk_date":"2022-10-10","sp_v3_3mo_date":"2022-11-29","age":"71","sex":"2","genident":"2","ethnic":"4","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1","adverse_effects":{"1":{"erep_local_dtime":"2022-08-29 10:45:30","erep_ae_date":"","erep_visit_inv":"2","erep_ae_yn":"","erep_onset_date":"","erep_resolution_date":"","erep_ae_severity":"","erep_ae_relation":"","erep_ae_serious":"","erep_ae_desc":"","erep_action_taken":"","erep_outcome":"","erep_prot_dev":"1","erep_protdev_type":"6","erep_protdev_desc":"Patient finished baseline surveys on day of surgery. Patient did not realize she needed to do these surveys before her surgery. RA had discussed with patient at baseline visit that surveys were due day before surgery but patient forgot. The due date listed on the MDH app was 9/8. Apologized and explained to patient this due date is not always correct. Patient was amicable and finished surveys today while waiting to be taken back.","erep_protdev_caplan":"Will make sure patients understand when baseline surveys are due and that due date listed on MDH app is automatically generated and not always correct (if sent within 2 weeks of surgery date). Explain to patient that surveys will close at correct timepoint. Also, will make sure to continue to do reminder calls or emails to ask patients to finish baseline surveys . ","erep_rel_covid19":"0"}}},"120063":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"80","screening_gender":"1","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt was interested in participating, but is very claustrophobic and unwilling to try MRI8/19- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120064":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"78","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120065":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"78","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"Pt said Ann Arbor is too far to come for him for the study visits. Would be interested otherwise 8/19- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120066":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-19","screening_age":"70","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Emailed 8/19- MD\r\nPt declined MRI, claustrophobic- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120067":{"redcap_data_access_group":"university_of_mich","main_record_id":"25013","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-22","screening_age":"66","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-22","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-08-30","sp_v1_preop_date":"2022-08-25","sp_v2_6wk_date":"2022-10-11","sp_v3_3mo_date":"2022-11-30","age":"66","sex":"2","genident":"2","ethnic":"2","dem_race":"5","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120068":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"75","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt declined as it is too involved for what he would want to do right now 8/24- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120069":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"72","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Not interested in undergoing the MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120070":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-23","screening_age":"65","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Emailed 8/23- MD\r\nParticipant asked for table with breakdown of events and will think about it. He will reach out with interest. Sent another email 8/24- MD\r\nPatient did not reach out, no response. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120071":{"redcap_data_access_group":"university_of_mich","main_record_id":"25018","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"71","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-09-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-13","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-25","sp_v3_3mo_date":"2022-12-13","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120072":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"58","screening_gender":"2","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Exclude- patient extremely claustrophobic","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120073":{"redcap_data_access_group":"university_of_mich","main_record_id":"25017","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"67","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-31","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-12","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-24","sp_v3_3mo_date":"2022-12-12","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120074":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"67","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Patient going out of town until right before surgery 8/30 SL\r\n\r\nDeferred participation\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120075":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"56","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM 8/30 SL\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120076":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"51","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM 8/30 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120077":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"75","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Pt's phone was going in and out, will email info and try again 9/1- MD\r\n\r\nPatient would like to discuss with husband (forgot about the study) and will cb tomorrow. If would like to enroll will do visit this Friday since surgery is Monday. 9/7 SL","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120078":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"60","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Would be more interested if visits could be done closer to home- 9/1 MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120079":{"redcap_data_access_group":"university_of_mich","main_record_id":"25019","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-09-01","screening_age":"53","screening_gender":"2","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"LVM and emailed 9/1- MD\r\nPt called back, verbal yes. Will call when she gets to her office","obtain_date":"2022-09-01","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-13","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-25","sp_v3_3mo_date":"2022-12-13","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"120080":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-01","screening_age":"68","screening_gender":"2","screening_race":"5","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"Pt was very confused and thought that this was required for surgery. Wanted me to talk to her son. I will email information for them to review, but I think enrolling would confuse the patient more 9/1- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120081":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"46","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt said he would not be able to come in for extra in person visits 9/2- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120082":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"77","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"Pt was at work, asked for emailed info 9/2- MD\r\n\r\nSpoke to patient and her surgery was moved up from 9/20 to 9/14. Patient did not have time for baseline visit. However, hopes to get other knee done in future and ok being contacted again for this surgery. Deferred participation for this surgery. 9/7/22 SL\r\n","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120083":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"50","screening_gender":"2","screening_race":"2","screening_ethnicity":"1","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"LVM and emailed- MD","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"120000":{"redcap_data_access_group":"university_of_mich","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150001":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"74","screening_gender":"1","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt does not know if he is having the surgery due to other medical issues. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150002":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"58","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150003":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"66","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt lives in Gaylord, too far of a drive ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150004":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"79","screening_gender":"N/A","screening_race":"1","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150005":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"70","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"Pt's husband has cancer and so she has too much to deal with at the moment ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150006":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"75","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"pt said that she would be willing to do surveys but not the in-person visits as they would be too inconvenient. So pt is ineligible. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150007":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"74","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"left pt a voicemail on 8/24/22. Spoke to pt on 8/25/22, he wants to read the consent form and think about it. 8/26/22 pt declined, said he didn't want to deal with it. ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150008":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-24","screening_age":"63","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"Pt wants to read the consent form. Will follow-up with her in a few days. 8/26/22 pt declined, does not want to do MRI","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150009":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"78","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4|3","ptinterest_comment":"8/26/22 left voicemail. 8/30/2022 left voicemail. pt called back and wants to review consent form. 9/1/2022 pt declined, too many tasks","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150010":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-07","screening_age":"72","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"8/26/22 left voicemail. 8/30/2022 left voicemail. 9/7/2022 left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150011":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"54","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"8/26/22 left voicemail. 8/30/2022 left voicemail ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150012":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-26","screening_age":"66","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150013":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-30","screening_age":"70","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/30/2022 left voicemail. 9/15/2022 left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150014":{"redcap_data_access_group":"N/A","main_record_id":"25014","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"66","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-15","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-27","sp_v3_3mo_date":"2022-12-15","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"150015":{"redcap_data_access_group":"N/A","main_record_id":"25015","start_v1_preop":1,"start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-30","screening_age":"48","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-30","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-15","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"2022-10-27","sp_v3_3mo_date":"2022-12-15","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"2"},"150016":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"63","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"3","ptinterest_comment":"9/1/2022 Wanted to initially enroll but changed his mind when he read the consent form ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150017":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"72","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"8/31/2022 patient lost her husband less than a week ago so she does not want to do the study ","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150018":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"74","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"0","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/31/2022 tried to leave a voicemail but pt's mailbox is full. 9/7/2022 wants to read consent form and wants to meet me to discuss at her appointment tomorrow","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150019":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"67","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"0","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"8/31/2022 left voicemail. 8/31.2022 pt wants to read the consent form and think about it","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150020":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"70","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"8/31/2022 left voicemail. 9/7/2022 declined","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150021":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"75","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/31/2022 pt was too busy to talk and will call me back another time. 9/7/2022 left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150022":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"83","screening_gender":"N/A","screening_race":"4","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"8/31/2022 left voicemail. 9/7/2022 left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150023":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-08-31","screening_age":"66","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"5","ptinterest_comment":"8/31/2022 left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150024":{"redcap_data_access_group":"N/A","main_record_id":"25016","start_v1_preop":"N/A","start_v2_6wk":"N/A","start_v3_3mo":"N/A","start_6mo":"N/A","start_12mo":"N/A","date_of_contact":"2022-08-31","screening_age":"65","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"0","participation_interest":"2","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"2022-08-31","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"1","sp_inclage1884":"1","sp_inclsurg":"1","sp_exclarthkneerep":"0","sp_exclinfdxjoint":"0","sp_exclbilkneerep":"0","sp_exclnoreadspkenglish":"0","sp_mricompatscr":"4","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"2022-09-29","sp_v1_preop_date":"2022-09-15","sp_v2_6wk_date":"2022-11-09","sp_v3_3mo_date":"2022-12-29","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"1"},"150025":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"75","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"does not want to deal with parking or driving","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150026":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"76","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"0","reason_not_interested":"N/A","ptinterest_comment":"left voicemail. pt called back and decline, does not want to deal with in person visits","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150027":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"59","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"N/A","participation_interest":"0","reason_not_interested":"4","ptinterest_comment":"9/2/2022 left voicemail. Pt called back and declined, does not have time for in person visits","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150028":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"2022-09-02","screening_age":"69","screening_gender":"N/A","screening_race":"2","screening_ethnicity":"1","participation_interest":"1","reason_not_interested":"N/A","ptinterest_comment":"9/2/2022 left voicemail. 9/7/2022 left voicemail","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"},"150000":{"redcap_data_access_group":"N/A","main_record_id":"N/A","start_v1_preop":0,"start_v2_6wk":0,"start_v3_3mo":0,"start_6mo":0,"start_12mo":0,"date_of_contact":"N/A","screening_age":"N/A","screening_gender":"N/A","screening_race":"N/A","screening_ethnicity":"N/A","participation_interest":"N/A","reason_not_interested":"N/A","ptinterest_comment":"N/A","obtain_date":"N/A","date_and_time":"N/A","consent_process_form_complete":"N/A","sp_inclcomply":"N/A","sp_inclage1884":"N/A","sp_inclsurg":"N/A","sp_exclarthkneerep":"N/A","sp_exclinfdxjoint":"N/A","sp_exclbilkneerep":"N/A","sp_exclnoreadspkenglish":"N/A","sp_mricompatscr":"N/A","sp_exclothmajorsurg":"N/A","sp_exclprevbilthorpro":"N/A","sp_surg_date":"N/A","sp_v1_preop_date":"N/A","sp_v2_6wk_date":"N/A","sp_v3_3mo_date":"N/A","age":"N/A","sex":"N/A","genident":"N/A","ethnic":"N/A","dem_race":"N/A","ewdateterm":"N/A","ewprimaryreason":"N/A","ewdisreasons":"N/A","ewpireason":"N/A","ewcomments":"N/A","sp_data_site":"N/A"}} \ No newline at end of file diff --git a/datastore/src/data_loading.py b/datastore/src/data_loading.py new file mode 100644 index 0000000..50e7a09 --- /dev/null +++ b/datastore/src/data_loading.py @@ -0,0 +1,573 @@ +import traceback + +import os +import io +import requests +import pathlib +import json + +import numpy as np +import pandas as pd + +import sqlite3 +import datetime +from datetime import datetime, timedelta + + +# ---------------------------------------------------------------------------- +# Updating data checks +# ---------------------------------------------------------------------------- +def check_data_current(data_date): + '''test to see if the date in a data dictionary is from after 10am on the same day as checking.''' + now = datetime.now() + + if data_date.date() == now.date(): + if data_date.hour < 15 and datetime.now().hour >= 15: + return False + else: + return True + else: + return False + +def check_available_data(available_data): + if available_data: + if isinstance(available_data, list) and type(available_data[-1]) is dict and 'date' in available_data[-1].keys() and 'data' in available_data[-1].keys(): + latest_date = available_data[-1]['date'] + if isinstance(pd.to_datetime(latest_date), datetime): + if check_data_current(pd.to_datetime(latest_date)): + return True + else: + return False + else: + return False + else: + return False + else: + return False + + +# ---------------------------------------------------------------------------- +# HELPER FUNCTIONS +# ---------------------------------------------------------------------------- + +def use_b_if_not_a(a, b): + if not pd.isnull(a): + x = a + else: + x = b + return x + +def dict_to_col(df, index_cols, dict_col, new_col_name = 'category', add_col_as_category=True): + ''' Take a dataframe with index columns and a column containing a dictionary and convert + the dictionary json into separate columns''' + new_df = df[index_cols +[dict_col]].copy() + new_df.dropna(subset=[dict_col], inplace=True) + new_df.reset_index(inplace=True, drop=True) + if add_col_as_category: + new_df[new_col_name] = dict_col + new_df = pd.concat([new_df, pd.json_normalize(new_df[dict_col])], axis=1) + return new_df + +def move_column_inplace(df, col, pos): + ''' move a column position in df''' + col = df.pop(col) + df.insert(pos, col.name, col) + +# ---------------------------------------------------------------------------- +# DATA DISPLAY DICTIONARIES +# ---------------------------------------------------------------------------- +def load_display_terms(ASSETS_PATH, display_terms_file): + '''Load the data file that explains how to translate the data columns and controlled terms into the English language + terms to be displayed to the user''' + display_terms = pd.read_csv(os.path.join(ASSETS_PATH, display_terms_file)) + + # Get display terms dictionary for one-to-one records + display_terms_uni = display_terms[display_terms.multi == 0] + display_terms_dict = get_display_dictionary(display_terms_uni, 'api_field', 'api_value', 'display_text') + + # Get display terms dictionary for one-to-many records + display_terms_multi = display_terms[display_terms.multi == 1] + display_terms_dict_multi = get_display_dictionary(display_terms_multi, 'api_field', 'api_value', 'display_text') + + return display_terms, display_terms_dict, display_terms_dict_multi + +def get_display_dictionary(display_terms, api_field, api_value, display_col): + '''from a dataframe with the table display information, create a dictionary by field to match the database + value to a value for use in the UI ''' + display_terms_list = display_terms[api_field].unique() # List of fields with matching display terms + + # Create a dictionary using the field as the key, and the dataframe to map database values to display text as the value + display_terms_dict = {} + for i in display_terms_list: + term_df = display_terms[display_terms.api_field == i] + term_df = term_df[[api_value,display_col]] + term_df = term_df.rename(columns={api_value: i, display_col: i + '_display'}) + term_df = term_df.apply(pd.to_numeric, errors='ignore') + display_terms_dict[i] = term_df + return display_terms_dict + +# ---------------------------------------------------------------------------- +# LOAD DATA FROM LOCAL FILES, Return *JSON* +# ---------------------------------------------------------------------------- + +def get_local_imaging_data(data_directory): + ''' Load data from local imaging files. ''' + current_datetime = datetime.now() + try: + imaging = pd.read_csv(os.path.join(data_directory,'imaging','imaging-log-latest.csv')) + qc = pd.read_csv(os.path.join(data_directory,'imaging','qc-log-latest.csv')) + + imaging_data_json = { + 'imaging' : imaging.to_dict('records'), + 'qc' : qc.to_dict('records') + } + + return imaging_data_json + + except Exception as e: + traceback.print_exc() + return {'status': 'Problem with local imaging files'} + +def get_local_blood_data(data_directory): + ''' Load subjects data from local files''' + + try: + blood_json = {} + + blood1_filepath = '/'.join([data_directory,'blood','blood-1-latest.json']) + with open(blood1_filepath) as file: + blood1 = json.load(file) + + blood2_filepath = '/'.join([data_directory,'blood','blood-2-latest.json']) + with open(blood2_filepath) as file: + blood2 = json.load(file) + + # Create combined json + blood_json = {'1': blood1, '2': blood2} + + return blood_json + blood = bloodjson_to_df(blood_json, ['1','2']) + blood = simplify_blooddata(blood) + + blood_data_json = { + 'blood' : blood.to_dict('records') + } + + return blood_data_json + + except Exception as e: + traceback.print_exc() + return {'Stats': 'Blood data not available'} + +def get_local_subjects_raw(data_directory): + ''' Load subjects data from local files''' + try: + subjects1_filepath = os.path.join(data_directory,'subjects','subjects-1-latest.json') + with open(subjects1_filepath) as file: + subjects1 = json.load(file) + + subjects2_filepath = os.path.join(data_directory,'subjects','subjects-2-latest.json') + with open(subjects2_filepath) as file: + subjects2 = json.load(file) + + # Create combined json + subjects_json = {'1': subjects1, '2': subjects2} + + return subjects_json + + except Exception as e: + traceback.print_exc() + return {'Stats': 'Subjects data not available'} + +# ---------------------------------------------------------------------------- +# LOAD DATA FROM API +# ---------------------------------------------------------------------------- + +## Function to rebuild dataset from apis + +def get_api_imaging_data(api_root = 'https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports'): + ''' Load data from imaging api. Return bad status notice if hits Tapis API''' + + current_datetime = datetime.now() + + try: + api_dict = { + 'subjects':{'subjects1': 'subjects-1-latest.json','subjects2': 'subjects-2-latest.json'}, + 'imaging': {'imaging': 'imaging-log-latest.csv', 'qc': 'qc-log-latest.csv'}, + 'blood':{'blood1': 'blood-1-latest.json','blood2': 'blood-2-latest.json'}, + } + + # IMAGING + imaging_filepath = '/'.join([api_root,'imaging',api_dict['imaging']['imaging']]) + imaging_request = requests.get(imaging_filepath) + if imaging_request.status_code == 200: + imaging = pd.read_csv(io.StringIO(imaging_request.content.decode('utf-8'))) + else: + return {'status':'500', 'source': api_dict['imaging']['imaging']} + + + qc_filepath = '/'.join([api_root,'imaging',api_dict['imaging']['qc']]) + qc_request = requests.get(qc_filepath) + if qc_request.status_code == 200: + qc = pd.read_csv(io.StringIO(qc_request.content.decode('utf-8'))) + else: + return {'status':'500', 'source': api_dict['imaging']['qc']} + + # IF DATA LOADS SUCCESSFULLY: + imaging_data_json = { + 'imaging' : imaging.to_dict('records'), + 'qc' : qc.to_dict('records') + } + + return imaging_data_json + + except Exception as e: + traceback.print_exc() + return "exception: {}".format(e) + +## Function to rebuild dataset from apis +def get_api_blood_data(api_root = 'https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports'): + ''' Load data from api''' + + current_datetime = datetime.now() + + try: + api_dict = { + 'subjects':{'subjects1': 'subjects-1-latest.json','subjects2': 'subjects-2-latest.json'}, + 'imaging': {'imaging': 'imaging-log-latest.csv', 'qc': 'qc-log-latest.csv'}, + 'blood':{'blood1': 'blood-1-latest.json','blood2': 'blood-2-latest.json'}, + } + + # BLOOD + blood1_filepath = '/'.join([api_root,'blood',api_dict['blood']['blood1']]) + blood1_request = requests.get(blood1_filepath) + + blood2_filepath = '/'.join([api_root,'blood',api_dict['blood']['blood2']]) + blood2_request = requests.get(blood2_filepath) + + if blood1_request.status_code == 200: + blood1 = blood1_request.json() + blood1_request_status = [current_datetime.strftime("%m/%d/%Y, %H:%M:%S"), blood1_filepath, '200'] + else: + blood1_request_status = [current_datetime.strftime("%m/%d/%Y, %H:%M:%S"), blood1_filepath, blood1_request.status_code ] + # return None, {'status':'500', 'source': api_dict['blood']['blood1']} + + if blood2_request.status_code == 200: + blood2 = blood2_request.json() + blood2_request_status = [current_datetime.strftime("%m/%d/%Y, %H:%M:%S"), blood2_filepath, '200'] + else: + blood2_request_status = [current_datetime.strftime("%m/%d/%Y, %H:%M:%S"), blood2_filepath, blood2_request.status_code] + # return None, {'date' : 'status':'500', 'source': api_dict['blood']['blood2']} + + if blood1_request.status_code == 200 and blood2_request.status_code == 200: + blood_json = {'1': blood1, '2': blood2} + + blood = bloodjson_to_df(blood_json, ['1','2']) + blood = simplify_blooddata(blood) + + blood_data_json = { + 'blood' : blood.to_dict('records') + } + else: + blood_data_json = None + + request_status = [blood1_request_status, blood2_request_status] + + return blood_data_json, request_status + + except Exception as e: + traceback.print_exc() + return None + +def get_api_subjects_json(api_root = 'https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports'): + ''' Load subjects data from api. Note data needs to be cleaned, etc. to create properly formatted data product''' + + try: + # Load Json Data + subjects1_filepath = '/'.join([api_root,'subjects','subjects-1-latest.json']) + subjects1_request = requests.get(subjects1_filepath) + if subjects1_request.status_code == 200: + subjects1 = subjects1_request.json() + else: + return None + # return {'status':'500', 'source': api_dict['subjects']['subjects1']} + + subjects2_filepath = '/'.join([api_root,'subjects','subjects-2-latest.json']) + subjects2_request = requests.get(subjects2_filepath) + if subjects2_request.status_code == 200: + subjects2 = subjects2_request.json() + else: + return None + # return {'status':'500', 'source': api_dict['subjects']['subjects2']} + + # Create combined json + subjects_json = {'1': subjects1, '2': subjects2} + + return subjects_json + + except Exception as e: + traceback.print_exc() + return None + + +# ---------------------------------------------------------------------------- +# PROCESS SUBJECTS DATA +# ---------------------------------------------------------------------------- + +# 1. Combine separate jsons for each MCC into a single data frame +def combine_mcc_json(mcc_json): + '''Convert MCC json subjects data into dataframe and combine''' + df = pd.DataFrame() + for mcc in mcc_json: + mcc_data = pd.DataFrame.from_dict(mcc_json[mcc], orient='index').reset_index() + mcc_data['mcc'] = mcc + if df.empty: + df = mcc_data + else: + df = pd.concat([df, mcc_data]) + + return df + +# 2. extract nested 1-to-many adverse events data +def extract_adverse_effects_data(subjects_data, adverse_effects_col = 'adverse_effects'): + '''Extract data with multiple values (stored as 'adverse effects' column) from the subjects data. + Adverse effects data is stored in a nested dictionary format - this function unpacks that.''' + + index_cols = ['index','main_record_id', 'mcc'] + # reset index using index_cols + multi_data = subjects_data.set_index(index_cols).copy() + # Extract multi data values + multi_df = multi_data[[adverse_effects_col]].dropna() + # Convert from data frame back to dict + multi_dict = multi_df.to_dict('index') + # Turn dict into df with multi=index and reset_index + multi = pd.DataFrame.from_dict({(i,k): multi_dict[i][j][k] + for i in multi_dict.keys() + for j in multi_dict[i].keys() + for k in multi_dict[i][j].keys() + }, + orient='index') + # Replace empty strings with NaN + multi = multi.replace(r'^\s*$', np.nan, regex=True) + multi = multi.reset_index() + # Convert level 0 of index from nested index back into columns + multi[index_cols] = pd.DataFrame(multi['level_0'].tolist(), index=multi.index) + # Label level 1 of multiindex as the instance of adverse events for a given subject + multi['instance'] = multi['level_1'] + # Drop the extraneous columns + multi.drop(['level_0', 'level_1'], axis=1, inplace=True) + + # Move index columns to start of dataframe + index_cols.append('instance') + new_col_order = index_cols + list(multi.columns.drop(index_cols)) + multi = multi[new_col_order] + return multi + +# 3. Clean subjects dataframe +def add_screening_site(screening_sites, df, id_col): + # Get dataframes + ids = df.loc[:, [id_col]] + + # open sql connection to create new datarframe with record_id paired to screening site + conn = sqlite3.connect(':memory:') + ids.to_sql('ids', conn, index=False) + screening_sites.to_sql('ss', conn, index=False) + + sql_qry = f''' + select {id_col}, screening_site, site, surgery_type, record_id_start, record_id_end + from ids + join ss on + ids.{id_col} between ss.record_id_start and ss.record_id_end + ''' + sites = pd.read_sql_query(sql_qry, conn) + conn.close() + + df = df.merge(sites, how='left', on=id_col) + + return df + +def create_clean_subjects(subjects_raw, screening_sites, display_terms_dict, display_terms_dict_multi, drop_cols_list =['adverse_effects']): + '''Take the raw subjects data frame and clean it up. Note that apis don't pass datetime columns well, so + these should be converted to datetime by the receiver. + datetime columns = ['date_of_contact','date_and_time','obtain_date','ewdateterm','sp_surg_date','sp_v1_preop_date','sp_v2_6wk_date','sp_v3_3mo_date'] + Can convert within a pd.DataFrame using .apply(pd.to_datetime, errors='coerce')''' + try: + #--- Clean up subjects (move to own function?) + subjects = subjects_raw.copy() + # Rename 'index' to 'record_id' + subjects.rename(columns={"index": "record_id"}, inplace = True) + + # Drop adverse events column + subjects = subjects.drop(columns=drop_cols_list) + # Convert all string 'N/A' values to nan values + subjects = subjects.replace('N/A', np.nan) + + # Handle 1-many dem_race, take multi-select values and convert to 8 + if not np.issubdtype(subjects['dem_race'].dtype, np.number): + subjects['dem_race_original'] = subjects['dem_race'] + subjects.loc[(subjects.dem_race.str.contains('|', regex=False, na=False)),'dem_race']='8' + + # Coerce numeric values to enable merge + subjects = subjects.apply(pd.to_numeric, errors='ignore') + + # Merge columns on the display terms dictionary to convert from database terminology to user terminology + for i in display_terms_dict.keys(): + if i in subjects.columns: # Merge columns if the column exists in the dataframe + display_terms = display_terms_dict[i] + if subjects[i].dtype == np.float64: + # for display columns where data is numeric, merge on display dictionary, treating cols as floats to handle nas + display_terms[i] = display_terms[i].astype('float64') + subjects = subjects.merge(display_terms, how='left', on=i) + #------ + + # Add screening sites + subjects = add_screening_site(screening_sites, subjects, 'record_id') + + return subjects + + except Exception as e: + traceback.print_exc() + return None + +# 4. Extract data for only those patients who ultimately consented +def get_consented_subjects(subjects_with_screening_site): + '''Get the consented patients from subjects dataframe with screening sites added''' + consented = subjects_with_screening_site[subjects_with_screening_site.obtain_date.notnull()].copy() + consented['treatment_site'] = consented.apply(lambda x: use_b_if_not_a(x['sp_data_site_display'],x['redcap_data_access_group_display']), axis=1) + consented['treatment_site_type'] = consented['treatment_site'] + "/" + consented['surgery_type'] + return consented + +# 5. restrict Adverse Events data to those subjects identified as 'consented' in step 5 +def clean_adverse_events(adverse_events, consented, display_terms_dict_multi): + try: + # Coerce to numeric + multi_data = adverse_events.apply(pd.to_numeric, errors='ignore') + + # Convert numeric values to display values using dictionary + for i in display_terms_dict_multi.keys(): + if i in multi_data.columns: + multi_data = multi_data.merge(display_terms_dict_multi[i], how='left', on=i) + + # Rename 'index' to 'record_id' + multi_data.rename(columns={"index": "record_id"}, inplace = True) + + # merge with consented data to get treatment_site column + multi_data = consented[['record_id','treatment_site']].copy().merge(multi_data, how='right', on='record_id') + + return multi_data + except Exception as e: + traceback.print_exc() + return None + +# ---------------------------------------------------------------------------- +# PROCESS BLOOD DATA +# ---------------------------------------------------------------------------- + +# 1. Blood JSON input into Dataframe +def bloodjson_to_df(json, mcc_list): + df = pd.DataFrame() + dict_cols = ['Baseline Visit', '6-Wks Post-Op', '3-Mo Post-Op'] + for mcc in mcc_list: + if mcc in json.keys(): + m = json[mcc] + if str(mcc) in json.keys(): + mcc=str(mcc) + m = json[mcc] + if m: + mdf = pd.DataFrame.from_dict(m, orient='index') + mdf.dropna(subset=['screening_site'], inplace=True) + mdf.reset_index(inplace=True) + mdf['MCC'] = mcc + for c in dict_cols: + if c in mdf.columns: + col_df = dict_to_col(mdf, ['index','MCC','screening_site'], c,'Visit') + df = pd.concat([df, col_df]) + df.reset_index(inplace=True, drop=True) + return df + +# 2. Clean blood dataframe +def simplify_blooddata(blood_df): + '''Take the raw blood data frame and simplify by dropping columns with the nested dictionaries, + and moving visit column to beginning of dataframe.''' + + # Drop baseline dict, 6 week dict, 3 month dict + blood_df.drop(['Baseline Visit', '6-Wks Post-Op', '3-Mo Post-Op'], axis=1, inplace=True) + + # move Visit column to beginning of DF + move_column_inplace(blood_df, 'Visit', 2) + + return blood_df + +def clean_blooddata(blood_df): + '''Take the raw subjects data frame and clean it up. Note that apis don't pass datetime columns well, so + these should be converted to datetime by the receiver. + datetime columns = ['date_of_contact','date_and_time','obtain_date','ewdateterm','sp_surg_date','sp_v1_preop_date','sp_v2_6wk_date','sp_v3_3mo_date'] + Can convert within a pd.DataFrame using .apply(pd.to_datetime, errors='coerce')''' + + # Convert numeric columns + numeric_cols = ['bscp_aliq_cnt','bscp_protocol_dev','bscp_protocol_dev_reason'] + blood_df[numeric_cols] = blood_df[numeric_cols].apply(pd.to_numeric,errors='coerce') + + # Convert datetime columns + datetime_cols = ['bscp_time_blood_draw','bscp_aliquot_freezer_time','bscp_time_centrifuge'] + blood_df[datetime_cols] = blood_df[datetime_cols].apply(pd.to_datetime,errors='coerce') + + # Add calculated columns + # Calculate time to freezer: freezer time - blood draw time + blood_df['time_to_freezer'] = blood_df['bscp_aliquot_freezer_time'] - blood_df['bscp_time_blood_draw'] + blood_df['time_to_freezer_minutes'] = blood_df['time_to_freezer'].dt.components['hours']*60 + blood_df['time_to_freezer'].dt.components['minutes'] + + # Calculate time to centrifuge: centrifuge time - blood draw time + blood_df['time_to_centrifuge'] = blood_df['bscp_time_centrifuge'] - blood_df['bscp_time_blood_draw'] + blood_df['time_to_centrifuge_minutes'] = blood_df['time_to_centrifuge'].dt.components['hours']*60 + blood_df['time_to_centrifuge'].dt.components['minutes'] + + # Calculate times exist in correct order + blood_df['time_values_check'] = (blood_df['time_to_centrifuge_minutes'] < blood_df['time_to_freezer_minutes'] ) & (blood_df['time_to_centrifuge_minutes'] <= 30) & (blood_df['time_to_freezer_minutes'] <= 60) + + # Get 'Site' column that combines MCC and screening site + blood_df['Site'] = 'MCC' + blood_df['MCC'].astype(str) + ': ' + blood_df['screening_site'] + + # Convert Deviation Numeric Values to Text + deviation_dict = {1:'Unable to obtain blood sample -technical reason', + 2: 'Unable to obtain blood sample -patient related', + 3: 'Sample handling/processing error'} + deviation_df = pd.DataFrame.from_dict(deviation_dict, orient='index') + deviation_df.reset_index(inplace=True) + deviation_df.columns = ['bscp_protocol_dev_reason','Deviation Reason'] + blood_df = blood_df.merge(deviation_df, on='bscp_protocol_dev_reason', how='left') + + # Clean column names for more human friendly usage + rename_dict = {'index':'ID', + 'screening_site':'Screening Site', + 'bscp_deg_of_hemolysis':'Hemolysis'} + + # rename index col as ID + blood_df = blood_df.rename(columns=rename_dict) + + return blood_df + +# ---------------------------------------------------------------------------- +# OTHER APIS? +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# GENERATE DICTIONARIES FOR API OUTPUTS (using functions above) +# ---------------------------------------------------------------------------- + +def process_subjects(subjects_raw,screening_sites, display_terms_dict, display_terms_dict_multi): + subjects_raw_df = combine_mcc_json(subjects_raw) + + # Get and Clean Subjects data + subjects_cleaned = create_clean_subjects(subjects_raw_df, screening_sites, display_terms_dict, display_terms_dict_multi) + consented = get_consented_subjects(subjects_cleaned) + + # Extract adverse events data + adverse_effects_raw = extract_adverse_effects_data(subjects_raw_df) + adverse_events = clean_adverse_events(adverse_effects_raw, consented, display_terms_dict_multi) + + subjects_api_data ={ + 'subjects_cleaned': subjects_cleaned.to_dict('records'), + 'consented': consented.to_dict('records'), + 'adverse_events': adverse_events.to_dict('records') + } + return subjects_api_data diff --git a/datastore/src/data_processing.py b/datastore/src/data_processing.py new file mode 100644 index 0000000..d791e69 --- /dev/null +++ b/datastore/src/data_processing.py @@ -0,0 +1,1198 @@ + # Libraries +import traceback +# Data +# File Management +import os # Operating system library +import pathlib # file paths +import json +import requests +import math +import numpy as np +import pandas as pd # Dataframe manipulations +import sqlite3 +import datetime +from datetime import datetime, timedelta + +# ---------------------------------------------------------------------------- +# CONFIG SETTINGS +# ---------------------------------------------------------------------------- +DATA_PATH = pathlib.Path(__file__).parent.joinpath("data") +ASSETS_PATH = pathlib.Path(__file__).parent.joinpath("assets") +REQUESTS_PATHNAME_PREFIX = os.environ.get("REQUESTS_PATHNAME_PREFIX", "/") +DATA_SOURCE = 'url' # switch to url for API + +# ---------------------------------------------------------------------------- +# HELPER FUNCTIONS +# ---------------------------------------------------------------------------- + +def use_b_if_not_a(a, b): + if not pd.isnull(a): + x = a + else: + x = b + return x + +def create_multiindex(df, split_char): + cols = df.columns + multi_cols = [] + for c in cols: + multi_cols.append(tuple(c.split(split_char))) + multi_index = pd.MultiIndex.from_tuples(multi_cols) + df.columns = multi_index + return df + +def convert_to_multindex(df, delimiter = ': '): + cols = list(df.columns) + cols_with_delimiter = [c for c in cols if delimiter in c] + df_mi = df[cols_with_delimiter].copy() + df_mi.columns = [tuple(x) for x in df_mi.columns.str.split(delimiter)] + df_mi.columns = pd.MultiIndex.from_tuples(df_mi.columns) + return df_mi + +def datatable_settings_multiindex(df, flatten_char = '_'): + ''' Plotly dash datatables do not natively handle multiindex dataframes. + This function generates a flattend column name list for the dataframe, + while structuring the columns to maintain their original multi-level format. + + Function returns the variables datatable_col_list, datatable_data for the columns and data parameters of + the dash_table.DataTable''' + datatable_col_list = [] + + levels = df.columns.nlevels + if levels == 1: + for i in df.columns: + datatable_col_list.append({"name": i, "id": i}) + else: + columns_list = [] + for i in df.columns: + col_id = flatten_char.join(i) + datatable_col_list.append({"name": i, "id": col_id}) + columns_list.append(col_id) + df.columns = columns_list + + datatable_data = df.to_dict('records') + + return datatable_col_list, datatable_data + + +# ---------------------------------------------------------------------------- +# DATA DISPLAY DICTIONARIES +# ---------------------------------------------------------------------------- + +def load_display_terms(ASSETS_PATH, display_terms_file): + '''Load the data file that explains how to translate the data columns and controlled terms into the English language + terms to be displayed to the user''' + try: + if ASSETS_PATH: + display_terms = pd.read_csv(os.path.join(ASSETS_PATH, display_terms_file)) + else: + display_terms = pd.read_csv(display_terms_file) + + # Get display terms dictionary for one-to-one records + display_terms_uni = display_terms[display_terms.multi == 0] + display_terms_dict = get_display_dictionary(display_terms_uni, 'api_field', 'api_value', 'display_text') + + # Get display terms dictionary for one-to-many records + display_terms_multi = display_terms[display_terms.multi == 1] + display_terms_dict_multi = get_display_dictionary(display_terms_multi, 'api_field', 'api_value', 'display_text') + + return display_terms, display_terms_dict, display_terms_dict_multi + except Exception as e: + traceback.print_exc() + return None + +def get_display_dictionary(display_terms, api_field, api_value, display_col): + '''from a dataframe with the table display information, create a dictionary by field to match the database + value to a value for use in the UI ''' + try: + display_terms_list = display_terms[api_field].unique() # List of fields with matching display terms + + # Create a dictionary using the field as the key, and the dataframe to map database values to display text as the value + display_terms_dict = {} + for i in display_terms_list: + term_df = display_terms[display_terms.api_field == i] + term_df = term_df[[api_value,display_col]] + term_df = term_df.rename(columns={api_value: i, display_col: i + '_display'}) + term_df = term_df.apply(pd.to_numeric, errors='ignore') + display_terms_dict[i] = term_df + return display_terms_dict + + except Exception as e: + traceback.print_exc() + return None + +# ---------------------------------------------------------------------------- +# DATA LOADING +# ---------------------------------------------------------------------------- +def get_subjects_json(report, report_suffix, file_url_root=None, source='local', mcc_list =[1,2], DATA_PATH = DATA_PATH): + print(source) + try: + subjects_json = {} + # Read files into json + if source == 'url': + for mcc in mcc_list: + print(mcc) + json_url = '/'.join([file_url_root, report,report_suffix.replace('[mcc]',str(mcc))]) + print(json_url) + r = requests.get(json_url) + print(r.status_code) + if r.status_code == 200: + # TO DO: add an else statement to use local files if the request fails + mcc_json = r.json() + subjects_json[mcc] = mcc_json + else: + for mcc in mcc_list: + mcc_filename = ''.join(['subjects-',str(mcc),'-latest.json']) + print(mcc_filename) + print(DATA_PATH) + mcc_file = os.path.join(DATA_PATH, mcc_filename) + print(mcc_file) + with open(mcc_file, 'r') as f: + subjects_json[mcc] = json.load(f) + return subjects_json + + except Exception as e: + traceback.print_exc() + return None + + +# ---------------------------------------------------------------------------- +# DATA CLEANING +# ---------------------------------------------------------------------------- + +def combine_mcc_json(mcc_json): + '''Convert MCC json subjects data into dataframe and combine''' + df = pd.DataFrame() + for mcc in mcc_json: + mcc_data = pd.DataFrame.from_dict(mcc_json[mcc], orient='index').reset_index() + mcc_data['mcc'] = mcc + if df.empty: + df = mcc_data + else: + df = pd.concat([df, mcc_data]) + + return df + +def combine_subjects(subjects_json): + '''Comine different MCC subjects data into one dataframe''' + try: + # Combine jsons into single dataframe + subjects_raw = combine_mcc_json(subjects_json) + subjects_raw.reset_index(drop=True, inplace=True) + return subjects_raw + + except Exception as e: + traceback.print_exc() + return None + +def create_clean_subjects(subjects_raw, screening_sites, display_terms_dict, display_terms_dict_multi, drop_cols_list =['adverse_effects']): + '''Take the raw subjects data frame and clean it up. Note that apis don't pass datetime columns well, so + these should be converted to datetime by the receiver. + datetime columns = ['date_of_contact','date_and_time','obtain_date','ewdateterm','sp_surg_date','sp_v1_preop_date','sp_v2_6wk_date','sp_v3_3mo_date'] + Can convert within a pd.DataFrame using .apply(pd.to_datetime, errors='coerce')''' + try: + #--- Clean up subjects (move to own function?) + subjects = subjects_raw.copy() + # Rename 'index' to 'record_id' + subjects.rename(columns={"index": "record_id"}, inplace = True) + + # Drop adverse events column + subjects = subjects.drop(columns=drop_cols_list) + # Convert all string 'N/A' values to nan values + subjects = subjects.replace('N/A', np.nan) + + # Handle 1-many dem_race, take multi-select values and convert to 8 + if not np.issubdtype(subjects['dem_race'].dtype, np.number): + subjects['dem_race_original'] = subjects['dem_race'] + subjects.loc[(subjects.dem_race.str.contains('|', regex=False, na=False)),'dem_race']='8' + + # Coerce numeric values to enable merge + subjects = subjects.apply(pd.to_numeric, errors='ignore') + + # Merge columns on the display terms dictionary to convert from database terminology to user terminology + for i in display_terms_dict.keys(): + if i in subjects.columns: # Merge columns if the column exists in the dataframe + display_terms = display_terms_dict[i] + if subjects[i].dtype == np.float64: + # for display columns where data is numeric, merge on display dictionary, treating cols as floats to handle nas + display_terms[i] = display_terms[i].astype('float64') + subjects = subjects.merge(display_terms, how='left', on=i) + #------ + + # Add screening sites + subjects = add_screening_site(screening_sites, subjects, 'record_id') + + # Convert datetime columns + # datetime_cols_list = ['date_of_contact','date_and_time','obtain_date','ewdateterm','sp_surg_date','sp_v1_preop_date','sp_v2_6wk_date','sp_v3_3mo_date'] #erep_local_dtime also dates, but currently an array + # subjects[datetime_cols_list] = subjects[datetime_cols_list].apply(pd.to_datetime, errors='coerce') + + # # Get subset of data for consented patients + # consented = get_consented_subjects(subjects) + # + # # Extract adverse events data + # adverse_events = clean_adverse_events(extract_adverse_effects_data(subjects_raw), consented, display_terms_dict_multi) + + return subjects #, consented, adverse_events + + except Exception as e: + traceback.print_exc() + return None + +def add_screening_site(screening_sites, df, id_col): + # Get dataframes + ids = df.loc[:, [id_col]] + + # open sql connection to create new datarframe with record_id paired to screening site + conn = sqlite3.connect(':memory:') + ids.to_sql('ids', conn, index=False) + screening_sites.to_sql('ss', conn, index=False) + + sql_qry = f''' + select {id_col}, screening_site, site, surgery_type, record_id_start, record_id_end + from ids + join ss on + ids.{id_col} between ss.record_id_start and ss.record_id_end + ''' + sites = pd.read_sql_query(sql_qry, conn) + conn.close() + + df = df.merge(sites, how='left', on=id_col) + + return df + +def get_consented_subjects(subjects_with_screening_site): + '''Get the consented patients from subjects dataframe with screening sites added''' + consented = subjects_with_screening_site[subjects_with_screening_site.obtain_date.notnull()].copy() + consented['treatment_site'] = consented.apply(lambda x: use_b_if_not_a(x['sp_data_site_display'],x['redcap_data_access_group_display']), axis=1) + consented['treatment_site_type'] = consented['treatment_site'] + "/" + consented['surgery_type'] + return consented + + + +def extract_adverse_effects_data(subjects_data, adverse_effects_col = 'adverse_effects'): + '''Extract data with multiple values (stored as 'adverse effects' column) from the subjects data. + Adverse effects data is stored in a nested dictionary format - this function unpacks that.''' + + index_cols = ['index','main_record_id', 'mcc'] + # reset index using index_cols + multi_data = subjects_data.set_index(index_cols).copy() + # Extract multi data values + multi_df = multi_data[[adverse_effects_col]].dropna() + # Convert from data frame back to dict + multi_dict = multi_df.to_dict('index') + # Turn dict into df with multi=index and reset_index + multi = pd.DataFrame.from_dict({(i,k): multi_dict[i][j][k] + for i in multi_dict.keys() + for j in multi_dict[i].keys() + for k in multi_dict[i][j].keys() + }, + orient='index') + # Replace empty strings with NaN + multi = multi.replace(r'^\s*$', np.nan, regex=True) + multi = multi.reset_index() + # Convert level 0 of index from nested index back into columns + multi[index_cols] = pd.DataFrame(multi['level_0'].tolist(), index=multi.index) + # Label level 1 of multiindex as the instance of adverse events for a given subject + multi['instance'] = multi['level_1'] + # Drop the extraneous columns + multi.drop(['level_0', 'level_1'], axis=1, inplace=True) + + # Move index columns to start of dataframe + index_cols.append('instance') + new_col_order = index_cols + list(multi.columns.drop(index_cols)) + multi = multi[new_col_order] + return multi + +def clean_adverse_events(adverse_events, consented, display_terms_dict_multi): + try: + # Coerce to numeric + multi_data = adverse_events.apply(pd.to_numeric, errors='ignore') + + # Convert numeric values to display values using dictionary + for i in display_terms_dict_multi.keys(): + if i in multi_data.columns: + multi_data = multi_data.merge(display_terms_dict_multi[i], how='left', on=i) + + # Rename 'index' to 'record_id' + multi_data.rename(columns={"index": "record_id"}, inplace = True) + + # merge with consented data to get treatment_site column + multi_data = consented[['record_id','treatment_site']].copy().merge(multi_data, how='right', on='record_id') + + return multi_data + except Exception as e: + traceback.print_exc() + return None + +def get_centers(subjects, consented, display_terms): + ''' Get list of centers to use in the system ''' + # screening centers + screening_centers_list = subjects.redcap_data_access_group_display.unique() + screening_centers_df = pd.DataFrame(screening_centers_list, columns = ['redcap_data_access_group_display']) + # treatment centers + # centers_list = consented.redcap_data_access_group_display.unique() + # Convert centers list to use ANY center, not just ones already used + centers_list = list(display_terms[display_terms['api_field']=='redcap_data_access_group']['data_dictionary_values']) + + + centers_df = pd.DataFrame(centers_list, columns = ['treatment_site']) + return screening_centers_df, centers_df + +# ---------------------------------------------------------------------------- +# Get dataframes and parameters +# ---------------------------------------------------------------------------- + +def get_time_parameters(end_report, report_days_range = 7): + today = datetime.now() + start_report = end_report - timedelta(days=report_days_range) + start_report_text = str(start_report.date()) #dt.strftime('%m/%d/%Y') + end_report_text = str(end_report.date()) #dt.strftime('%m/%d/%Y') + report_range_msg = 'This report generated on: ' + str(datetime.today().date()) + ' covering the previous ' + str(report_days_range) + ' days.' + report_date_msg = 'This report generated on: ' + str(datetime.today().date()) + return today, start_report, end_report, report_date_msg, report_range_msg + + +# ---------------------------------------------------------------------------- +# Screening Tables +# ---------------------------------------------------------------------------- +# ---------------------------------------------------------------------------- +# Screening Tables +# ---------------------------------------------------------------------------- +# ---------------------------------------------------------------------------- +# Screening Tables +# ---------------------------------------------------------------------------- +def get_table_1_screening(df): + try: + # Define needed columns for this table and select subset from main dataframe + t1_cols = ['screening_site','surgery_type','participation_interest_display','record_id'] + t1 = df[t1_cols] + + # drop missing data rows + t1 = t1.dropna() + + # group by center and participation interest value and count number of IDs in each group + t1 = t1.groupby(by=['screening_site','surgery_type','participation_interest_display']).count() + + # Reset data frame index to get dataframe in standard form with center, participation interest flag, count + t1 = t1.reset_index() + + # Pivot participation interest values into separate columns + t1 = t1.pivot(index=['screening_site','surgery_type',], columns='participation_interest_display', values='record_id') + + # Reset Index so center is a column + t1 = t1.reset_index() + + # remove index name + t1.columns.name = None + + # Create Summary row ('All Sites') and Summary column ('All Participants') + t1_sum = t1 + t1_sum.loc['All Sites']= t1_sum.sum(numeric_only=True, axis=0) + t1_sum.loc[:,'All Participants'] = t1_sum.sum(numeric_only=True, axis=1) + + # Rename and reorder columns for display + t1_sum = t1_sum.rename(columns = {'screening_site':'Screening Site', 'surgery_type':'Surgery'}) + cols_display_order = ['Screening Site', 'Surgery','All Participants', 'Yes', 'Maybe', 'No'] + t1_sum = t1_sum[cols_display_order] + + return t1_sum + except Exception as e: + traceback.print_exc() + + return None + +def get_table_2a_screening(df, display_terms_t2a): + # Get decline columns from dataframe where participant was not interested (participation_interest == 0) + t2_cols = ['record_id','screening_site','surgery_type','reason_not_interested', 'ptinterest_comment'] # cols to select + t2 = df[df.participation_interest == 0][t2_cols] + + # group data by center and count the # of main_record_ids + t2_site_count = pd.DataFrame(t2.groupby(['screening_site','surgery_type'])['record_id'].size()) + + # rename aggregate column + t2_site_count.columns = ['Total Declined'] + + # reset table index to turn center from index --> column + t2_site_count = t2_site_count.reset_index() + + # The reason_not_interested column is one-to-many so can contain a comma separated string of multiple values. + # Use the explode function to give each value its own row in the dataframe and drop rows with missing values + t2_reasons = t2.assign(reason_not_interested=t2['reason_not_interested'].str.split('|')).explode('reason_not_interested') + t2_reasons = t2_reasons.fillna(-1) + + # Convert reasons column to numeric and merge with display terms dictionary + t2_reasons = t2_reasons.apply(pd.to_numeric, errors='ignore') + + # Group the data by center and count number of entries by reason value + t2_reasons = pd.DataFrame(t2_reasons.groupby(['screening_site','surgery_type','reason_not_interested']).size()) + t2_reasons.columns=['count'] + t2_reasons = t2_reasons.reset_index() + + # pivot table so the reasons are converted from values in a column to individual columns + t2_reasons = t2_reasons.pivot(index=['screening_site','surgery_type'],columns=['reason_not_interested'], values = 'count') + + # Create dictionary from display terms dict to rename columns from int values + reason_display_dict = display_terms_t2a.set_index('reason_not_interested').to_dict()['reason_not_interested_display'] + + # Rename according to dictionary + t2_reasons = t2_reasons.rename(columns = reason_display_dict) + + # Merge the reasons with the data on the total count of declines by center + # Note: the reasons may add up to < than total declined because the data entry allowed for NA. also possible more because + # patients could select more than one reason. + t2_site_count_detailed = t2_site_count.merge(t2_reasons, on=['screening_site','surgery_type']) + t2_site_count_detailed = t2_site_count_detailed.rename(columns = {'screening_site':'Screening Site', 'surgery_type':'Surgery'}) + + # Fill missing data with 0 and sum across all sites + t2_site_count_detailed = t2_site_count_detailed.fillna(0) + t2_site_count_detailed.loc['All Sites']= t2_site_count_detailed.sum(numeric_only=True, axis=0) + + return t2_site_count_detailed + +def get_table_2b_screening(df, start_report, end_report): + # Each decline includes a comment field - show these for the period of the report (previous 7 days) + decline_comments = df[df.participation_interest == 0][['screening_site','surgery_type','date_of_contact','ptinterest_comment']].dropna() + + # Show Comments during reporting period + decline_comments = decline_comments[(decline_comments.date_of_contact > start_report) & (decline_comments.date_of_contact <= end_report)] + + # Rename and reorder columns for display + decline_comments = decline_comments.rename(columns = {'screening_site':'Screening Site', 'surgery_type':'Surgery','ptinterest_comment':'Reason' }) + cols_display_order = ['Screening Site', 'Surgery','Reason'] + decline_comments = decline_comments[cols_display_order] + + return decline_comments + +def get_table_3_screening(df,end_report_date = datetime.now(), days_range = 30): + t3 = df + # Get eligible patients using sp field logic + # eligible_short is the columns that are used and the same for both surgery types + # then assess the criteria *by surgery type* 'TKA' = knee, 'Thoracic' = back + eligible_short = (t3.sp_inclcomply ==1) & (t3.sp_inclage1884 ==1) & (t3.sp_inclsurg ==1) & (t3.sp_exclnoreadspkenglish ==0) & (t3.sp_mricompatscr ==4) + eligible_knee = (t3.surgery_type == 'TKA') & (t3.sp_exclarthkneerep ==0) & (t3.sp_exclinfdxjoint ==0) & (t3.sp_exclbilkneerep ==0) + eligible_back = (t3.surgery_type == 'Thoracic') & (t3.sp_exclothmajorsurg ==0) & (t3.sp_exclprevbilthorpro ==0) + t3['eligible'] = (eligible_short & eligible_knee) | (eligible_short & eligible_back) + + # Get conset within last days range days + within_days_range = ((end_report_date - t3.obtain_date).dt.days) <= days_range + t3['within_range'] = within_days_range + + # Aggregate data for table 3 + # Set the columns to groupby, and the the columns to role up with desired aggregating functions + # Note: can supply a list of aggregate functions to one columnm i.e. 'col_name': ['min','max'] + cols_for_groupby = ["screening_site","surgery_type"] + aggregate_columns_dict={'main_record_id':'count', + 'obtain_date':'max', + 'eligible':'sum', + 'ewdateterm':'count', + 'within_range':'sum'} + cols = cols_for_groupby + list(aggregate_columns_dict.keys()) + t3_aggregate = t3[cols].groupby(by=cols_for_groupby).agg(aggregate_columns_dict) + + # Reset Index + t3_aggregate = t3_aggregate.reset_index() + + # Calculate the number of days since the last consent + t3_aggregate['days_since_consent'] = (end_report_date.date() - t3_aggregate['obtain_date'].dt.date).astype(str) + + # Calculate # of ineligible from total - eligible + t3_aggregate['ineligible'] = t3_aggregate['main_record_id'] - t3_aggregate['eligible'] + + + # Rename and reorder columns for display + consent_range_col_name = 'Consents in last ' + str(days_range) +' Days' + rename_dict = {'screening_site':'Screening Site', + "surgery_type":'Surgery', + 'main_record_id':'Consented', + 'days_since_consent':'Days Since Last Consent', + 'within_range':consent_range_col_name, + 'eligible':'Total Eligible', + 'ineligible':'Total ineligible', + 'ewdateterm': 'Total Rescinded' + } + t3_aggregate = t3_aggregate.rename(columns = rename_dict) + cols_display_order = ['Screening Site','Surgery','Consented', 'Days Since Last Consent',consent_range_col_name, + 'Total Eligible', 'Total ineligible', 'Total Rescinded' + ] + t3_aggregate = t3_aggregate[cols_display_order] + + # Add aggregate sum row + t3_aggregate.loc['All']= t3_aggregate.sum(numeric_only=True, axis=0) + t3_aggregate.loc['All','Screening Site'] = 'All Sites' + t3_aggregate.fillna("", inplace=True) + + return t3, t3_aggregate + +# ---------------------------------------------------------------------------- +# Study Status Tables +# ---------------------------------------------------------------------------- +def get_table_4(consented_patients, compare_date = datetime.now()): + # select table4 columns for patients with a main record id + category_cols = ["treatment_site", "surgery_type"] + + table4_cols = ["main_record_id", "start_v1_preop","sp_surg_date", + "start_v2_6wk","start_v3_3mo","start_6mo","start_12mo", 'ewdateterm'] + + table4 = consented_patients[category_cols + table4_cols] + + # Sort by record ID + table4 = table4.sort_values(by=['main_record_id']) + + # Flag patients with complete surgeries + table4['sp_surg_date'] = table4['sp_surg_date'].apply(pd.to_datetime) + table4['surg_complete'] = table4['sp_surg_date'] < compare_date + + # Convert Rescinded to boolean + table4['ewdateterm'] = table4['ewdateterm'].notnull() + + # Aggregate table 4 + agg_dict = {'main_record_id':'size', + 'start_v1_preop':'sum','surg_complete':'sum','start_v2_6wk': 'sum', + 'start_v3_3mo': 'sum', 'start_6mo': 'sum', 'start_12mo': 'sum','ewdateterm': 'sum',} + table4_agg = table4.groupby(category_cols).agg(agg_dict).reset_index() + + # fill na with 0 + table4_agg.fillna(0, inplace=True) + + # treat numeric columns as ints + int_cols = table4_agg.columns.drop(category_cols) + table4_agg[int_cols] = table4_agg[int_cols].astype(int) + + # Rename columns + rename_cols_dict = {'treatment_site':'Center', + 'surgery_type':'Surgery', + 'main_record_id': 'Consented', + 'start_v1_preop': 'Baseline', + 'surg_complete': 'Surgery Complete', + 'start_v2_6wk':'6 week', + 'start_v3_3mo': '3 Month', + 'start_6mo':'6 Month', + 'start_12mo':'12 Month', + 'ewdateterm':'Resc./Early Term.'} + table4_agg.rename(columns=rename_cols_dict, inplace = True) + + table4_agg.loc['All']= table4_agg.sum(numeric_only=True, axis=0) + table4_agg.loc['All','Center'] = 'All Sites' + table4_agg.fillna("", inplace=True) + + return table4_agg + +def get_tables_5_6(df): + # Get patients who rescinded consent, i.e. have a value in the 'ewdateterm' column + rescinded = df.dropna(subset=['ewdateterm']) + rescinded_cols = ['treatment_site','surgery_type','main_record_id','obtain_date','sp_surg_date','ewdateterm','ewprimaryreason_display','ewcomments'] + rescinded = rescinded[rescinded_cols] + + # Display main record id as int + rescinded.main_record_id = rescinded.main_record_id.astype('int32') + + # convert datetime columns to just date + for date_col in ['obtain_date','ewdateterm','sp_surg_date']: + rescinded[date_col] = rescinded[date_col].dt.date + + # TO DO: need to convert reasons to text reasons + # Rename columns to user friendly versions + rescinded.columns =['Center Name','Surgery', 'Record ID', 'Consent Date','Surgery Date', + 'Early Termination Date', 'Reason', 'Comments'] + + # rescinded['pre-surgery'] = np.where(rescinded['Early Termination Date'] < rescinded['Surgery Date'], 'Active', 'Inactive') + rescinded['pre-surgery'] = np.where(rescinded['Surgery Date'].isna(), True, (np.where(rescinded['Early Termination Date'] < rescinded['Surgery Date'], True, False))) + + rescinded_pre_surgery = rescinded[rescinded['pre-surgery']].drop(['Surgery Date','pre-surgery'],axis=1) + if len(rescinded_pre_surgery) == 0: + rescinded_pre_surgery = pd.DataFrame(columns=['No Patients meet these criteria']) + + rescinded_post_surgery = rescinded[~rescinded['pre-surgery']].drop(['pre-surgery'],axis=1) + if len(rescinded_post_surgery) == 0: + rescinded_post_surgery = pd.DataFrame(columns=['No Patients meet these criteria']) + + return rescinded_pre_surgery, rescinded_post_surgery + + +# ---------------------------------------------------------------------------- +# Deviation & Adverse Event Tables +# ---------------------------------------------------------------------------- +def get_deviation_records(consented, adverse_events): + # Set which columns to select + deviations_cols = ['record_id','main_record_id', 'mcc', 'instance','erep_local_dtime', + 'erep_protdev_type','erep_protdev_type_display','erep_protdev_desc', + 'erep_protdev_caplan'] + + # Get Data on Protocol deviations separate from adverse events + deviations = adverse_events[adverse_events.erep_protdev_type.notnull()][deviations_cols] + + # Merge deviations with center info + deviations = deviations.merge(consented[['treatment_site','main_record_id','mcc','start_v1_preop']], how='left', on = ['main_record_id','mcc']) + + # convert datetime column to datetime + deviations['erep_local_dtime'] = deviations['erep_local_dtime'].apply(pd.to_datetime, errors='coerce') + + return deviations + + +def get_deviations_by_center(centers, df, deviations, display_terms_dict): + dev_cols = ['main_record_id','treatment_site','start_v1_preop'] + baseline = df[df['start_v1_preop']==1][dev_cols] + baseline = baseline.reset_index() + + # Count consented patients who have had baseline visits + centers_baseline = baseline[['treatment_site','main_record_id']].groupby(['treatment_site']).size().reset_index(name='baseline') + + # Count patients who have an associated deviation + records_with_deviation = deviations.main_record_id.unique() + baseline_with_dev = baseline[baseline.main_record_id.isin(records_with_deviation)] + centers_baseline_dev = baseline_with_dev[['treatment_site','main_record_id']].groupby(['treatment_site']).size().reset_index(name='patients_with_deviation') + + # Add count of all deviations for a given center + center_count = pd.DataFrame(deviations.value_counts(subset=['treatment_site'])).reset_index() + center_count.columns =['treatment_site','total_dev'] + + # Get Deviation Pivot by center + centers_dev = centers.merge(display_terms_dict['erep_protdev_type'], how='cross') + dev_by_center = deviations[['main_record_id','erep_protdev_type_display', 'instance','treatment_site']] + dev_by_center = dev_by_center.groupby(by=['treatment_site','erep_protdev_type_display'],as_index=False).size() + centers_dev = centers_dev.merge(dev_by_center, how='outer', on=['treatment_site','erep_protdev_type_display']).fillna(0) + dev_by_center_pivot = pd.pivot_table(centers_dev, index=["treatment_site"], columns=["erep_protdev_type_display"], values=["size"]) + dev_by_center_pivot.columns = dev_by_center_pivot.columns.droplevel() + dev_by_center_pivot.columns.name = '' + dev_by_center_pivot = dev_by_center_pivot.reset_index() + + # Merge data frames together + centers_all = centers + df_to_merge = [centers_baseline, centers_baseline_dev, center_count, dev_by_center_pivot] + for df in df_to_merge: + centers_all = centers_all.merge(df, how='left', on = 'treatment_site') + + # Fill na with 0 + centers_all = centers_all.fillna(0) + + # treat numeric columns as ints + int_cols = centers_all.columns.drop('treatment_site') + centers_all[int_cols] = centers_all[int_cols].astype(int) + + # Add summary row + centers_all.loc['All']= centers_all.sum(numeric_only=True, axis=0) + centers_all.loc['All','treatment_site'] = 'All Sites' + + # Calculate % with deviations + centers_all['percent_baseline_with_dev'] = 100 * (centers_all['patients_with_deviation'] / centers_all['baseline']) + centers_all['percent_baseline_with_dev'] = centers_all['percent_baseline_with_dev'].map('{:,.2f}'.format) + centers_all['percent_baseline_with_dev'] = centers_all['percent_baseline_with_dev'].replace('nan','-') + + # Reorder for display + cols = list(centers_all.columns) + col_order = cols[0:3] + cols[-1:] + cols[3:-1] + centers_all = centers_all[col_order] + + # Rename columns + rename_dict = {'treatment_site': ('', 'Center Name'), + 'baseline': ('Subjects', 'Baseline'), + 'patients_with_deviation': ('Subjects', '# With 1+ Deviations'), + 'percent_baseline_with_dev': ('Subjects', '% Baseline with Deviation'), + 'total_dev': ('Deviations', 'Total # of Dev.'), + 'Blood Draw': ('Deviations', 'Blood Draw'), + 'Functional Testing': ('Deviations', 'Functional Testing'), + 'Imaging': ('Deviations', 'Imaging '), + 'Informed Consent': ('Deviations', 'Informed Consent'), + 'Other': ('Deviations', 'Other'), + 'QST': ('Deviations', 'QST'), + 'Visit Timeline': ('Deviations', 'Visit Timeline')} + centers_all.rename(columns=rename_dict, inplace=True) + + # Convert columns to MultiIndex **FOR NOW DROP LEVEL BECAUSE OF WEIRD DISPLAY + centers_all.columns = pd.MultiIndex.from_tuples(centers_all.columns) + + return centers_all + +def get_table7b_timelimited(deviations,end_report_date = datetime.now(), days_range = 7): + # Get deviations within last days range days + within_days_range = ((end_report_date - deviations.erep_local_dtime).dt.days) <= days_range + deviations['within_range'] = within_days_range + table7b = deviations[deviations['within_range']] + + # Sort by most recent, then record_id, then instance + table7b = table7b.sort_values(['erep_local_dtime', 'main_record_id', 'erep_protdev_type'], ascending=[False, True, True]) + + #select columns for display and rename + table7b_cols = ['treatment_site','main_record_id', 'erep_local_dtime', 'erep_protdev_type_display', + 'erep_protdev_desc', 'erep_protdev_caplan'] + table7b_cols_new_names = ['Center Name','PID', 'Deviation Date', 'Deviation', + 'Description', 'Corrective Action'] + table7b = table7b[table7b_cols] + table7b.columns = table7b_cols_new_names + + # Adjust cols: Record ID as int, Datetime in DD/MM/YY format + table7b['PID'] = table7b['PID'].astype(int) + table7b['Deviation Date'] = table7b['Deviation Date'].dt.strftime('%m/%d/%Y') + + return table7b + + +def get_adverse_event_records(consented, adverse_events): + # Set which columns to select + adverse_event_flag_cols = ['erep_ae_yn'] # must = 1 + adverse_event_cols = ['main_record_id', 'mcc', 'instance','erep_ae_yn','erep_ae_relation', 'erep_ae_severity', 'erep_ae_serious', + 'erep_onset_date', 'erep_ae_desc', 'erep_action_taken', 'erep_outcome','erep_ae_yn_display', + 'erep_ae_severity_display', 'erep_ae_relation_display', + 'erep_ae_serious_display'] + + # Get Data on adverse events separate from Protocol deviations + ae = adverse_events[adverse_events.erep_ae_yn==1][adverse_event_cols] + + # Merge adverse events with center info + ae = ae.merge(consented[['treatment_site','surgery_type','main_record_id','mcc','sp_surg_date']], how='left', on = ['main_record_id','mcc']) + + return ae + +def get_adverse_events_by_center(centers, df, adverse_events, display_terms_mapping): + # Select subset of patients who have had baseline visits (start_v1_preop not null), using record_id as unique identifier + baseline_cols = ['main_record_id','treatment_site','start_v1_preop'] + baseline = df[df['start_v1_preop']==1][baseline_cols] + baseline = baseline.reset_index() + + # Count consented patients who have had baseline visits + centers_baseline = baseline[['treatment_site','main_record_id']].groupby(['treatment_site']).size().reset_index(name='patients_baseline') + + # Count patients who have an adverse events + records_with_adverse_events = adverse_events.main_record_id.unique() + baseline_with_ae = baseline[baseline.main_record_id.isin(records_with_adverse_events)] + centers_baseline_ae = baseline_with_ae[['treatment_site','main_record_id']].groupby(['treatment_site']).size().reset_index(name='patients_with_ae') + + # Add count of all adverse events for a given center + center_count_ae = pd.DataFrame(adverse_events.value_counts(subset=['treatment_site'])).reset_index() + center_count_ae.columns =['treatment_site','total_ae'] + + # Merge data frames together + centers_ae = centers + df_to_merge = [centers_baseline, centers_baseline_ae, center_count_ae] + for df in df_to_merge: + centers_ae = centers_ae.merge(df, how='left', on = 'treatment_site') + + # Get data for variables at center level, pivot and merge with centers data + ae_api_fields = ['erep_ae_severity' ,'erep_ae_relation'] + for ae_field in ae_api_fields: + ae_field_display = ae_field +'_display' + centers_ae_field = centers.merge(display_terms_mapping[ae_field], how='cross') + ae_by_center = adverse_events[['main_record_id',ae_field_display, 'instance','treatment_site']] + ae_by_center = ae_by_center.groupby(by=['treatment_site',ae_field_display],as_index=False).size() + centers_ae_field = centers_ae_field.merge(ae_by_center, how='outer', on=['treatment_site',ae_field_display]).fillna(0) + centers_ae_field = centers_ae_field.drop(ae_field, axis=1) + ae_by_center_pivot = pd.pivot_table(centers_ae_field, index=["treatment_site"], columns=[ae_field_display], values=["size"]) + ae_by_center_pivot.columns = ae_by_center_pivot.columns.droplevel() + ae_by_center_pivot.columns.name = '' + ae_by_center_pivot = ae_by_center_pivot.reset_index() + centers_ae = centers_ae.merge(ae_by_center_pivot, how = 'left', on = 'treatment_site') + + # Fill na with 0 + centers_ae = centers_ae.fillna(0) + + # treat numeric columns as ints + int_cols = centers_ae.columns.drop('treatment_site') + centers_ae[int_cols] = centers_ae[int_cols].astype(int) + + # Add summary row + centers_ae.loc['All']= centers_ae.sum(numeric_only=True, axis=0) + centers_ae.loc['All','treatment_site'] = 'All Sites' + + # Calculate % with adverse events + centers_ae['percent_baseline_with_ae'] = 100 * (centers_ae['patients_with_ae'] / centers_ae['patients_baseline']) + centers_ae['percent_baseline_with_ae'] = centers_ae['percent_baseline_with_ae'].map('{:,.2f}'.format) + centers_ae['percent_baseline_with_ae'] = centers_ae['percent_baseline_with_ae'].replace('0.00','-') + + # Rename and Reorder for display + rename_cols =[('', 'Center'), + ('', 'Patients'), + ('', '# With Adverse Event'), + ('', '% with 1+ Adverse Events'), + ('Severity', 'Mild'), + ('Severity', 'Moderate'), + ('Severity', 'Severe'), + ('Relationship', 'Definitely Related'), + ('Relationship', 'Possibly/Probably Related'), + ('Relationship', 'Not Related'), + ('', '% Of Subjects with A.E.')] + centers_ae.columns = rename_cols + col_order = rename_cols[0:3] + rename_cols[-1:] + rename_cols[4:8] + rename_cols[9:10] + rename_cols[8:9] + rename_cols[3:4] + centers_ae = centers_ae[col_order] + + # Convert columns to MultiIndex + centers_ae.columns = pd.MultiIndex.from_tuples(centers_ae.columns) + + return centers_ae + +def get_table_8b(event_records, end_report, report_days = 30): + table8b_cols_dict = {'treatment_site':'Center', + 'surgery_type':'Surgery', + 'main_record_id':'PID', + 'erep_onset_date':'AE Date', + 'sp_surg_date': 'Surgery Date', + 'erep_ae_severity_display':'Severity', + 'erep_ae_relation_display':'Relationship', + # 'erep_ae_serious_display':'Serious', + 'erep_ae_desc':'Description', + 'erep_action_taken':'Action', + 'erep_outcome':'Outcome'} + table8b_cols = table8b_cols_dict.keys() + table8b = event_records[table8b_cols].copy() + + # Limit report if report_days is not None + if report_days: + # Get report start date + start_report = end_report - timedelta(days=report_days) + + # Get records that are adverse envet records in the time frame of report + table8b = table8b[(table8b.erep_onset_date > start_report) & (table8b.erep_onset_date <= end_report)] + + # convert datetime column to show date + table8b.erep_onset_date = table8b.erep_onset_date.apply(pd.to_datetime, errors='coerce').dt.strftime('%m/%d/%Y') + + # Use col dict to rename cols for display + table8b = table8b.rename(columns=table8b_cols_dict) + + if len(table8b) <1 : + return pd.DataFrame(columns = ['No Adverse Events in the reporting timeframe']) + else: + table8b = table8b.sort_values(by=['AE Date'], ascending=False) + + + return table8b + + +# ---------------------------------------------------------------------------- +# Demographics Tables +# ---------------------------------------------------------------------------- +def get_demographic_data(df): + id_cols = ['record_id','mcc','treatment_site', 'surgery_type','ewdateterm'] + demo_cols = ['age', 'dem_race_display', 'ethnic_display', 'sex_display'] + screening_cols = ['screening_age', 'screening_race_display', 'screening_ethnicity_display', 'screening_gender_display'] + demo= df[id_cols + demo_cols + screening_cols].copy() + + # Fill in data from screening where missing + # demo_ethnic['ethnicity'] = np.where(demo_ethnic['ethnic_description'].isnull(), demo_ethnic['screening_ethnicity_description'], demo_ethnic['ethnic_description']) + mapping_dict = { 'age':'screening_age', + 'dem_race_display': 'screening_race_display', + 'ethnic_display': 'screening_ethnicity_display', + 'sex_display':'screening_gender_display'} + + # 1) replace values with screening data if missing + mapped_cols = [] + for key in mapping_dict.keys(): + mapped_col = key + '_merge' + mapped_cols = mapped_cols + [mapped_col] + demo[mapped_col] = np.where(demo[key].isnull(), demo[mapping_dict[key]], demo[key]) + + # 2) select subset of columns + demo = demo[id_cols + mapped_cols] + + # 3) Fill na with 'Unknown' + demo = demo.fillna('Unknown') + + # 4) use Termination date column to map status as active or inactive + demo['Status'] = np.where(demo.ewdateterm == 'Unknown', 'Active', 'Inactive') + + # 5) Rename Columns + demo.columns = ['ID', 'MCC', 'Center Name','Surgery', 'Termination Date','Age', 'Race', 'Ethnicity', 'Sex', 'Status'] + + return demo + +def rollup_demo_data(demo_df, demo_col, display_terms_dict, display_term_key): + df_all = pd.DataFrame(display_terms_dict[display_term_key][display_term_key + '_display']) + df_all.columns = [demo_col] + counts = pd.DataFrame(demo_df[demo_col].value_counts()).reset_index() + normal = pd.DataFrame(demo_df[demo_col].value_counts(normalize=True)).reset_index() + merged = counts.merge(normal, on='index') + merged.columns = [demo_col,'Count','Percent'] + df_all = df_all.merge(merged, how='left', on = demo_col) + df_all = df_all.fillna(0) + df_all['Count'] = df_all['Count'].astype(int) + df_all['Percent'] = df_all['Percent'].map("{:.2%}".format) + df_all.loc['All'] = df_all.sum(numeric_only=True, axis=0) + return df_all + +def rollup_with_split_col(demo_df, demo_col, display_terms_dict, display_term_key, split_col): + rollup = rollup_demo_data(demo_df, demo_col, display_terms_dict, display_term_key) + rollup.columns =[demo_col, + 'All:Count', + 'All:Percent'] + for i in list(demo_df[split_col].unique()): + df = demo_df[demo_df[split_col] == i] + i_rollup = rollup_demo_data(df, demo_col, display_terms_dict, display_term_key) + i_rollup.columns =[demo_col, + str(i) + ':Count', + str(i) + ':Percent'] + rollup = rollup.merge(i_rollup, how='left', on=demo_col) + rollup.rename(columns={demo_col: ':'+demo_col}, inplace=True) + create_multiindex(rollup, ':') + return rollup + +def get_describe_col(df, describe_col, round_rows = {2:['mean', 'std']}): + df_describe = pd.DataFrame(df[describe_col].describe().reset_index()) + if round_rows: + for k in round_rows.keys(): + df_describe[describe_col] = np.where((df_describe['index'].isin(round_rows[k])), df_describe[describe_col].round(k).astype(str), df_describe[describe_col]) + return df_describe + +def get_describe_col_subset(df, describe_col, subset_col, round_rows = {2:['mean', 'std']}): + df_describe = get_describe_col(df, describe_col) + df_describe.columns = ['index',describe_col + ': All'] + for i in list(df[subset_col].unique()): + i_df = df[df[subset_col] == i] + i_describe = get_describe_col(i_df, describe_col) + i_describe.columns = ['index',describe_col + ': ' + str(i)] + df_describe = df_describe.merge(i_describe, how='left', on='index') + df_describe.rename(columns={"index": ":Measure"}, inplace=True) + create_multiindex(df_describe, ':') + return df_describe + +# ---------------------------------------------------------------------------- +# Enrollment FUNCTIONS +# ---------------------------------------------------------------------------- + +def get_enrollment_data(consented): + enroll_cols = ['record_id','main_record_id','obtain_date','mcc', 'screening_site', 'surgery_type',] + enrolled = consented[consented['ewdateterm'].isna()][enroll_cols] # Do we want to do this? + enrolled['obtain_month'] = enrolled['obtain_date'].dt.to_period('M') + enrolled['Site'] = enrolled['screening_site'] + ' (' + enrolled['surgery_type'] + ')' + return enrolled + +def enrollment_rollup(enrollment_df, index_col, grouping_cols, count_col_name, cumsum=True, fill_na_value = 0): + enrollment_count = enrollment_df.groupby([index_col] + grouping_cols).size().reset_index(name=count_col_name).fillna({count_col_name:fill_na_value}) + if cumsum: + enrollment_count['Cumulative'] = enrollment_count.groupby(grouping_cols)[count_col_name].cumsum() + + return enrollment_count + +def get_site_enrollments(enrollment_count, mcc): + site_enrollments = enrollment_count[enrollment_count.mcc == mcc] + site_enrollments = pd.pivot(site_enrollments, index=['obtain_month'], columns = 'Site', values=['Monthly','Cumulative']) + site_enrollments = site_enrollments.swaplevel(0,1, axis=1).sort_index(axis=1).reindex(['Monthly','Cumulative'], level=1, axis=1).reset_index() + site_enrollments['Month'] = site_enrollments['obtain_month'].dt.strftime("%B") + site_enrollments['Year'] = site_enrollments['obtain_month'].dt.strftime("%Y") + site_enrollments = site_enrollments.set_index(['Month','Year']).drop(columns='obtain_month') + return site_enrollments + +def get_enrollment_expectations(): + enrollment_expectations_dict = {'mcc': ['1','1','2','2'], + 'surgery_type':['TKA','Thoracic','Thoracic','TKA'], + 'start_month': ['02/22','06/22','02/22','06/22'], + 'expected_cumulative_start':[280,10,70,10], 'expected_monthly':[30,10,30,10]} + + enrollment_expectations_df = pd.DataFrame.from_dict(enrollment_expectations_dict) + enrollment_expectations_df['start_month'] = pd.to_datetime(enrollment_expectations_df['start_month'], format='%m/%y').dt.to_period('M') + + enrollment_expectations_df['mcc'] = enrollment_expectations_df['mcc'].astype(int) + + return enrollment_expectations_df + +def get_enrollment_expectations_monthly(enrollment_expectations_df): + mcc_type_expectations = pd.DataFrame() + for i in range(len(enrollment_expectations_df)): + mcc = enrollment_expectations_df.iloc[i]['mcc'] + surgery_type = enrollment_expectations_df.iloc[i]['surgery_type'] + start_month = enrollment_expectations_df.iloc[i]['start_month'] + expected_start_count = enrollment_expectations_df.iloc[i]['expected_cumulative_start'] + expected_monthly = enrollment_expectations_df.iloc[i]['expected_monthly'] + + months = pd.period_range(start_month,datetime.now(),freq='M').tolist() + expected_monthly_series = [expected_start_count] + (len(months)-1) * [expected_monthly] + + for index, month in enumerate(months): + new_row = {'mcc':mcc, + 'surgery_type': surgery_type, + 'Month': month, + 'Expected: Monthly': expected_monthly_series[index], + 'Expected: Cumulative': expected_start_count+index*expected_monthly} + mcc_type_expectations = mcc_type_expectations.append(new_row, ignore_index=True) + + return mcc_type_expectations + +def rollup_enrollment_expectations(enrollment_df, enrollment_expectations_df, monthly_expectations): + enrollment_df = enrollment_df.merge(enrollment_expectations_df[['mcc','surgery_type','start_month']], how='left', on=['mcc','surgery_type']) + + # Determine if values in early months or should be broken out + enrollment_df['expected_month'] = np.where(enrollment_df['obtain_month'] <= enrollment_df['start_month'], enrollment_df['start_month'], enrollment_df['obtain_month'] ) + + # Rolll up data by month + ee_rollup = enrollment_rollup(enrollment_df, 'expected_month', ['mcc','surgery_type'], 'Monthly').sort_values(by='mcc') + ee_rollup_rename_dict={ + 'expected_month':'Month', + 'Monthly': 'Actual: Monthly', + 'Cumulative': 'Actual: Cumulative' + } + ee_rollup.rename(columns=ee_rollup_rename_dict,inplace=True) + + # Merge on Monthly expectations + ee_rollup = ee_rollup.merge(monthly_expectations, how='left', on=['mcc','surgery_type','Month']) + + # Calculate percent peformance actual vs expectations + ee_rollup['Percent: Monthly'] = (100 * ee_rollup['Actual: Monthly'] / ee_rollup['Expected: Monthly']).round(1).astype(str) + '%' + ee_rollup['Percent: Cumulative'] = (100 * ee_rollup['Actual: Cumulative'] / ee_rollup['Expected: Cumulative']).round(1).astype(str) + '%' + ee_rollup.loc[ee_rollup['Actual: Monthly'] == 0, 'Percent: Monthly'] = '' + + # Add Site name column + ee_rollup['Site'] = ee_rollup.apply(lambda x: 'MCC' + str(x['mcc']) + ' (' + x['surgery_type'] + ')',axis=1) + ee_rollup_cols = ['Site','Month', 'Actual: Monthly', 'Actual: Cumulative', + 'Expected: Monthly', 'Expected: Cumulative', 'Percent: Monthly','Percent: Cumulative'] + + ee_rollup = ee_rollup[ee_rollup_cols] + + return ee_rollup + +# ---------------------------------------------------------------------------- +# GET DATA FOR PAGE +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# GET DATA FOR PAGE +# ---------------------------------------------------------------------------- +def get_tables(today, start_report, end_report, report_date_msg, report_range_msg, display_terms, display_terms_dict, display_terms_dict_multi, subjects, consented, adverse_events, centers_df): + ''' Load all the data for the page''' + ## SCREENING TABLES + table1 = get_table_1_screening(subjects) + + display_terms_t2a = display_terms_dict_multi['reason_not_interested'] + table2a = get_table_2a_screening(subjects, display_terms_t2a) + + table2b = get_table_2b_screening(subjects, start_report, end_report) + + table3_data, table3 = get_table_3_screening(consented, today, 30) + + ## STUDY Status + table4 = get_table_4(consented, today) + + table5, table6 = get_tables_5_6(consented) + + ## Deviations & Adverse Events + ### Deviations + deviations = get_deviation_records(consented, adverse_events) + table7a = get_deviations_by_center(centers_df, consented, deviations, display_terms_dict_multi) + table7b = get_table7b_timelimited(deviations) + + ### Adverse Events + ae = get_adverse_event_records(consented, adverse_events) + table8a = get_adverse_events_by_center(centers_df, consented, ae, display_terms_dict_multi) + table8b = get_table_8b(ae, today, None) + + ## Demographics + demographics = get_demographic_data(consented) + # get subset of active patients + demo_active = demographics[demographics['Status']=='Active'].copy() + demo_active['category'] = demo_active.apply(lambda x: 'MCC ' + str(x['MCC']) + ' / ' +x['Surgery'], axis=1) + + # Currently splitting on MCC values + split_col = 'category' + + # SEX + demo_df, demo_col, display_terms_dict, display_term_key = demo_active, 'Sex', display_terms_dict, 'sex' + sex = rollup_with_split_col(demo_df, demo_col, display_terms_dict, display_term_key, split_col) + + # RACE + demo_df, demo_col, display_terms_dict, display_term_key = demo_active, 'Race', display_terms_dict, 'dem_race' + race = rollup_with_split_col(demo_df, demo_col, display_terms_dict, display_term_key, split_col) + + # ETHNICITY + demo_df, demo_col, display_terms_dict, display_term_key = demo_active, 'Ethnicity', display_terms_dict, 'ethnic' + ethnicity = rollup_with_split_col(demo_df, demo_col, display_terms_dict, display_term_key, split_col) + + # AGE + # Drop na + age_df = demo_active.copy() + age_df["Age"] = pd.to_numeric(age_df["Age"], errors='coerce') # handle records that have no age value anywhere + age = get_describe_col_subset(age_df, 'Age', 'category') + + + return table1, table2a, table2b, table3, table4, table5, table6, table7a, table7b, table8a, table8b, sex, race, ethnicity, age + +def get_enrollment_tables(consented): + enrollment_df = get_enrollment_data(consented) + + enrollment_df, index_col, grouping_cols, count_col_name = enrollment_df, 'obtain_month', ['mcc','screening_site','surgery_type','Site'], 'Monthly' + enrollment_count = enrollment_rollup(enrollment_df, index_col, grouping_cols, count_col_name) + + mcc1_enrollments = get_site_enrollments(enrollment_count, 1) + mcc2_enrollments = get_site_enrollments(enrollment_count, 2) + + enrollment_expectations_df = get_enrollment_expectations() + monthly_expectations = get_enrollment_expectations_monthly(enrollment_expectations_df) + summary_rollup = rollup_enrollment_expectations(enrollment_df, enrollment_expectations_df, monthly_expectations) + + return mcc1_enrollments, mcc2_enrollments, summary_rollup + + +# ---------------------------------------------------------------------------- +# Enrollment FUNCTIONS - OLD +# ---------------------------------------------------------------------------- +# def get_enrollment_data(screening_sites,screening_data, consented): +# # Load screening sites +# screening_sites['start_date'] = pd.to_datetime(screening_sites['start_date'], errors='coerce').dt.date +# screening_sites = screening_sites[~(screening_sites.start_date.isna())] +# +# # get enrollment data +# enroll_cols = ['record_id','main_record_id','obtain_date', 'redcap_data_access_group_display'] +# enrolled = consented[consented['ewdateterm'].isna()][enroll_cols] # Do we want to do this? +# enrolled = enrolled.merge(screening_data[['record_id','screening_site']], how='left', on='record_id') +# enrolled = enrolled.merge(screening_sites[['screening_site','start_month','start_year']], how='left', on='screening_site') +# enrolled['obtain_year'] = enrolled['obtain_date'].dt.year +# enrolled['obtain_month'] = enrolled['obtain_date'].dt.month +# enrolled['study_month'] = 12 * (enrolled['obtain_year'] - enrolled['start_year']) + enrolled['obtain_month'] - enrolled['start_month'] + 1 +# enrolled['study_month'] = enrolled['study_month'].astype(int) +# enrolled['study_month'] = np.where(enrolled['study_month'] < 1, 1, enrolled['study_month']) +# +# #expected data +# expect = screening_sites[['screening_site','study_month','expected_enrollment']].copy() +# expect['expected_enrollment'] = expect['expected_enrollment'].str.split(', ') +# expect['study_month'] = expect['study_month'].str.split(', ') +# expected = expect.apply(pd.Series.explode).reset_index(drop=True) +# expected.dropna(inplace=True) +# expected['expected_enrollment'] = expected['expected_enrollment'].astype(int) +# expected_cum = expected.set_index(['screening_site','study_month']).groupby(level=0).cumsum().reset_index() +# expected_cum.columns = ['screening_site','study_month','expected_enrollment_cum'] +# expected = expected.merge(expected_cum, on=['screening_site','study_month']) +# expected.rename(columns={"expected_enrollment": "Expected: Monthly", 'expected_enrollment_cum': 'Expected: Cumulative'}, inplace=True) +# expected = expected.melt(id_vars=['screening_site', 'study_month']) +# expected['study_month'] = expected['study_month'].astype(int) +# +# # get rolled up data +# ne = enrolled[['screening_site','study_month','record_id']].copy() +# ne = ne.groupby(['screening_site','study_month']).count() +# +# ne_cumsum = ne.groupby(level=0).cumsum().reset_index() +# ne_cumsum['variable'] = 'Actual: Cumulative' +# +# ne = ne.reset_index() +# ne['variable'] = 'Actual: Monthly' +# +# er = pd.concat([ne,ne_cumsum]) +# +# er.rename(columns={"record_id": "value"}, inplace=True) +# +# # Combine enrollment with expected data +# enrollment = pd.concat([er,expected]) +# +# return enrolled, enrollment +# +# def get_site_enrollment(site, enrollment): +# df = enrollment[enrollment['screening_site'] == site] +# site_df = df.pivot_table(index=['study_month'], +# columns=['screening_site','variable'], +# values='value') +# site_df.columns = site_df.columns.droplevel() +# site_df.reset_index(inplace=True) +# site_df['Study Time: Year'] = site_df['study_month'].apply(lambda x: int((x-1)/12)) +# site_df['Study Time: Month'] = site_df['study_month'].apply(lambda x: ((x-1) % 12) + 1) +# +# # Fill monthly NA with 0, cumulative with max +# site_df['Actual: Monthly'] = site_df['Actual: Monthly'].fillna(0) +# site_df['Actual: Cumulative'] = site_df['Actual: Cumulative'].fillna(site_df['Actual: Cumulative'].max()) +# +# site_df['Percent: Monthly'] = (100 * site_df['Actual: Monthly'] / site_df['Expected: Monthly']).round(1).astype(str) + '%' +# site_df['Percent: Cumulative'] = (100 * site_df['Actual: Cumulative'] / site_df['Expected: Cumulative']).round(1).astype(str) + '%' +# site_df.loc[site_df['Actual: Monthly'] == 0, 'Percent: Monthly'] = '' +# +# col_order = [ 'study_month', 'Study Time: Year', 'Study Time: Month', +# 'Expected: Monthly', 'Expected: Cumulative', +# 'Actual: Monthly', 'Actual: Cumulative', +# 'Percent: Monthly', 'Percent: Cumulative' +# ] +# site_df = site_df[col_order] +# return site_df diff --git a/datastore/src/requests.csv b/datastore/src/requests.csv new file mode 100644 index 0000000..f019f0c --- /dev/null +++ b/datastore/src/requests.csv @@ -0,0 +1,25 @@ +date, api_url, status +"09/09/2022, 22:48:04",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,200 +"09/09/2022, 22:48:04",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,200 +"09/09/2022, 23:55:43",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,200 +"09/09/2022, 23:55:43",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,200 +"09/10/2022, 00:02:40",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,200 +"09/10/2022, 00:02:40",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,200 +"09/10/2022, 00:05:07",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,200 +"09/10/2022, 00:05:07",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,200 +"09/10/2022, 00:06:46",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,200 +"09/10/2022, 00:06:46",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,200 +"09/10/2022, 02:03:50",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,200 +"09/10/2022, 02:03:50",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,200 +"09/14/2022, 16:35:23",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,500 +"09/14/2022, 16:35:23",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,500 +"09/14/2022, 16:44:38",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,500 +"09/14/2022, 16:44:38",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,500 +"09/14/2022, 16:45:24",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,500 +"09/14/2022, 16:45:24",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,500 +"09/14/2022, 16:47:20",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,500 +"09/14/2022, 16:47:20",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,500 +"09/14/2022, 16:48:04",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,500 +"09/14/2022, 16:48:04",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,500 +"09/14/2022, 17:22:09",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-1-latest.json,200 +"09/14/2022, 17:22:09",https://api.a2cps.org/files/v2/download/public/system/a2cps.storage.community/reports/blood/blood-2-latest.json,200 diff --git a/datastore_client/local.env b/datastore_client/local.env new file mode 100644 index 0000000..fb55ee6 --- /dev/null +++ b/datastore_client/local.env @@ -0,0 +1 @@ +DATASTORE_URL=http://a2cps_datastore:8050/api diff --git a/datastore_client/requirements.txt b/datastore_client/requirements.txt index 9dd06cc..85ee5d5 100644 --- a/datastore_client/requirements.txt +++ b/datastore_client/requirements.txt @@ -1,4 +1,9 @@ -flask==2.0.2 +flask==2.0.3 gunicorn==20.1.0 requests==2.27.0 -dash==2.0.0 \ No newline at end of file +pandas==1.3.4 +dash==2.1.0 +dash-bootstrap-components==1.0.3 +dash-daq==0.5.0 +dash-extensions==0.0.55 +Werkzeug==2.0.3 diff --git a/datastore_client/src/app.py b/datastore_client/src/app.py index 0a1bd7e..34c5911 100644 --- a/datastore_client/src/app.py +++ b/datastore_client/src/app.py @@ -1,24 +1,213 @@ -import dash -from dash import html + import requests import flask import traceback +import requests +import json +import pandas as pd + +# Dash Framework +import dash_bootstrap_components as dbc +from dash import Dash, callback, clientside_callback, html, dcc, dash_table as dt, Input, Output, State, MATCH, ALL +from dash.exceptions import PreventUpdate + + server = flask.Flask('app') -try: - response = requests.get("http://datastore:8050/api") -except Exception as e: - traceback.print_exc() +# --------------------------------- +# Get Data From datastore +# --------------------------------- + +def get_api_data(api_address): + api_json = {} + try: + try: + response = requests.get(api_address) + except: + return('error: {}'.format(e)) + request_status = response.status_code + if request_status == 200: + api_json = response.json() + return api_json + else: + return request_status + except Exception as e: + traceback.print_exc() + api_json['json'] = 'error: {}'.format(e) + return api_json + +# +# print("data from datastore:", datafeed) + +# --------------------------------- +# Page components +# --------------------------------- +def serve_layout(): + + layout = html.Div([ + dcc.Store(id='store_data'), + html.H1('A2CPS Data from API'), + dbc.Row([ + dbc.Col([ + html.P('Call for new data from APIs (if needed):'), + dcc.Dropdown( + id='dropdown-api', + options=[ + # {'label': 'APIs', 'value': 'apis'}, + {'label': 'Subjects', 'value': 'subjects'}, + {'label': 'Imaging', 'value': 'imaging'}, + {'label': 'Blood Draws', 'value': 'blood'}, + ], + # value='apis' + ), + html.Button('Reload API', id='submit-api', n_clicks=0), + html.P('Available Data / DataFrames '), + dcc.Loading( + id="loading-content", + type="default", + children = [ + dcc.Dropdown( + id ='dropdown_datastores' + ), + ] + # children=[ + # html.Div(id='div_content'), + # html.Div(id='div_table') + # ] + ), -print("data from datastore", response.json()) + html.Div(id='df-columns'), + ],width=2), + dbc.Col([ + dcc.Store(id='store-table'), + html.Div(id='div-content') + ], width=10), + ]), -app = dash.Dash('app', server=server) + ]) + return layout -app.layout = html.Div([ - html.H1('Hello World'), -]) +# --------------------------------- +# build app +# --------------------------------- +external_stylesheets_list = [dbc.themes.SANDSTONE, 'https://codepen.io/chriddyp/pen/bWLwgP.css'] # set any external stylesheets + +app = Dash('app', server=server, + external_stylesheets=external_stylesheets_list, + suppress_callback_exceptions=True, + meta_tags=[{'name': 'viewport', 'content': 'width=device-width, initial-scale=1'}]) + +app.layout = serve_layout if __name__ == '__main__': - app.run_server() \ No newline at end of file + app.run_server() + + +# --------------------------------- +# Callbacks +# --------------------------------- +@app.callback( + Output('store_data', 'data'), + Output('dropdown_datastores', 'options'), + Input('submit-api', 'n_clicks'), + State('dropdown-api', 'value'), + State('store_data', 'data') +) +def update_datastore(n_clicks, api, datastore_dict): + if n_clicks == 0: + raise PreventUpdate + if not datastore_dict: + datastore_dict = {} + api_json = {} + print(api) + if api: + api_address = "http://datastore:8050/api/" + api + api_json = get_api_data(api_address) + if api_json: + datastore_dict[api] = api_json + print('got api-json') + else: + print('no api-json') + + options = [] + if datastore_dict: + for api in datastore_dict.keys(): + api_label = api + ' [' + datastore_dict[api]['date'] + ']' + api_header_option = {'label': api_label, 'value': api_label, 'disabled': True} + options.append(api_header_option) + for dataframe in datastore_dict[api]['data'].keys(): + # api_dataframe_label = api + '_' + datastore_dict[api][dataframe] + # api_dataframe_option = {'label': api_dataframe_label, 'value': api_dataframe_label} + api_dataframe_option = {'label': ' -' + dataframe, 'value': api + ':' + dataframe} + options.append(api_dataframe_option) + # print(datastore_dict[api]['date']) + # print(datastore_dict[api]['data'].keys()) + + # options = list(datastore_dict[api]['data'].keys()) + # print(datastore_dict.keys()) + # for key in datastore_dict.keys(): + # if datastore_dict[key] is dict: + # print(datastore_dict[key].keys()) + # for k in datastore_dict[key].keys(): + # if datastore_dict[k] is dict: + # print(datastore_dict[key][k].keys()) + else: + print('no datastore_dict') + return datastore_dict, options + +@app.callback( + # Output('dropdown_datastores', 'options'), store-table + Output('div-content','children'), + Input('dropdown_datastores', 'value'), + State('store_data', 'data') +) +def show_table(selected_dataframe, datastore_dict): + if selected_dataframe: + api, dataframe = selected_dataframe.split(':') + print(api, dataframe ) + print(datastore_dict[api]['data'][dataframe][0]) + div_table = dt.DataTable( + data=datastore_dict[api]['data'][dataframe], + virtualization=True, + style_table={ + 'overflowX': 'auto', + 'width':'100%', + 'margin':'auto'}, + page_current= 0, + page_size= 15, + # columns=[{"name": i, "id": i} for i in df.columns] + ) + columns_list = list(datastore_dict[api]['data'][dataframe][0].keys()) + # return html.P('stuff here') + columns_div = html.Div([ + html.P('Table Columns:'), html.P(', '.join(columns_list)) + ]) + return html.Div([columns_div, div_table]) + else: + return html.P('') + +# @app.callback( +# Output('div_content', 'children'), +# Ouput('store_data', 'data'), +# Input('dropdown-api', 'value'), +# State('store_data', 'data') +# ) +# def update_content(api, data): +# div_json = '' +# if api: +# api_address = "http://datastore:8050/api/" + api +# div_json = get_api_data(api_address) +# # div_dict = json.loads(div_json) +# # kids = html.Div([html.P(k) for key in div_dict.keys()]) +# k = list(div_json.keys()) +# k_date =k[0] +# df_keys = list(div_json[k_date].keys()) +# kids = [] +# for key in df_keys: +# kids.append(html.P(key)) +# dropdwn_dfs = dcc.Dropdown( +# options=df_keys +# ) +# return html.Div([html.P('Please select a dataframe:'), dropdwn_dfs ]) diff --git a/datastore_client/src/assets/custom_styles.css b/datastore_client/src/assets/custom_styles.css new file mode 100644 index 0000000..dab73fa --- /dev/null +++ b/datastore_client/src/assets/custom_styles.css @@ -0,0 +1,49 @@ +/*---------------------------------------------------------------------------- +Delay dcc.loading +----------------------------------------------------------------------------*/ + +.delay { + position: relative; +} + +.delay::after { + content: ""; + display: block; + position: absolute; + top: 0; + left: 0; + /* min and max vals in case children (content) + * does not exist at all until the callback + * processes */ + min-height: 18px; + min-width: 181px; + width: 100%; + height: 100%; + background-color: rgba(255, 255, 255, 0.4); + animation: fadeout 2s forwards; +} + +.delay[data-dash-is-loading="true"]::after{ + content: ""; + display: block; + background-color: rgba(255, 255, 255, 0.4); + /* 2s delay + 0.5s transition */ + animation: fadein 2.5s forwards; +} + +@keyframes fadein { + 0% { opacity: 0; } + /* + * as above, the the entire transition is 2.5 seconds long. + * so, to "delay" the loading screen for 2 seconds, + * keep it "hidden" (opacty: 0) for 80% of the + * total of transition time: 0.8 * 2.5 = 2 seconds + */ + 80% { opacity: 0; } + 100% { opacity: 1; } +} + +@keyframes fadeout { + from { opacity: 1;} + to { opacity: 0;} +} diff --git a/datastore_client_template/Dockerfile b/datastore_client_template/Dockerfile new file mode 100644 index 0000000..1efaa52 --- /dev/null +++ b/datastore_client_template/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.9-slim +EXPOSE 8050 +COPY requirements.txt requirements.txt +RUN pip install -r requirements.txt +WORKDIR /app +COPY src /app/ +CMD ["gunicorn", "-b :8050", "-t 90", "app:server"] \ No newline at end of file diff --git a/datastore_client_template/local.env b/datastore_client_template/local.env new file mode 100644 index 0000000..fb55ee6 --- /dev/null +++ b/datastore_client_template/local.env @@ -0,0 +1 @@ +DATASTORE_URL=http://a2cps_datastore:8050/api diff --git a/datastore_client_template/requirements.txt b/datastore_client_template/requirements.txt new file mode 100644 index 0000000..85ee5d5 --- /dev/null +++ b/datastore_client_template/requirements.txt @@ -0,0 +1,9 @@ +flask==2.0.3 +gunicorn==20.1.0 +requests==2.27.0 +pandas==1.3.4 +dash==2.1.0 +dash-bootstrap-components==1.0.3 +dash-daq==0.5.0 +dash-extensions==0.0.55 +Werkzeug==2.0.3 diff --git a/datastore_client_template/src/__init__.py b/datastore_client_template/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/datastore_client_template/src/app.py b/datastore_client_template/src/app.py new file mode 100644 index 0000000..9a8b28f --- /dev/null +++ b/datastore_client_template/src/app.py @@ -0,0 +1,49 @@ + +import requests +import flask +import traceback + +import requests +import json +import pandas as pd + +# Dash Framework +import dash_bootstrap_components as dbc +from dash import Dash, callback, clientside_callback, html, dcc, dash_table as dt, Input, Output, State, MATCH, ALL +from dash.exceptions import PreventUpdate + + +server = flask.Flask('app') + + +# --------------------------------- +# Page components +# --------------------------------- +def serve_layout(): + + layout = html.Div([ + dcc.Store(id='store_data'), + html.H1('Build an App Here'), + + ]) + return layout + +# --------------------------------- +# build app +# --------------------------------- +external_stylesheets_list = [dbc.themes.SANDSTONE, 'https://codepen.io/chriddyp/pen/bWLwgP.css'] # set any external stylesheets + +app = Dash('app', server=server, + external_stylesheets=external_stylesheets_list, + suppress_callback_exceptions=True, + meta_tags=[{'name': 'viewport', 'content': 'width=device-width, initial-scale=1'}]) + +app.layout = serve_layout + +if __name__ == '__main__': + app.run_server() + + +# --------------------------------- +# Callbacks +# --------------------------------- diff --git a/datastore_client_template/src/assets/custom_styles.css b/datastore_client_template/src/assets/custom_styles.css new file mode 100644 index 0000000..dab73fa --- /dev/null +++ b/datastore_client_template/src/assets/custom_styles.css @@ -0,0 +1,49 @@ +/*---------------------------------------------------------------------------- +Delay dcc.loading +----------------------------------------------------------------------------*/ + +.delay { + position: relative; +} + +.delay::after { + content: ""; + display: block; + position: absolute; + top: 0; + left: 0; + /* min and max vals in case children (content) + * does not exist at all until the callback + * processes */ + min-height: 18px; + min-width: 181px; + width: 100%; + height: 100%; + background-color: rgba(255, 255, 255, 0.4); + animation: fadeout 2s forwards; +} + +.delay[data-dash-is-loading="true"]::after{ + content: ""; + display: block; + background-color: rgba(255, 255, 255, 0.4); + /* 2s delay + 0.5s transition */ + animation: fadein 2.5s forwards; +} + +@keyframes fadein { + 0% { opacity: 0; } + /* + * as above, the the entire transition is 2.5 seconds long. + * so, to "delay" the loading screen for 2 seconds, + * keep it "hidden" (opacty: 0) for 80% of the + * total of transition time: 0.8 * 2.5 = 2 seconds + */ + 80% { opacity: 0; } + 100% { opacity: 1; } +} + +@keyframes fadeout { + from { opacity: 1;} + to { opacity: 0;} +} diff --git a/docker-compose.dev.yml b/docker-compose-archive.yml similarity index 64% rename from docker-compose.dev.yml rename to docker-compose-archive.yml index cff3be0..5be4c46 100644 --- a/docker-compose.dev.yml +++ b/docker-compose-archive.yml @@ -18,7 +18,7 @@ services: env_file: - ./datastore/.env networks: - - datastore_net + - datastore_net datastore_client: build: ./datastore_client depends_on: @@ -38,13 +38,33 @@ services: env_file: - ./datastore_client/.env networks: - - datastore_net + - datastore_net + datastore_client_template: + build: ./datastore_client_template + depends_on: + - "datastore" + ports: + - 8040:8050 + dns: + - 8.8.8.8 + - 8.8.4.4 + stdin_open: true + tty: true + command: ["gunicorn", "--reload", "-b :8050", "-t 90", "app:server"] + container_name: datastore_client_template + hostname: datastore_client_template + volumes: + - ./datastore_client_template/src:/app + env_file: + - ./datastore_client_template/.env + networks: + - datastore_net networks: datastore_net: + name: datastore_net driver: bridge ipam: driver: default config: - subnet: 172.16.238.0/24 - diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..917a768 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,70 @@ +# This compose file is useful for testing https. +# The .env file sets ENVVARS for the Docker CLI used by this compose file. +--- +version: "3" +services: + datastore: + build: ./datastore + dns: + - 8.8.8.8 + - 8.8.4.4 + stdin_open: true + tty: true + command: ["gunicorn", "--reload", "-b :8050", "-t 90", "app:app"] + container_name: datastore + hostname: datastore + volumes: + - ./datastore/src:/app + env_file: + - ./datastore/.env + networks: + - datastore_net + # datastore_client: + # build: ./datastore_client + # depends_on: + # - "datastore" + # ports: + # - 8050:8050 + # dns: + # - 8.8.8.8 + # - 8.8.4.4 + # stdin_open: true + # tty: true + # command: ["gunicorn", "--reload", "-b :8050", "-t 90", "app:server"] + # container_name: datastore_client + # hostname: datastore_client + # volumes: + # - ./datastore_client/src:/app + # env_file: + # - ./datastore_client/.env + # networks: + # - datastore_net + # datastore_client_template: + # build: ./datastore_client_template + # depends_on: + # - "datastore" + # ports: + # - 8040:8050 + # dns: + # - 8.8.8.8 + # - 8.8.4.4 + # stdin_open: true + # tty: true + # command: ["gunicorn", "--reload", "-b :8050", "-t 90", "app:server"] + # container_name: datastore_client_template + # hostname: datastore_client_template + # volumes: + # - ./datastore_client_template/src:/app + # env_file: + # - ./datastore_client_template/.env + # networks: + # - datastore_net + +networks: + datastore_net: + name: datastore_net + driver: bridge + ipam: + driver: default + config: + - subnet: 172.16.238.0/24